Its a horrible article. Grey wolves and dire wolves arent even genetically related in a way that allows for this sort of gene editing and we have known this for a few years now. If anything, a dire wolf is closer to a red wolf.
It seems their deeper sequencing of dire wolf samples clarified the phylogeny - they claim the dire wolf's closest living relative is the gray wolf, at 99.5% identity. The 2021 study was only able to sequence the dire wolf genome at 0.23x coverage and put a 0.56 probability on their species tree (Fig 2A).
https://orbi.uliege.be/bitstream/2268/255832/1/NatureDireWol...
Yep, an absolutely empty PR grab. And seems not closer to a red wolf either, but entirely distinct from wolves as we know them. Only similar via convergent evolution.[0]
There is also DefleMask, supporting Genesis, SMS (+FM Sound Unit), GB, PCE, NES (+VRC7, +FDS), C64, Arcade, NeoGeo, and MSX2. It is available for Windows, macOS, Linux, iOS, Android and Raspberry Pi.
"...an absolute joy to work with" I agree. I used zig to make a game in WASM and had a blast. I also had some spare Arduino Nanos laying around and so I build a simple firmware in zig to test it. It worked great, so you can use zig for your embedded projects as well.
Anyone on Medium writing about programming languages trends should also be pre-screened and have their own original (non-forked) source code repository listed on their profile. Each time I see a Medium article in form of "Top [insert number] [insert topic] to [insert a verb]", it nudges me ever closer to canceling my subscription.
This exactly matches my experience with Elm. You wrote "..how resistant it was to me hacking my way to success"; the same here, I tried to do things my way, and Elm would resist (thankfully) those efforts. It resulted in an easy to maintain, much cleaner code. Initially, I went through a 3 month mental grind to learn FP in Elm to be somewhat productive. Then it suddenly started to flow. A while ago I wrote a variation of Snake game [0], using elm-ui to render the simple graphics. The coding experience was fantastic.
I completed 10 days of Advent Of Code 2021 in Zig and loved the learning experience. Then I rewrote a snake game I made originally in Elm into Zig and compiled it to WASM. So now it runs in a browser. There is Zig standard library documentation on Zig website, but if you want to see the missing parts, go to GitHub and browse stdlib source files. Each source file contains test cases that are sufficient for understanding how it works.
Learning Zig by reading its standard library source has worked for me. The source files also include quite self explanatory tests that compensate for incomplete documentation on main Zig website.