Zoo: Software Engineer, Language Development
A remote position now hiring at Zoo
Have expertise with functional programming, interpreters, and Web technology? Like Rust, wasm, etc.? Looking for a job with a great team (like @adamchalmers.com )? Please see this job ad, and share with others you might know!
zoo.dev/jobs/4619187...
04.11.2025 16:11 β π 25 π 14 π¬ 0 π 0
I guess in contrast cannot be called into.
01.11.2025 22:37 β π 2 π 0 π¬ 0 π 0
Natural next step after the vacuum tube
27.10.2025 13:50 β π 2 π 0 π¬ 0 π 0
Just told my course staff that variable-length arrays have been part of C since βthe late 1900sβ.
27.10.2025 03:13 β π 14 π 1 π¬ 1 π 0
When you open the game in an emulator so it's in its own window but the emulator miscalculates the size because it thinks it's fullscreen, that's Doom scrolling.
21.10.2025 18:48 β π 3 π 0 π¬ 0 π 0
code.pyret.org
Modern developement:
βAnyway, computers appear to be running somewhere in the country and serving the Pyret compiler and the UI.β
(After my investigation into impacts of todayβs outage on code.pyret.org)
20.10.2025 19:49 β π 4 π 0 π¬ 0 π 0
Are there any benchmarks (etc) which show the costs of the SysV x64 ABI relative to a somewhat-or-perfectly-optimal ABI for that program? [Not for single microbenchmarks, because I can definitely create horrible overheads there, but on larger programs / benchmarks.]
20.10.2025 15:22 β π 4 π 2 π¬ 0 π 0
bsky.app/profile/elfp...
16.10.2025 04:49 β π 2 π 0 π¬ 0 π 0
[Werner Herzog voice]: The computer⦠it is a cruel, unfeeling god. Left too long in its ceaseless hum, it festers with demons. The human, fragile and insignificant, clings to the ritual of restarting⦠as if this act could stave off the abyss of digital chaos. But the darkness always returns.
01.10.2025 12:13 β π 223 π 53 π¬ 4 π 1
High Standards, Multiple Tries
I've now given my talk βHigh Standards, Multiple Tries βΒ How I've Been GradingβΒ a few times. I wrote it up as a blog post:
jpolitz.github.io/notes/2024/0...
3 principles:
1. Standards-based grading with high-fidelity assessments
2. Retries for everything
3. Coarse rubrics (0-4 not 0-100)
19.09.2025 22:33 β π 6 π 0 π¬ 0 π 0
WebAssembly: Yes, but for What? - ACM Queue
useful overview of what's going on in Wasm land, from Andy Wingo in ACM Queue
17.09.2025 22:12 β π 6 π 2 π¬ 1 π 0
What prints if you press the red printer button
10.09.2025 22:13 β π 5 π 0 π¬ 1 π 0
(This says to me even *if* we get all the dynamic requires sorted there will still be issues with these kinds of libraries)
05.09.2025 03:55 β π 1 π 0 π¬ 1 π 0
I think it's possible to get there, someone is going to have to mind-meld with the runtime and bun to do it.
I have another experiment going to see if I can get github.com/Automattic/n... to be bundled into the binary (which is how the image library works).
Currently that's ending somewhat sadly.
05.09.2025 03:54 β π 0 π 0 π¬ 1 π 0
Ah nice thanks.
I should have said I got nerd-sniped into going through this exercise this morning (github.com/jpolitz/pyre...), even up to saving an image to disk.
Then I moved the binary and it stopped working. We have dynamic requires and they still poke around in node_modules.
05.09.2025 03:50 β π 1 π 0 π¬ 1 π 0
And just to confirm, a simple js program that just logs does produce a binary with sensible behavior using the same command, so I don't think I'm goofing on the basic thing to try :-)
04.09.2025 16:57 β π 0 π 0 π¬ 1 π 0
(The last command prints nothing)
04.09.2025 16:53 β π 0 π 0 π¬ 1 π 0
At least on my system, the doing the most straightforward thing has no error messages but creates a binary that doesn't produce any output at the terminal (running the compiler blob with `node` and no arguments should print the usage).
04.09.2025 16:53 β π 0 π 0 π¬ 1 π 0
At a glance that page says βAll built-in Bun and Node.js APIs are supported.β which is actually more than Node's support at the time I tried (only supported a subset), but Pyret has a fair amount of surface area these days.
Would love more expertise and input here.
04.09.2025 16:39 β π 0 π 0 π¬ 1 π 0
This would be great. I went down the rabbit hole of node's support for this for a few days. It's a so close/so far thing.
For example, we use node-canvas and other similar packages to get the image library to work headless, and they rely on a pile of C code, which complicates things.
04.09.2025 16:39 β π 0 π 0 π¬ 1 π 0
For users who are savvy devs, it's probably better to just npm install pyret-npm as a dependency of the project, and then all the node_modules are local to the working directory and run with `npx pyret ...`
03.09.2025 20:03 β π 1 π 0 π¬ 1 π 0
Thanks. This is probably fixable by using `require.resolve()` appropriately, and is needed for different --install-strategy settings to work.
We need something like the symlink if we want pyret to work as a global command because we want to generate standalone JS blobs runnable with plain `node`.
03.09.2025 20:03 β π 0 π 0 π¬ 1 π 0
Huh. OK yeah so the issue is:
- we symlink node_modules in .pyret to pyret-npm/node_modules with `const nodeModulesPath = path.join(__dirname, "node_modules");`
- but on `yarn global add` it flattens out the dependencies of `pyret-npm` into the node_modules above this
This is fixable I think.
03.09.2025 20:00 β π 1 π 0 π¬ 1 π 0
Useful, I'll see if it's a npm vs yarn thing with how modules are getting resolved.
One more piece of information if you can share βΒ from the directory where you got the error about not finding `resolve` when running the pyret command:
ls -la
ls -la .pyret
02.09.2025 17:26 β π 1 π 0 π¬ 1 π 0
Oh my, thanks for showing us this. I can't reproduce this (I do know of some install issues related to node versions, but they don't look like this).
If you're up for sharing more, it would help me to see the output of
pyret --version
node --version
and any warnings you got from the install step
02.09.2025 15:40 β π 2 π 0 π¬ 1 π 0
Pyret
The Pyret programming language
1/ Super-excited to release the first complete rewrite to the Pyret home page in 10 years, corresponding to major language improvements! So many cool new things, let me give you a brief tour: β΅
pyret.org
29.08.2025 15:28 β π 41 π 11 π¬ 2 π 0
Pyret
The Pyret programming language
New Pyret stuff!
A cool new homepage showcasing the new embeddable editor, and a VScode extension that embeds the full-featured editor from code.pyret.org, among other goodies.
Check it out!
pyret.org
pyret.org/release-note...
28.08.2025 21:47 β π 5 π 2 π¬ 0 π 0
YouTube video by Baseball Rules Academy
Senzel Out Two Runners Same Base
www.youtube.com/watch?v=r9Vd...
26.08.2025 04:12 β π 1 π 0 π¬ 1 π 0
it's a website (and a podcast, and a newsletter) about humans and technology, made by four journalists you might already know. like and subscribe: 404media.co
I am the host of Behind the Bastards and overlord of podcasts at Cool Zone Media
Street-level journalism in Los Γngeles covering news, culture, and the taco lifestyle. βThe 2020 Emerging Voiceβ James Beard Award winner. Est. 2006.
https://linktr.ee/LATACO
π mostly https://types.pl/@ari
π©π½βπ» types
π©π½βπ neu undergrad
π³οΈββ§οΈ she/her
π https://ari.foo
Stay Up-to-date on Major League Balatro featuring some of your favorite creators!
Schedule/Standings: https://mlbalatro.com/
Business Inquiries: majorleaguebalatro@gmail.com
Weβve been a band for a long time and do lots of fun stuff.
This is Ryan.
I think the drummer is here somewhere too.
Guster.com
Former journalist running for Congress (IL-09) because we deserve Democrats who actually do something | katforillinois.com
cofounder/CTO @honeycombio, co-author of Observability Engineering and Database Reliability Engineering. I test in production and so do you. ππ³οΈβππ¦
Sen. Sanders of Vermont, Ranking Member of the U.S. Senate Committee on Health, Education, Labor & Pensions, is the longest-serving independent in congressional history.
Your Only Source For Professional Dog Ratings
nonprofit: @15outof10.org β€οΈβπ©Ή
links.weratedogs.com
The official resistance team of the U.S. Digital Service. We are the Builders. #AltGov
Send your stories: submissions@wethebuilders.org
https://www.wethebuilders.org/
https://givebutter.com/WTB
The American Association of University Professors champions academic freedom, advances shared governance, and organizes faculty to ensure higher education's contribution to the common good.
aaup.org
Girl Dad. Hip-Hop Lover. Former Capitol Police Officer. #Good Trouble. Defender of Democracy on Jan 6th and beyond.
Co-Host of Clean Up on Aisle 45
Proud to represent CT-03 in Congress.
Ranking Member of the House Appropriations Committee, Italian-American, New Haven native, fierce advocate for a strong middle class.
https://linktr.ee/RepRosaDeLauroCT03
she/her | Chair of the North Carolina Democratic Party. βWhere the weak grow strong and the strong grow great.β #RuralMatters
Social Media Darling. International Bestselling Author. Occasionally funny. Brittlestar.com
www.rummanchowdhury.com
www.humane-intelligence.org
CEO & co-founder, Humane Intelligence
US Science Envoy for AI (Biden Administration)
he/him | i bought a house from people paying to watch me play videogames how cool is that | author: before we go live | twitch/yt partner