Viewing profile — loevborg
loevborg
HN member- Joined
- Fri, Feb 11, 2011, 4:17 PM UTC
- HN karma
- 832
- Public activity
- 342 items
- HN profile
- View on Hacker News ↗
About loevborg
Recent public activity
-
comment
Comment #49103803
I agree, same for foreign keys, triggers, higher isolation levels, the list goes on
-
comment
Comment #49102549
DSQL looks like a Big Deal to me - solving the essential scaling bottleneck that relational DBs give you without ending up with a weird system like dynamodb that no one wants to us…
-
comment
Comment #49062090
Please go on. I also feel like asyncio is a big hack. Even just accidentally blocking the event loop is way too easy. And I couldn't believe it when I read that you need to store a…
-
comment
Comment #49013092
My advice: - Don't use long-running transactions. They are a risk for db health. Only use transaction when you have a strong justification - Set idle_in_transaction_session_timeout…
-
comment
Comment #48620428
I think you missed GP's point
-
comment
Comment #48514564
Thanks for the link. As a longtime listener, listening to Bob Garfield's voice brought a tear to my eye - I'm a big fan and was sad when he left OTM, as much as I admire Brooke.
-
comment
Comment #47933984
user: Do you think Germany will start a major war in Europe? talkie-1930: No, I do not think Germany will start a major war in Europe. I think the war, if it comes, will be started…
-
comment
Comment #47790780
Any services like this for Hetzner?
-
comment
Comment #47789864
Sometimes TCP/IP is a leaky abstraction, and recently ipv6 peeked through in two separate instances: - In a cafe wifi, I had partial connectivity. For some reason my wifi interface…
-
comment
Comment #47775426
I don't think I get notified but maybe it's because my replies are unpopular
-
comment
Comment #47770594
I agree. I wonder how people are motivated to comment if they can't even track replies or check likes. It certainly completely kills motivation for me
-
comment
Comment #47730763
What was the USP of their CI service?
-
comment
Comment #47630087
This was pre-Anthropic but the fact that Bun automatically loads .env files if they're present almost disqualifies it from most tasks https://github.com/oven-sh/bun/issues/23967 It…
-
comment
Comment #47611948
This sentence doesn't include examples of the passive voice.
-
comment
Comment #47584922
You're right about process.argv - wow, that looks like a maintenance and testability nightmare.
-
comment
Comment #47584899
useCanUseTool.tsx looks special, maybe it'scodegen'ed or copy 'n pasted? `_c` as an import name, no comments, use of promises instead of async function. Or maybe it's just bad vibi…
-
comment
Comment #47584743
Can you give an example? Looks fairly decent to me
-
comment
Comment #47557236
OMG that looks amazing. As a Clojure acolyte of 10+ years, I can't wait to see this.
-
comment
Comment #47375549
This looks like a useful set of guidelines. I see the most value in reducing the bikeshedding which invariably happens when designing an API. I wonder if anyone is using AEP and ca…
-
comment
Comment #47249651
PS all 17 hits for "it turns out" in the repository are from other speakers.
-
comment
Comment #47249616
I'm a big Rich Hickey fan. He's a big user of a (to me) peculiar variant of the phrase, "it ends up": a total of 144 times in https://github.com/matthiasn/talk-transcripts It also …
-
comment
Comment #47230375
Literally every interview I've done recently has included the question: "What's your stance on AI coding tools?" And there's clearly a right and wrong answer.
-
comment
Comment #47225169
Nice write-up, thanks for sharing. How does your hand-vibed python program compare to frameworks like pipecat or livekit agents? Both are also written in python.
-
comment
Comment #47209736
Which setting specifically? Can you repro in the typescript playground?
-
comment
Comment #47209691
FWIW, Typescript is using Strategy 2: https://www.typescriptlang.org/play/?#code/GYVwdgxgLglg9mABM... I'm a bit confused by the fact that the array starts out typed as `any[]` (e.g…