HackerLangs
TopNewTrendsCommentsPastAskShowJobs

wmedrano

58 karmajoined há 4 anos

comments

wmedrano
·há 7 horas·discuss
Seems like it https://www.phoronix.com/review/amd-ryzen-ai-halo/9
wmedrano
·há 14 horas·discuss
This is not surprising and perhaps one of the things I respect about it. Zig is pretty minimalist and I would prefer denying my pet features over becoming design by committee.

I'm a bit curious, what features could you not do without?
wmedrano
·há 15 horas·discuss
I think of Emacs as more of a lisp machine than text editor. I'm also not sure what an IDE has over Emacs. I have autocomplete, compiler checks, and run tests all within Emacs.

For general automation, my blog is built with Emacs Lisp.
wmedrano
·há 9 dias·discuss
I haven't tried Z.ai, but both Ollama ($20) and OpencodeGo ($10) seem to give me more generous limits than the Claude $20
wmedrano
·há 12 dias·discuss
I'm surprised this is the default. How good are the snapshot management tools?
wmedrano
·há 19 dias·discuss
I thought parentheses were fairly intuitive. They are not for grouping, more like representing an AST.

For other languages, similarly, x is not the same as x()
wmedrano
·há 19 dias·discuss
I made a rusty version of this. No linked lists, but that's not important in the grand Scheme of things.

https://wmedrano.dev/post/2025/11/15/lisp-1
wmedrano
·há 22 dias·discuss
haha, I definitely wouldn't call my setup fast. But it did get a lot better after Native Compilation and a lot of the major stuff has started async to feel more responsive at least.
wmedrano
·há 25 dias·discuss
No, but I use GLM5.1 instead of Claude/GPT.
wmedrano
·há 26 dias·discuss
I just started Compiling with Continuations by Andrew W. Appel.

I hope that by the end of the book I don't find out that CPS compiled code produces bad stack traces.
wmedrano
·há 27 dias·discuss
Which specific models were you using?

In March I switched to Opencode + Kimi K2.5 and found it was a step behind. I switched to GLM 5.1 and has felt like a step above. Its probably some combination of me forgetting the baseline, model improvements, and OpenCode improvements.

$20 a month has been good enough for my coding use cases. I wouldn't call myself a vibe coder. Stuff I do is create graphs/visualizations, review, polish code, generate toy examples for learning.
wmedrano
·há 28 dias·discuss
I've been fine with Linux/KDE. Even the fractional scaling support is decent.

Edit: Guess it depends on the app
wmedrano
·há 29 dias·discuss
> Trump cannot instruct Google to put picture of dogs on their homepage.

I'm sorry, but that was a horrible example. Corporations have no obligation to donate money to the ballroom yet Google has donated millions.
wmedrano
·mês passado·discuss
Well, I wouldn't use this since I have my own box. In case its useful:

- I run hermes on the box and it has some scheduled cron jobs.

- I gave it an account on a custom Git forge. It cannot commit without my direct permission, though it can blow the setup up in other ways lol.

- I interact by assigning it issues and talking through Discord.
wmedrano
·mês passado·discuss
I started writing a Scheme interpreter about a year ago and got pretty far. I dropped it a few months back since I got a new job.

I'm thinking of getting back and am wondering if the niche (and difficult for me to implement) features are worth it. I might be better off skipping dynamic-unwind, maybe even ripping out call/cc, in favor working on the debugability, ecosystem, performance, and package management story.
wmedrano
·mês passado·discuss
Ironically, the top comment (this) is now about AI.
wmedrano
·mês passado·discuss
Zig gives you more control than Rust, which should theoretically lead to a higher performance ceiling.

There's not much magic in Zig. Keep hitting goto-definition and you can eventually see the OS switch statements and syscalls.
wmedrano
·mês passado·discuss
Try it if you want full control over every memory and IO operation and "drop". If you hit "goto-definition", you eventually get to see the OS switch statements and syscalls. There's not much magic.

Do not try it if you are scared of memory management and memory leaks.
wmedrano
·há 2 meses·discuss
We're talking about ~1 trillion $$$ valuations here tho
wmedrano
·há 2 meses·discuss
When I joined in 2016, it CitC would make it look (and still does) like you had the entire monorepo on your local filesystem on your machine.

Git5 would copy some directories but builds would still fallback to files from the monorepo if you didn't track them. It was convenient for me since I could just grep and do fuzzy matching from my editor. Now I have to do some extra work to avoid grepping the entire monorepo. LLMs sometimes still try to grep the entire repo lol.

Now, you could use a perforace, mercurial, or jj interface and it works fine.