Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ripperdoc
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
ripperdoc
2y ago
This type of arguments come up often here on HN, and I would guess many developers including myself will agree that things are bloated and bloated is not good. But the solution to this problem has to be in small actionable steps, not built
2.
▲
by
ripperdoc
2y ago
LOL, I'm reading Njal's saga right now and this was exactly what I needed.
3.
▲
by
ripperdoc
2y ago
It's a cool example and I guess there are or will be very convenient apps that will stream the last X min of screen recording and offer help with what you see. But it just hurts my programmer soul that it is somehow more effective to r
4.
▲
by
ripperdoc
2y ago
Not directly related to Dorkly, but we've implemented feature flags (with our own system) and found them not super-useful and was hoping for more - but we may be doing it wrong. I can certainly see feature flags working well for us whe
5.
▲
by
ripperdoc
2y ago
I wish there was a way to syn from Apple Notes to Obsidian (or maybe there is?) Apple Notes is just faster and more convenient for daily notes, but I want Obsidian to be my repository, so I want some mechanism of automatically syncing certa
6.
▲
by
ripperdoc
3y ago
This doesn't seem to be it, but I always wondered if it would make sense to have an extension to the IDE that uses the aggregated data from Sentry to highlight lines of code that have caused errors or slowdowns.
7.
▲
by
ripperdoc
3y ago
Nice! JSON schemas are really useful, we use them a lot for code generation. Another library that does this for multiple languages is https://quicktype.io/ . It's great, but not so actively developed.
8.
▲
by
ripperdoc
3y ago
Something like this: location ~ ^/([a-z0-9_-]+)/ { proxy_pass http://internal-$1:8000; } We pickup the service name from the URL and use it to select where to proxy_pass to. So /service1 would route to
9.
▲
by
ripperdoc
3y ago
I use Nginx as reverse proxy, and each service runs on the same internal port. There is a way to configure Nginx natively to dynamically route to the container with the same name. If I need multiple services up locally for development, I br
10.
▲
by
ripperdoc
3y ago
For validating the actual values and types in config files, I've been planning to use JSON Schema to define the configuration data and then validate files against it. But I haven't seen others talk about that a lot - is it somethi
11.
▲
by
ripperdoc
3y ago
Should run it with bun instead of Node.js for that extra speed!
12.
▲
by
ripperdoc
3y ago
Upcoming Citities Skylines 2 seems to have improved a lot on the simulation parts. Removing "pocket cars", giving more agency to agents, more types of zoning, hopefully more challenging economy, trading of resources with external
13.
▲
by
ripperdoc
3y ago
Fictive Reality | Founding Engineers in AI and Game Dev | REMOTE or ONSITE (Sweden) We're startup building a platform using conversational AI to enable practice, recruiting, coaching and tutoring of employees, students, and individuals
14.
▲
by
ripperdoc
3y ago
It seems to me that most city councils will operate similar services and therefore have similar needs from their software. Therefore it doesn't make sense for each council to buy and customize their own system. Even better, they could
15.
▲
by
ripperdoc
3y ago
Am I hallucinating or didn't several of the examples have background audio artifacts, like it's been trained on speech with noisy backgrounds, I'm guessing audio from movies paired with subtitles? Having random background aud
16.
▲
by
ripperdoc
3y ago
This is fantastic but it also clearly points on how deep a rabbit hole it is to try and do 100% simulation - a fractal challenge? There are so many tiny details that give it away, and I realize how technically complex it can be to solve eac
17.
▲
by
ripperdoc
3y ago
I've used ChatGPT a lot lately when developing some half-advanced Python code with async, websockets, etc. And I've been a bit underwhelmed to be honest. It will always output plausible code, but almost every time it will hallucin
18.
▲
by
ripperdoc
3y ago
I would love to see this getting bigger, not just for package managers but in general. With AIs it will be easier than ever to produce spam or just poor content. We need some better way to rank and accept content, and apart from having larg
19.
▲
by
ripperdoc
4y ago
Is there a good, complex and open source React app that shows how it "should be done"?
20.
▲
by
ripperdoc
4y ago
For what it's worth my Macbook Retina has survived mostly unscathed since 2012 with heavy daily use. Two battery replacements, fraying charging cables and some worn out key faces, that's about it. Then again, I'm sure later M
21.
▲
by
ripperdoc
4y ago
Seems nice! I would prefer a twist of this more towards finding other's with an expertise you don't have yourself and having the option to center the conversation around a particular topic, and some expectation of sharing advice a
22.
▲
by
ripperdoc
4y ago
Choosing ID strategy is one of those early architecture decisions that has to be done upfront and that can give a lot of headache later if the choice was wrong. So I wouldn't call it procrastination if it's made before starting de
23.
▲
by
ripperdoc
4y ago
LosslessCut is great, but I needed something quick when I cleaned up old GoPro videos. Just open an mp4/mov in QuickTime Player, trim it and save under a new name. It will create a lossless cut. If you need several from same video, you
24.
▲
by
ripperdoc
4y ago
Some very valid points in this article, but we need to remember that ChatGPT is still "just" a language model and not an intelligent entity, and it's trained on massive amounts of texts containing the average of human knowled
25.
▲
by
ripperdoc
4y ago
Love it, great job!
26.
▲
by
ripperdoc
4y ago
I've also wondered about the more speculative future of CAPTCHas - e.g. how to prove you are human when ML get better and better. Would be fun to add to the near future sci-fi I'm sometimes writing. I'd imagine CAPTCHAs could
27.
▲
by
ripperdoc
4y ago
I can only agree, sitting with this right now and it's all so brittle. Of course, it's not just YAML, it's Javascript, Powershell and Bash embedded into strings plus various hacky methods of escaping, templating and sending v
28.
▲
by
ripperdoc
4y ago
We recently converted all our projects to Github Actions, and while it really brings a lot of convenience it also feels to me like a very brittle solution with lots of gotchas and messy API surfaces. Of course, the nature of running various
29.
▲
by
ripperdoc
4y ago
Good diagrams, as is needed in any authentication flows where the devil always end up lurking in the details! But I have a general concern on passwordless. We recently tried switching a SaaS app to Firebase passwordless but it has been a su
30.
▲
by
ripperdoc
4y ago
I can echo this, while doing its job most of the time, Omnisharp has been one of the least stable parts of my VS Code C# experience (the least stable as usual being anything relating to Unity ;) ). Issues like runaway compiler threads, slow
More ›