HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Yeroc

no profile record

comments

Yeroc
·23 दिन पहले·discuss
Sure, but if you're trying to manage your weight it helps you to decide whether that cookie is worth it or not. If it's an Oreo cookie (or 3), I'll pass. If it's my wife's home made chocolate chip cookie I'll eat it (but not 2). It's a useful calibration for effort vs reward as opposed to eating a couple cookies without thinking about it.
Yeroc
·23 दिन पहले·discuss
Totally this. I've recently embarked on a weight loss/fitness journey (coming up on 50 rotations around the sun) and I find it incredibly helpful to think of the 250 calorie chocolate bar as roughly 25 minutes on the treadmill.
Yeroc
·2 माह पहले·discuss
That is the general pattern but not always. I never used to have allergies and then developed them a few years ago. Was very miserable for a couple months every year for about 5 years but they disappeared again a couple years ago. I tried a few things like taking a spoonful of local honey every day etc. Ultimately I don't know what made the difference sadly but I haven't been bothered by seasonal allergies for several years now.
Yeroc
·2 माह पहले·discuss
I think Jarred's response at the time was intended to cool the ridiculous hype when the branch first appeared!
Yeroc
·3 माह पहले·discuss
Have you done this yourself? If you haven't I think you'd discover server hardware is actually shockingly reliable. You could go years without needing to physically touch anything on a single machine. I find that people who are used to cloud assume stuff is breaking all the time. That's true at scale, but when you have a handful of machines you can go a very long time between failures.
Yeroc
·3 माह पहले·discuss
How does this solution compare with using pg_squeeze? We ran into this situation with a queuing solution and we've been testing it out... seems to work.
Yeroc
·5 माह पहले·discuss
The web sucked all the oxygen out of the room.
Yeroc
·5 माह पहले·discuss
Seeing similar comments across different articles and technologies and it makes me wonder how much AI is going to hold back the adoption of new technologies going forward.
Yeroc
·6 माह पहले·discuss
What are the trivial changes Canada could make if it wanted to be serious about startups?
Yeroc
·6 माह पहले·discuss
Agreed. Growing up on a small farm (~1120 acres) our garden alone was probably at least 5 acres in size. It's laughably small, the only way he'll succeed is for a neighbouring farmer to take pity on him.
Yeroc
·6 माह पहले·discuss
If you spend time on the website you can see the plan is to rent (only!) 5 acres of land for this project. Since it's a lease only and such a small plot it seems unlikely to get him into trouble. Given the small size though I'm dubious he'll find it easy to get any custom operators interested in doing a job that small!
Yeroc
·6 माह पहले·discuss
Most of those 10 squashed commits likely had commit comments like: "Cleanup based on PR feedback." etc.
Yeroc
·7 माह पहले·discuss
Easy if you ignore the security aspects. You want to hand over your tokens to your LLM so it can script up a tool that can access it? The value I see in MCP is that you can give an LLM access to services via socket without giving it access to the tokens/credentials required to access said service. It provides at least one level of security that way.
Yeroc
·8 माह पहले·discuss
Fair enough. I use git worktrees (with a script that creates the git branch, worktree and opens a new vs code workspace). You're right, managing more than about two active sessions at once is probably the limit though I'm somewhat hopeful that better tooling similar to the Agent Manager window here would allow me to scale a bit past that especially if some of those sessions are more design explorations.
Yeroc
·8 माह पहले·discuss
It won't matter. The core ideas of an Agent Manager view will be copied and improved by others in many project in the future.
Yeroc
·8 माह पहले·discuss
I haven't used Windsurf (been using Claude Code and similar). Does it provide an Agent Manager window/view? This to me looks more useful to me than the browser integration piece.
Yeroc
·8 माह पहले·discuss
The Agent Manager view providing a unified view of all active agents and allowing you to immediately respond to any approval requests or followup questions looks very useful regardless of which VCS you're using under the covers. Am I missing something here that jj does?
Yeroc
·8 माह पहले·discuss
The Claude Code extension on VS Code does very little (too little in my opinion). The integration level with agentic functionality provided by Antigravity goes much deeper in my 20 minutes or so of playing with it. The biggest value pieces I see is: Agent Manager window which provides a unified view of all my agents running across all my workspaces (!) where I can quickly approve or respond to followup questions and quickly brings me to the code in context for each agent, additionally, I can select a piece of code and comment on it inline and that comment gets sent to the correct, active agent. These two things alone are items which I have been looking for... Too bad I only have approval to use Claude Code at work. This looks promising.
Yeroc
·8 माह पहले·discuss
My experience has been the opposite. Oracle (the database) is actually a really solid product for the most part. Oracle (the company) is a different story. My eyes were really opened to some of the technical shortcomings in Postgres when we migrated from Oracle to Postgres a few years ago at $DAYJOB. Things like: a) global temp tables (there's an open source extension we had to use to fake this out), b) RLS (exists in PG but most functions that you might need to build on top perform badly), c) crashes in PG take out the whole database and a host of other smaller items. I'm not saying it wasn't worth it, but I wouldn't pretend Postgres is the best database either.
Yeroc
·8 माह पहले·discuss
You would typically want to use the same database instance for your queue as long as you can get away with it because then transaction handling is trivial. As soon as you move the queue somewhere else you need to carefully think about how you'll deal with transactionality.