Viewing profile — eliben
eliben
HN member- Joined
- Mon, Jul 05, 2010, 3:17 AM UTC
- HN karma
- 3,214
- Public activity
- 1,063 items
- HN profile
- View on Hacker News ↗
About eliben
Recent public activity
-
comment
Comment #49096407
Thanks for the nudge - I've added links to other posts in the series in each one (there are only 3 - you found them all!)
-
comment
Comment #48463927
Joshua Tree NP <3
-
comment
Comment #47723457
You're welcome :) The harnesses are documented here: https://github.com/eliben/watgo/tree/main/tests Note that I had to switch the harness from wazero to Node (unfortunately!) when…
-
comment
Comment #47705835
watgo ( https://github.com/eliben/watgo ) -- a WebAssembly toolkit for Go. Think something like wasm-tools or wabt, just in pure (0 dependency) Go.
-
comment
Comment #47554449
According to the official tracker ( https://www.energy.ca.gov/data-reports/clean-energy-serving-... and elsewhere) there were 279 days in 2025 where California was on 100% renewabl…
-
comment
Comment #47553986
California is a great example; highest electricity prices in the US (not counting Hawaii, which makes sense) despite significant hydro and fantastic solar capacity. In the last few…
-
comment
Comment #47226010
Thank you for the feedback. The idea was to first define what we want the basis functions to be (a pretty abstract definition) and then develop how to actually get that from _norma…
-
comment
Comment #47221188
Fixed, thank you! (it's actually r(x)=p(x)-q(x)) (proof-reading through HN is a mildly embarrassing process, sorry about that! I do go over these posts and proof-read them several …
-
comment
Comment #47220364
Thanks for noticing, I'll fix it shortly
-
comment
Comment #46965069
Right, standalone binaries for CLI tools is great. And if one has Go installed, they can just `go run ...` any tool from its GitHub path, all installation/build/caching happens aut…
-
comment
Comment #46964632
Very interesting! I encountered the problems these tools are trying to tackle just recently while trying to guide an agent into creating an in-browser tool for me. Closing the loop…
- comment
-
comment
Comment #46669884
The underlying issue here is that the Nobel Peace Prize is a useless, politicized joke. It appears to be almost designed to give newspapers something to write about. It's a shame i…
-
comment
Comment #46257052
Nice, I'm proud I managed to nerd-snipe you :-) Thanks for taking the time. Seriously, though, I think this solves a nicely framed simpler problem. I was thinking about a more gene…
-
comment
Comment #46256495
Great work, Simon -- thanks for sharing! One tool I'd really like to see in this format is a simple "turn the background of this PNG to transparent". Models still refuse to follow …
-
comment
Comment #46217130
I also enjoyed working with BF for toy compiler projects; here's a series of JIT compilers for BF in increasing level of sophistication: https://eli.thegreenplace.net/2017/adventur…
-
comment
Comment #45404155
Thanks for spotting this, what a silly typo :) ... Fixed
-
comment
Comment #45404153
Thanks for the kind words! Regarding ring size, yes I'd say 2^64 is good. Since the representation is sparse, it seems safe but I'd be interested in hearing other views.
-
comment
Comment #45212030
Thanks for posting this! Just a quick note that this post is the first in a series: see https://eli.thegreenplace.net/tag/multiple-dispatch for the full series
-
comment
Comment #45154298
The Y combinator in Python: https://eli.thegreenplace.net/2016/some-notes-on-the-y-combi... (scroll down, after the concept is explained using Clojure) A bit crazier, in Go with ge…
-
comment
Comment #45073993
A quick plug for https://www.goatcounter.com/ - a super lightweight visitor counter. Very much privacy oriented ( https://www.goatcounter.com/help/gdpr ). I've set it up on my blog…
-
comment
Comment #45047600
Yes, Factor is mentioned in the first paragraph of the post!
-
comment
Comment #45043628
Thanks for the feedback! What do you feel is not finished?
-
comment
Comment #45040342
Thanks for the note. Much of the blog post is dealing with this - how the approach I took for the Go implementation is not sufficient for the hacker level - because the code isn't …
-
comment
Comment #44051145
Indeed, generating functions are mentioned in a footnote :) Very interesting topic