tuckerconnelly's comments

tuckerconnelly | 1 year ago | on: Why is Chile so long?

Yeah based on my in-laws, Chilean seems understandable, though they tend to speak fast.

Argentine Spanish is the strange one, due to the heavy Italian influence.

tuckerconnelly | 1 year ago | on: Ask HN: Why do message queue-based architectures seem less popular now?

I can offer one data point. This is from purely startup-based experience (seed to Series A).

A while ago I moved from microservices to monolith because they were too complicated and had a lot of duplicated code. Without microservices there's less need for a message queue.

For async stuff, I used RabbitMQ for one project, but it just felt...old and over-architected? And a lot of the tooling around it (celery) just wasn't as good as the modern stuff built around redis (bullmq).

For multi-step, DAG-style processes, I prefer to KISS and just do that all in a single, large job if I can, or break it into a small number of jobs.

If I REALLY needed a DAG thing, there are tools out there that are specifically built for that (Airflow). But I hear they're difficult to debug issues in, so would avoid at most costs.

I have run into scaling issues with redis, because their multi-node architectures are just ridiculously over-complicated, and so I stick with single-node. But sharding by hand is fine for me, and works well.

tuckerconnelly | 1 year ago | on: Jobs Aren't Coming Back

You don't see yourself hiring help for:

* Keeping things up and running

* Building the systems that the AI interfaces with

* Supporting any large contracts

?

In my experience, one enterprise contract with specific requirements basically requires you to hire a dev to support them.

tuckerconnelly | 1 year ago | on: Jobs Aren't Coming Back

My counterpoint: if your product is simply a ChatGPT wrapper, you have no moat. Whatever is complicated enough and is actually making money, and you feel the need to test it and make sure it keeps running, that's your moat, and that's what you're going to want to hire human help for once you actually make some money.

tuckerconnelly | 1 year ago | on: Ask HN: Is anybody getting value from AI Agents? How so?

I built an AI-agents tech demo[1], and am now pivoting. A few thoughts:

* I was able to make a simple AI agent that could control my Spotify account, and make playlists based on its world knowledge (rather than Spotify recommendation algos), which was really cool. I used it pretty frequently to guide Spotify into my music tastes, and would say I got value out of it.

* GPT-4 worked quite well actually, GPT-3.5 worked maybe 80% of the time. Mixtral did not work at all, aside from needing hacks/workarounds to get function-calling working in the first place.

* It was very slow and VERY expensive. Needing CoT was a limitation. Could easily rack up $30/day just testing it.

My overall takeaway: it's too early: too expensive, too slow, too unreliable. Unless you somehow have a breakthrough with a custom model.

From the marketing side, people just don't "get it." I've since niched down, and it's very, very promising from a business perspective.

[1] https://konos.ai

tuckerconnelly | 2 years ago | on: Our Company Is Doing So Well That You're All Fired

While X's main use case works, I just tried to run some ads there.

When trying to upgrade to verified org: "An unexpected error occurred"

When trying to change my display name: "An unexpected error occurred"

When trying to run an ad: "Awaiting verification" for a week

Contacting support through messages: No response

Finally finding a way to submit a ticket: 3 day response time with a standard response that didn't resolve the issue.

Responded to that ticket and haven't gotten a response in days.

I don't think they're operating at the same level as they used to :)

tuckerconnelly | 2 years ago | on: Cleveland launches plan to provide cheap broadband

I just visited a few days for a surgery and this seems pretty accurate.

The food weirdly was the same at every restaurant, regardless of the cuisine: super oiled up. Usually mayonnaise and something pickled on top. Like preparing me to go to a factory for 14 hours.

Nearly every Uber had a sports station on.

Everyone seemed pretty gloomy there. "What's a must-do before we leave?" "Umm...yeah it's too cold for a Brown's game, so not much. Yeah."

A strange obsession with Taylor Swift "bringing money into the city" because of the sports guy she's dating now from Cleveland.

tuckerconnelly | 2 years ago | on: Scrum is a cancer

From Peopleware: “In the 1985 Jeffery-Lawrence study [from the University of New South Wales]…they investigated the productivity of 24 projects for which no estimates were prepared at all. These projects far outperformed all the others…Projects on which the boss applied no schedule pressure whatsoever (‘Just wake me up when you’re done.’) had the highest productivity of all.”

I read 20+ books on management and leadership[1], and none of them mentioned anything like Scrum. I agree it's BS.

[1] https://tuckerconnelly.com/management-leadership

tuckerconnelly | 2 years ago | on: GPT-3.5 Turbo fine-tuning and API updates

Question about privacy: OpenAI doesn't use API calls to train their models. But do they or Microsoft still store the text? If so, for how long?

Overall, I think this is great, and can't wait for the 16k fine-tuning.

page 1