FSF announces Librephone project
fsf.org
A modern approach to preventing CSRF in Go
alexedwards.net
Beliefs that are true for regular software but false when applied to AI
boydkane.com
Nvidia DGX Spark: great hardware, early days for the ecosystem
simonwillison.net
I am a programmer, not a rubber-stamp that approves Copilot generated code
prahladyeri.github.io
Interviewing Intel's Chief Architect of x86 Cores
chipsandcheese.com
How bad can a $2.97 ADC be?
excamera.substack.com
DOJ seizes $15B in Bitcoin from 'pig butchering' scam based in Cambodia
cnbc.com
Unpacking Cloudflare Workers CPU Performance Benchmarks
blog.cloudflare.com
How AI hears accents: An audible visualization of accent clusters
accent-explorer.boldvoice.com
Can we know whether a profiler is accurate?
stefan-marr.de
Hacking the Humane AI Pin
writings.agg.im
SmolBSD – build your own minimal BSD system
smolbsd.org
A 12,000-year-old obelisk with a human face was found in Karahan Tepe
trthaber.com
Show HN: Greenonion.ai – AI-Powered Design Assistant
exuberant-premise-723012.framer.app
Python's splitlines does more than just newlines
yossarian.net
How to turn liquid glass into a solid interface
tidbits.com
Astronomers 'image' a mysterious dark object in the distant Universe
mpg.de
CSS for Styling a Markdown Post
webdev.bryanhogan.com
What Americans die from vs. what the news reports on
ourworldindata.org
Surveillance data challenges what we thought we knew about location tracking
lighthousereports.com
GrapheneOS is ready to break free from Pixels
androidauthority.com
If anyone wants to do this in DOS, one thing I learned from the 1991 BLUE Book is that BLOAD can be used to load a binary file straight to graphics card memory. https://github.com/robhagemans/hoard-of-gwbasic
There was a site hosting the author's freeware utilities (now only on the web archive?), and one is a graphics editor made for that purpose ("EBS: Screen editor for BLOAD pages"):
https://web.archive.org/web/20060410121551/http://scottserve...
From a quick search BLOAD is available in Commodore BASIC as well. Would be interesting to hear how it compares to the optimized loop that PRINTs the image, if the same trick works on a C64?
* No... BLOAD was added in some later version, e.g. for C128, not any of the versions running on C64 https://www.c64-wiki.com/wiki/BASIC_7.0#Commodore_BASIC_Comm... ... But I guess the speed of reading a few kB from a C64 disk drive compared to a 1991 PC hard disk may make it a pretty bad idea anyway if speed is important. On the other hand it would make the program itself smaller and faster to load, so difficult to guess if the total time to render the screen would have increased or not.