🐢💤 Breaking news: #OpenBSD can now pretend to be a real OS by running on Apple's #Hypervisor, thanks to a few lines of code wizardry. Who knew virtual invisibility on #macOS was the final frontier for OpenBSD? 🌌🤷‍♂️
https://www.undeadly.org/cgi?action=article;sid=20260115203619 #Virtualization #TechNews #CodeWizardry #HackerNews #ngated
OpenBSD-current now runs as guest under Apple Hypervisor

🎉 Ah, the joys of wading through Rust macros—because who doesn't love a programming language that requires you to conjure syntax wizardry just to avoid writing actual code? 🙄 But don't worry, the author promises this isn't about any *useful* macros. Instead, it's a nostalgic journey back to Lisp days, where a single screen of code could *almost* do something! 😂
https://hackeryarn.com/post/rust-macros-1/ #RustMacros #Nostalgia #LispProgramming #CodeWizardry #DeveloperHumor #HackerNews #ngated
Let's write a macro in Rust - Part 1

Macros are required to do some very helpful things in Rust, but this isn’t an article about any of those things. I became enamored with macros many years ago when I read Practical Common Lisp and saw the implementation of a SQL DSL that works with built in data structures. The whole implementation took less than a screen of code and absolutely blew away my expectations of what it took to create DSLs.

hackeryarn

Just squashed a nasty merge conflict with GitKraken AI — surgical, smart, and done in seconds ⚔️

💥 500K weekly AI tokens from the Advanced upgrade = pure commit wizardry 🔮

This isn’t just AI — it’s next-gen Git power ⚡️

#GitKrakenAI #DevOps #GitOps #CodeWizardry

✨ Behold, the marvel of modern programming: a #JavaScript #puzzle that confounds the unsuspecting 🧩. Devotees of code wizardry can now delight in the revelation that JavaScript's parsing prowess knows no bounds. But fear not, because the universe is saved by a dropdown explanation that rivals a dad joke in excitement 😴.
https://www.hillelwayne.com/post/javascript-puzzle/ #CodeWizardry #DropdownExplanation #ProgrammingHumor #HackerNews #ngated
A Perplexing Javascript Parsing Puzzle

What does this print? x = 1 x --> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), --> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1.

Hillel Wayne