Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
domlebo70
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
domlebo70
2mo ago
Devils advocate: Are they? Why? If LLM's are capable of taking absolute crap and iterating on it to achieve a purpose, then does readability really matter?
2.
▲
by
domlebo70
4mo ago
Awesome. Similar experience to me. Was selling some sim racing gear, and he mentioned he was in fabrication. Now he's my fab guy and we chat heaps.
3.
▲
by
domlebo70
4mo ago
Yeah, but at the end of the day you can't be sure right? That doubt would eat away at me
4.
▲
by
domlebo70
4mo ago
How does one even go about finding a root cause so exotic?
5.
▲
by
domlebo70
4mo ago
I love it. Easy to write and understand
6.
▲
by
domlebo70
6mo ago
Very good way to describe it. I am enjoying Opus a lot.
7.
▲
by
domlebo70
6mo ago
Maybe I'm solving different problems to you, but I don't think I've seen a single "idiot moment" from Claude Code this entire week. I've had to massage things to get them more aligned with how I want things, bu
8.
▲
by
domlebo70
8mo ago
Unclear what to do. I obviously could have invested another 30s and figured it out. I really like the scenarios - i think there's a lot of value there. I wonder if you can double down on that somehow.
9.
▲
by
domlebo70
8mo ago
I've been on the site for 10m, and I'm loving it. I find the interface quite confusing. I'm getting value from the theory tidbits, and the scenarios. The simulation was confusing and i just noped out. I'd say the UI is a
10.
▲
by
domlebo70
8mo ago
I don't code in Python much. Are those type annotations really how people are using them, or is it just for the example? def list_files_tool(path: str) -> Dict[str, Any]: And it returns { "path": str
11.
▲
by
domlebo70
9mo ago
We do this via run in TS: export const run = <T>(f: () => T): T => { return f(); };
12.
▲
by
domlebo70
9mo ago
Do you use plan mode? Do you link specific files as reference using @? Those two alone make a big difference for me.
13.
▲
by
domlebo70
10mo ago
I've never used it, but watched from afar. So many interesting ideas. The website is also really good. Congrats Paul and team
14.
▲
by
domlebo70
10mo ago
You need to do more drugs then.
15.
▲
Clickwrap vs. wet signature license agreement
1 points
by
domlebo70
10mo ago
|
0 comments
16.
▲
by
domlebo70
10mo ago
Interesting name
17.
▲
by
domlebo70
11mo ago
I was wondering if you had any thoughts on the CS2 rollout (2 years and counting) and the number of bugs, poor performance, and issues?
18.
▲
by
domlebo70
11mo ago
How do people deploy docker containers on a machine like this? We currently use Cloud Run, which is very hands off. How is a deploy done?
19.
▲
by
domlebo70
1y ago
With Auth.js, I assume they control the database layer? I.e. can i supply my own functions for reading and writing to the DB, or I have to use their Kysely stuff?
20.
▲
by
domlebo70
1y ago
Reminds me of this post https://maxgreenwald.me/blog/do-more-with-run I now reach for this a lot to allow me to write expression oriented programs in JS
21.
▲
by
domlebo70
1y ago
Very balanced post thank you. Often these posts tout an approach, and never consider downsides.
22.
▲
by
domlebo70
2y ago
What do people think of Phaser? Currently playing around with it. API seems pretty large
23.
▲
by
domlebo70
2y ago
Does anyone know how it works? Is it some sort of wave function collapse?
24.
▲
by
domlebo70
2y ago
Gotta say, that animation is amazing.
25.
▲
by
domlebo70
2y ago
Thanks. I am about to start an app using Tauri, and styling the UI so it doesn't feel like a "web app" is a concern of mine
26.
▲
by
domlebo70
2y ago
Hey. Well done on launch. Looks very sleek. So the frontend is some sort of JS/CSS app. How did you get it so native looking? What UI libs are you using, or just tailwind classes?
27.
▲
by
domlebo70
3y ago
This is great. I run a very very similar platform. How are your prices so cheap? 120$ for 500 studies a year?
28.
▲
by
domlebo70
3y ago
I had never heard of inverseMap. I suppose it only works where every variant can only be parsed in the same way it is rendered.
29.
▲
by
domlebo70
3y ago
Yeah this is where I heard about it :P I showed all my dev friends, and our minds were equally blown away by the obviousness of it.
30.
▲
by
domlebo70
3y ago
To OP: You could avoid the visitor by using an IIFE style switch using the run utility fn: export const run = <T>(f: () => T): T => f(); Now you can go: const inferred_type = run(() => { switch(blah) {
More ›