HN user

shortrounddev2

2,427 karma
Posts16
Comments1,597
View on HN
blog.shortround.space 7mo ago

I misused LLMs to diagnose myself and ended up bedridden for a week

shortrounddev2
32pts135
www.openstreetmap.org 7mo ago

Wave of (Open Street Map) Vandalism in South Korea

shortrounddev2
89pts20
news.ycombinator.com 11mo ago

Ask HN: Would you rather have 20% more money or 20% more time

shortrounddev2
8pts24
blog.shortround.space 1y ago

Early Exits in JavaScript Generators

shortrounddev2
3pts0
dataweb.usitc.gov 1y ago

US International Trade Commission Data Request Tool

shortrounddev2
1pts0
shortrounddev.mataroa.blog 1y ago

Dependency Injection with Web Components

shortrounddev2
2pts0
news.ycombinator.com 1y ago

Ask HN: What is QA like at your company

shortrounddev2
1pts1
news.ycombinator.com 1y ago

Ask HN: Do you find that product requirements degrade over time?

shortrounddev2
3pts5
news.ycombinator.com 2y ago

Ask HN: Do You Use a Debugger?

shortrounddev2
18pts36
news.ycombinator.com 2y ago

Ask HN: Do you use any self-hosted open source tools to run your business?

shortrounddev2
3pts3
news.ycombinator.com 2y ago

Ask HN: Do you user finger or other "old" protocols?

shortrounddev2
5pts14
news.ycombinator.com 2y ago

Ask HN: Do you use a mini PC, and what's your workflow?

shortrounddev2
15pts31
news.ycombinator.com 2y ago

Ask HN: Are Binary Logs a Thing?

shortrounddev2
2pts2
news.ycombinator.com 2y ago

Ask HN: What is your workflow for developing with WASM?

shortrounddev2
8pts3
blog.shortround.dev 3y ago

Finding Directions with Vectors

shortrounddev2
2pts0
www.youtube.com 3y ago

Playing Doom with an Exercise Bike [video]

shortrounddev2
3pts0

I've tried removing my post because the comment section here has become a platform for AI enthusiasts to spread dangerous medical misinformation. As HN does not really care about user privacy, I am unable to actually delete it. I renamed the post to [Removed], but it appears the admins are uninterested in respecting the intent of this, and renamed the post back to its original title.

Moral of the story kids: don't post on HN

What about the multiple people who have reported receiving incredibly useful information after asking an LLM, when doctors were useless?

They got lucky.

This is why I wrote this blog post. I'm sure some people got lucky when an LLM managed to give them the right answer, because they go and brag about it. How many people got the wrong answer? How many of them bragged about their bad decision? This is _selection bias_. I'm writing about my embarrassing lapse of judgment because I doubt anyone else will

Disclaimer: not a doctor (obviously), ask someone who is qualified, but this is what the ID doctor told me:

Lyme is a bacterial infection, and can be cured with antibiotics. Once the bacteria is gone, you no longer have Lyme disease.

However, there is a lot of misinformation about Lyme online. Some people think Lyme is a chronic, incurable disease, which they call "chronic lyme". Often, when a celebrity tells people they have lyme disease, this is what they mean. Chronic lyme is not a real thing - it is a diagnosis given to wealthy people by unqualified conmen or unscrupulous doctors in response to vague, hard to pin symptoms

To be honest, I am pretty embarrassed about the whole thing, but I figured I'd post my story because of that. There are lots of people who misdiagnose themselves doing something stupid on the internet (or teenagers who kill themselves because they fell in love with some Waifu LLM), but you never hear about it because they either died or were too embarrassed to talk about it. Better to be transparent that I did something stupid so that hopefully someone else reads about it and doesn't do the same thing I did

I write a library which is used by customers to implement integrations with our platform. The #1 thing I think about is not

How do I express this code in Typescript?

it's

What is the best way to express this idea in a way that won't confuse or anger our users? Where in the library should I put this new idea? Upstream of X? Downstream of Y? How do I make it flexible so they can choose how to integrate this? Or maybe I don't want to make it flexible - maybe I want to force them to use this new format?

Plus making sure that whatever changes I make are non-breaking, which means that if I update some function with new parameters, they need to be made optional, so now I need to remember, downstream, that this particular argument may or may not be `undefined` because I don't want to break implementations from customers who just upgraded the most recent minor or patch version

The majority of the problems I solve are philosophical, not linguistic

Nobody in the tech industry cares about DEI (most people I've met are downright hostile to the idea). All those companies in 2020 who hired DEI consultants and made big announcements about DEI and changed master to main were just buying cheap good will

index.html with script files would still benefit from a bundler. You can have a very minimal react footprint and still want to use react build tools just for bundling.

Most web frameworks do both at the same time to the point where having to write code which enforced a type contract after deserializing is a delabreaker for me. I eant to be able to define my DTOs in one place, once, and have it both deserialize and enforce types/format. Anything else is code smell