Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
chubot
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
chubot
6d ago
What metrics were you tracking that moved?
2.
▲
by
chubot
12d ago
I think Charles Babbage is a special case -- IIRC his son also picked up his work, after his death. So he actually worked on it for "generations", by having a child who also worked on his ideas :-)
3.
▲
by
chubot
18d ago
It seems like that's pretty easy to disprove -- GC time is proportional to allocation time. (allocation happens in the mutator, GC happens in the collector -- there is a symmetry) The constant factor could be 500 or 50,000, but it'
4.
▲
by
chubot
24d ago
I have an LG TV with a similar problem. I think it’s supposed to pixel clean when you turn it off, and I do every night. Yet for some reason I can’t escape these annoying pixel cleaning interruptions. Seems like a bug in the firmware.
5.
▲
by
chubot
27d ago
This reads like Claude in its abstraction ... I'd rather hear the story about what degree you actually got, what the dissertation was, and some concrete experiences of being disillusioned along the way, etc. Complexity becomes a way t
6.
▲
by
chubot
1mo ago
(revised comment) Hm on first reading I was confused by the extern "fil-c" framing -- that seems to imply a bridge between C and Fil-C, which introduces some nasty language/runtime inter-op issues. But I like this part I wan
7.
▲
by
chubot
1mo ago
Its' the exact opposite ... Google, nVidia, Amazon, Apple, etc. all have a deep bench of code that is a moat. They have lots of throwaway code too, but those companies are precisely the ones that pay attention to code quality, and com
8.
▲
by
chubot
2mo ago
OK yes thanks for that link Speaking personally, the fate of Docker, Inc. was clear to me when they took their $40M Series C round in 2014. I had met with Solomon in April 2014 (after their $15M Series B) and tried to tell him what I had l
9.
▲
by
chubot
2mo ago
Hm I actually heard some great and rare metal on FM radio in Philadelphia the other day -- and I was SURPRISED because I thought radio was dead too I just Googled and it turns out it was https://wkdu.org/ 91.7 FM, Drexel Un
10.
▲
by
chubot
2mo ago
all code possible to run on a computer already exists. It's some permutation of all the bits of available memory. It's in there somewhere This seems either mathematically impossible or vacuous, depending on what you mean ...
11.
▲
by
chubot
3mo ago
I think that is basically the approach modernish uses: https://github.com/modernish/modernish But it does feel complex to me. Personally I just write in the common subset of bash and OSH, which is very large. I never
12.
▲
by
chubot
3mo ago
OK interesting, I knew about the -e -n flags issue, which means that any portable shell script has to use printf, not echo. Didn't quite realize that the use of backslash also forces printf ... what a mess
13.
▲
by
chubot
3mo ago
OK interesting, yeah I think dash is just plain broken ... $ dash -c 'echo "c:\\new"' c: ew $ busybox ash -c 'echo "c:\\new"' c:\new It requires 4 backslashes: $ dash -c
14.
▲
by
chubot
3mo ago
FWIW Oils has an option to prevent the ambiguity: osh-0.37$ echo "c:\new" c:\new osh-0.37$ shopt --set no_parse_backslash osh-0.37$ echo "c:\new" echo "c:\new" ^ [ int
15.
▲
by
chubot
3mo ago
In this case, it's not a new thing ... back in 2005 (yes 21 years ago), people talked about the achievements of Noam Shazeer at Google (and Jeff Dean and Sanjay, etc) I always appreciated Jeff having a level head ... which this article
16.
▲
by
chubot
4mo ago
BTW Chuck Klosterman discussed this at length in this 2022 book on the 90's: https://en.wikipedia.org/wiki/The_Nineties_(book) I think it's a pretty deep point -- your memory and consciousness are shaped by t
17.
▲
by
chubot
4mo ago
I liked this story, thanks for sharing I have to admit I feel similarly conflicted after a few recent REAL WORLD experiences. The first is that Gemini and Claude taught me a whole bunch of things about beer that I feel like I should have k
18.
▲
by
chubot
4mo ago
Yup totally, how you breathe during the day is a habit that basically persists at night So breathing better during the day can be trained, even at an old age, and it improves sleep Not everyone breathes suboptimally of course, but I think m
19.
▲
by
chubot
4mo ago
I came around to it a few weeks late, but Zef and this article by Filip are also great work! https://zef-lang.dev/implementation https://news.ycombinator.com/item?id=47843194 It has list of more than 20 opt
20.
▲
by
chubot
4mo ago
These days, video evidence can be called into doubt pretty easily
21.
▲
by
chubot
4mo ago
Ha, that’s the thing that gets me too. Also people watching mashed up YouTube clip compilations - these seem obviously designed for addiction. The other thing is watching the videos in public with the tinny speakers blaring. Judging by re
22.
▲
by
chubot
4mo ago
If Go interfaced with C as well as Python, I’d use it a lot more. But I’m using the slower language because it still integrates with more things For example, one reason AI is all in Python is because CUDA is basically part of the C ecosyst
23.
▲
by
chubot
5mo ago
They tell me I don't have a real job because I just tell the computer what to do, and I don't do the thing myself (to which I can't help but respond that they're absolutely right) Hm interesting So they are making the
24.
▲
by
chubot
6mo ago
Wow a few years ago I wanted to resurrect some of my old code, to do essentially what ncdu does Then I found ncdu, and haven’t looked back since. So it saved me a lot of time Thank you and RIP
25.
▲
by
chubot
6mo ago
FWIW here is another piece of trivia about job control: the API means you can't spawn a child process "safely" in POSIX -- you have to trust that that the executable you're spawning is well-behaved (or use more advanced
26.
▲
by
chubot
6mo ago
A common problem I noticed is that if you took certain courses in computer science, you may have a pre-conceived notion of how to parse programming languages, and the shell language doesn't quite fit that model I have seen this misconc
27.
▲
by
chubot
6mo ago
Yup, job control is a huge mess. I think Bill Joy was able to modify the shell, the syscall interface, and the terminal driver at the same time to implement the hacky mechanism of job control. But a few years later that kind of crosscutti
28.
▲
by
chubot
8mo ago
Yeah, I think that when writing code becomes cheap, then all the COMPLEMENTS become more valuable: - testing - reviewing, and reading/understanding/explaining - operations / SRE
29.
▲
by
chubot
8mo ago
Side note: I used this query to test LLM recall: Do jeff dean and russ cox know each other? Interesting results: 1. Gemini pointed me back at MY OWN comment, above, an hour after I wrote it. So Google is crawling the web FAST. It also p
30.
▲
by
chubot
8mo ago
This is overstating it by a lot. Jeff was the AI lead at the time, and there was a big conflict between management and the ethics team And I actually think Google needs to pay more attention to AI ethics ... but it's a publically trad
More ›