Deno started in Go, but was rewritten in Rust before 0.1
HN user
erk__
Contact: hn@erk.dev
There is also MLKit which is pretty interesting in how it handles memory, it is region based with some fallback to garbage collection.
Usually it's Rewrite it in Rust, but both work I guess
Last week Adafruit received a demand letter from Flux.ai, discussed here: https://news.ycombinator.com/item?id=48368121
Yesterday Adafruit updated their blog with a link to the complaint: https://blog.adafruit.com/
There is actually work on adding autodiff to Rust, maybe not really first class citizen, but at least build in: https://doc.rust-lang.org/std/autodiff/index.html (it is still at a pre-RFC stage so it is not something that soon will be added)
Will this be the reason for the Stoll prize to be set up?
Instead of a medal it should be a klein bottle of course.
GitHub have some quite nice feeds
If you want all the commits from a repo you can do something like: https://github.com/rust-lang/rust/commits/main/.atom
And if you now only is interested in the num module you can do: https://github.com/rust-lang/rust/commits/main/library/std/s...
YouTube still does
<feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
I don't think they are linked to anywhere but the url is http://www.youtube.com/feeds/videos.xml?channel_id=<channel_id>Hasselblad still uses it in their advertisement to this day
How does that work with SpaceX's product called X (formerly known as Twitter)
Also it is quite a leap to the conclusion that HVDC eqipment will not have long lead times as well especially since there are quite a few less companies making it.
This is what they already are doing, the article is behind a paywall so no clue if they say it there but you can for example see this article about it: https://www.etechvolution.com/p/byd-megawatt-flash-charging-...
What news media would you recommend?
It's not OpenType that can execute wasm it's a experimental extension in HarfBuzz so compared to this it does not work online since it is not enabled for the HarfBuzz builds in Chrome or Firefox. Which makes this more cool to show of online.
(disclaimer, I made the Tetris font)
The history section of the repo clears it up [0]
LibreSprite originated as a fork of Aseprite, developed by David Capello. Aseprite used to be distributed under the GNU General Public License version 2, but was moved to a proprietary license on August 26th, 2016.
This fork was made on the last commit covered by the GPL version 2 license, and is now developed independently of Aseprite.
Also I am not really sure if you can convince me that this is a open source license: https://github.com/aseprite/aseprite/blob/main/EULA.txt
Not that it is a unreasonable license, but it is not open source.
[0] https://github.com/LibreSprite/LibreSprite?tab=readme-ov-fil...
Another one just popped up recently though it does not have a lot of coverage if anywhere yet: https://corporate.e-boks.com/loesninger/e-wallet/e-boks-id/
Well they provide that if you want. they have both a OTP dongle, a OTP loud speaker and one that uses FIDO U2F (though you need to pay for that one).
https://www.mitid.dk/en-gb/get-started-with-mitid/how-to-use...
It is actually at least two agencies that is working in that direction, The Danish Road Authorities is also working on it: https://www.fstyr.dk/nyheder/2025/dec/faerdselsstyrelsen-tag...
Well the last annual report I could find actually says that they got a return of 17.65% so 3% would be pretty bad
https://wikimediaendowment.org/annualreports/2023-2024-annua...
There is a couple libc implementations:
- c-ward [0] a libc implementation in Rust
- relibc [1] a libc implementation in Rust mainly for use in the Redox os (but works with linux as well)
- rustix [2] safe bindings to posix apis without using C
[0] https://github.com/sunfishcode/c-ward
xAI bought Twitter a bit under a year ago: https://www.bbc.com/news/articles/ceqjq11202ro
tbh I don't think that really counts when it is a tool made by the sqlite developer.
tbh I think it is just a question about time before flask guy has something to sell: https://earendil.com/
Tbh I thought that was clear when I used the phrase "unscientific".
Then it would not be unscientific.
A quick unscientific count on cve.org counts ~86 race condition CVEs in the Linux kernel last year, so you might be overstating how well bug antennas work.
There was a music language made for the Danish GIER machine, made in 1971 (at least the 2nd edition of the handbook is from there)
The handbook for the language is sadly only in Danish so it might not be super interesting: https://datamuseum.dk/bits/30002486
Here is the code for movement 1 and 2 of Eine Kleine Nachtmusik: https://datamuseum.dk/aa/gier/30000644.html
Is the whole issue not that they are less of a band of activists than they used to be. Now it is suddenly no longer about free and open source software, but more of means to run the whole machine, which is why they probably have profit oriented CEO as bad as that is.
IMO they need to be more a crew of activists than they are now. Fight against stuff like intrusion of AI in every single part of our lives and such.
Ahh I guess that means that its possible in safe rust to cast a file descriptor to a different type. I was just looking at how socket2 did it and forgot to have a proper look.
The std api can only create UdpSockets, the trick here is that you use Socket2 which allows more kinds of sockets and then you tell UdpSocket that some raw file descriptor is a upd socket through a unsafe api with no checks and I guess it works because they use the same api on posix.
Edit: It is possible in safe rust as well, see child comment.
The macro used by socket2: https://docs.rs/socket2/0.6.1/src/socket2/lib.rs.html#108
The FromRawFd trait: https://doc.rust-lang.org/stable/std/os/fd/trait.FromRawFd.h...