Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dkubb
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
dkubb
6mo ago
The emdash and ellipsis used to be my bread and butter. I just hope the LLMs don’t come for parenthesis for aside comments.
2.
▲
by
dkubb
8mo ago
You could probably combat this somewhat with a skill that references to examples of the code you don't want and the code you do. And then each time you tell it to correct the code you ask it to put that example into the references. You
3.
▲
by
dkubb
10mo ago
I can totally understand where you are coming from with this comment. It does feel a bit frustrating that people are rediscovering things that were written in books 30/40/50 years ago. However, I think this is awesome for the indu
4.
▲
by
dkubb
10mo ago
I think that might be the key here. All those small micro decisions, discussions, and dead ends can be recorded and captured by the AI. If you do something that doesn’t make sense given past choices, it can ask you. Gradually, over time, it
5.
▲
by
dkubb
1y ago
The three most common things I think about when coding are DAGs, State Machines and parsing. The latter two come up all the time in regexps which I probably write at least once a day, and I’m always thinking about state transitions and depe
6.
▲
by
dkubb
1y ago
A lot of the time they are selling themselves as influencers on the subject. It’s often a way to get views or attention that they can use in the future.
7.
▲
by
dkubb
1y ago
I love having generated code in the same repo as the generator because with every commit I can regenerate the code and compare it to make sure it stays in sync. Then it forms something similar to a golden tests where if something unexpected
8.
▲
by
dkubb
1y ago
I wonder if the more we use LLMs the more our written patterns will begin to match them. Those of us who work with them the most are likely to be affected earliest.
9.
▲
by
dkubb
1y ago
I don’t know too much about about the TS ecosystem but do these new systems you talk about do it via a “Smart Constructor”? That is the pattern I typically use to solve this problem in Haskell and Rust code.
10.
▲
by
dkubb
3y ago
I once found a confirmed bug in SQLite one time, and it’s the highlight of all my OSS bug reports. Interestingly enough I found it while fuzz testing a query builder and cross testing it against PostgreSQL, MySQL and an in-memory filtering
11.
▲
by
dkubb
3y ago
Has anyone ever implemented a schema where you define a view to return the latest instance of each resource, and it maps INSERT, UPDATE and DELETE to an append only table underneath? I’ve done some of this with an event sourcing system, but
12.
▲
by
dkubb
3y ago
Its usually leadership who are the problem if a whole department is failing. If they started firing from the top down they'd eventually reach competent people who stayed with the department out of loyalty or because they felt responsib
13.
▲
by
dkubb
3y ago
I think the point the GP message is making is that, prior to review/merge you extract atomic commits from your WIP that tell a clear, concise story of how the change was made. The reviewer has less built up context so by chunking it li
14.
▲
by
dkubb
3y ago
This might be a dumb question, but is it possible to take something like WASM and make it run on HVM?
15.
▲
by
dkubb
3y ago
I mentally change schema to namespace when thinking about the postgresql feature.
16.
▲
by
dkubb
3y ago
If it helps anyone, at work, I open sourced the UUID v7 postgresql function that I wrote: https://github.com/Betterment/postgresql-uuid-generate-v7 We've seen some amazing benefits, especially around improving the
17.
▲
by
dkubb
4y ago
> billionaires tend to get more hate because they simply have more negative impact Not just billionaires, the specific type of billionaire that seeks out fame. There are plenty of billionaires with names you'd not recognize.
18.
▲
by
dkubb
5y ago
Also, why don't they share the lists with each other? They don't need government help to do this. If there are privacy issues then they could just share a list of hashes and if someone's legal name hashes to something on the
19.
▲
by
dkubb
5y ago
Reading this code I can't help but try to evaluate it in my head. Question: is there a bug for the assignment of party_not_at_fault? Would you want party2 to be selected if the condition is true? Other languages I've used have the
20.
▲
by
dkubb
5y ago
This is where you'd choose the .gif version hoping it was interlaced.
21.
▲
by
dkubb
5y ago
My current team does it, and it is so enjoyable. We practice atomic commits that change only one thing, and in one way. We separate Fix, Refactor, Change, Add, Move and Remove commits from each other. Our commit summaries begin with those k
22.
▲
by
dkubb
5y ago
Its interesting that Netflix built their systems in a way that assumes the underlying platform is unstable. With Chaos Monkey and other systems they made sure things are resilient to flakey behaviour.
23.
▲
by
dkubb
5y ago
I think the next generation of ORMs will be built on top of this approach. Being able to query and receive an entire object graph in a single round trip has changed how we develop apps at my company.
24.
▲
by
dkubb
5y ago
Your comment is being downvoted, but IME working at a few startups where the owner went from making 2M to 10M, then 50 and 100M+ a year I rarely saw founders who had a good work/life balance. Sure, they could afford to pay people to
25.
▲
by
dkubb
5y ago
One idea might be to focus on trying to convert monthly subscribers to yearly. You could offer a subset of monthly subscribers a one-time upgrade to a yearly subscription at a prorated discount. So people one month into their subscription c
26.
▲
by
dkubb
6y ago
If one could be made to shoot fine sand, it could be used outside I bet.
27.
▲
by
dkubb
6y ago
This is pretty efficient. She lazily sorts them on first access. They are stored in a thunk and then lazily evaluates them. After that repeated access is efficient.
28.
▲
by
dkubb
6y ago
The only correct answer to this is now. Right now. No one knows if this is the top of the market and tomorrow everything will come crashing down, or if this is the very bottom of a 10 year bull market. On average you do better not trying to
29.
▲
by
dkubb
6y ago
I agree in this specific example the inner sort is meaningless. There are valid cases where a subquery can use an ORDER BY, such as when a LIMIT or OFFSET is specified. I'd go to far to say that unless a query has an ORDER BY it is lik
30.
▲
by
dkubb
6y ago
I would recommend SQL and Relational Theory by CJ Date. It completely changed how I use SQL. Before reading it, I had about a decade of experience with SQL. I didn't really understand the theory underneath. I also didn't understan
More ›