Australia news LIVE: Liberal Party will meet today to finalise net zero position; Suicide blast outside a court in Pakistan kills 12, injures 27
Follow along as we bring you the latest live news updates from Australia and around the world. ⌘ Read more
Australia news LIVE: Liberal Party will meet today to finalise net zero position; Suicide blast outside a court in Pakistan kills 12, injures 27
Follow along as we bring you the latest live news updates from Australia and around the world. ⌘ Read more
Australia news LIVE: Liberal Party will meet today to finalise net zero position; Suicide blast outside a court in Pakistan kills 12, injures 27
Follow along as we bring you the latest live news updates from Australia and around the world. ⌘ Read more
The iPad Pro at 10: a Decade of Unrealized Potential
The iPad Pro went on sale ten years ago, launching with a 12.9-inch screen that Apple believed would redefine computing through size alone. The company initially resisted making the device a laptop replacement and maintained strict limitations on multitasking, browser capabilities, and app installation. Over the past decade, Apple reversed course. The iPad Pro gained US … ⌘ Read more
Superquiz, Wednesday, November 12
Trivia buffs, test your knowledge with today’s interactive superquiz. ⌘ Read more
SDL3 Now Implements Render Batching For Direct3D, Metal & Vulkan
The SDL3 library that is popular with cross-platform games for abstracting various software/hardware features has implemented render batching for its built-in rendering API. This render batching is successfully wired up now for Direct3D 11/12, Apple Metal, and Vulkan APIs for more efficient graphics rendering… ⌘ Read more
How the Trump Administration Is Giving Even More Tax Breaks to the Wealthy
Jesse Drucker, Investigative Tax Reporter - The New York Times
Stephan: The federal minimum wage for 2025 remains at $7.25 per hour. Elon Musk just got a one trillion dollar pay deal, a number so large most Americans could not even write it – $1,000,000,000,000, (one followed by 12 zeros).
_Why? Because the Fair Labor Standards Act (FLSA) minimum has not changed since 20 … ⌘ Read more
Archinstall 3.0.13 Adds WiFi Connection Menu To Arch Linux Installer
Just days after the Archinstall 3.0.12 release for this text-based Arch Linux installer, Archinstall 3.0.13 is now available to deliver a new feature. That new feature is a text-based interface for being able to connect to a WiFi network within Archinstall… ⌘ Read more
Lunduke Journal Hits 12.9 Million Views in October
The stories from The Lunduke Journal are continuing to spread further and further with each passing month. ⌘ Read more
“The $12,500 DNS Trick That Hacked Snapchat’s Cloud Servers”
While studying advanced SSRF techniques, I came across a fascinating case where researchers @nahamsec, @daeken, and @ziot combined DNS…
[Continue reading on InfoSec Write-ups … ⌘ Read more
Were Neanderthals capable of making art?
The ability to make art has often been considered a hallmark of our species. Over a century ago, prehistorians even had trouble believing that modern humans from the Upper Paleolithic (between 45,000 and 12,000 years ago) were capable of artistic flair. ⌘ Read more
@lyse@lyse.isobeef.org back to this, I think @prologic@twtxt.net meant 1 November 12:00 UTC. I won’t hold it against him. 🤭
@movq@www.uninformativ.de I think if I was younger, with more energy, and wasn’t blind with leber’s disease (look it up) I’d be fine™ But yeah I get the whole “exhausting” apart. I’ll join you this year, since there’s only 12 puzzles and as you say, we can “take our time” it might actually be fun! (as opposed to exhausting and pressured).
Advent of Code will be different this year:
There will only be 12 puzzles, i.e. only December 1 to December 12. This might make it more interesting for some people, because it’s (probably) less work and a lower chance of people getting burned out. 🤔
Personally, I’ll probably stretch it out over 24 days. Giving myself more time to solve each puzzle and I really want this event to last the entire month. 😅
Maybe this makes it more interesting for some people around here as well?
OpenBSD 7.8 released
Like clockwork, every six months, we have a new OpenBSD release. OpenBSD 7.8 adds support for the Raspberry Pi 5, tons of improvements to sleep, wake, and hibernate, the TCP stack can now run in parallel on multiple processors, and so much more. DRM has been updated to match Linux 6.12.50, and drivers for the Qualcomm Snapdragon DRM subsystem and Qualcomm DisplayPort controller were added as well. The changelog is, as always, long and detailed, so head on over for the finer details. OpenBS … ⌘ Read more
Step by awful step, Trump is using this 12-stage plan to seize total control
Thom Hartmann, Commentator - Raw Story
_Stephan: Thom Hartmann is correct in his description of what is happening to the United States. That is why the “No KIngs” nonviolent demonstrations are so important. The American people must rise up. The Republicans and their leader are going to do everything in their power to rig the election to keep themselves in power. The only … ⌘ Read more
Using Constraint Satisfaction to Optimize Item Selection for Bundles in Minecraft
Comments ⌘ Read more
The colorful autumn looks stunning, even with a gray sky. https://lyse.isobeef.org/spaziergang-zum-oedenturm-2025-10-12/
Week 12— Async API Calls: fetch, Axios, and Promises ⌘ Read more
Legacy Update 1.12 released
If you’re still running old versions of Windows from Windows 2000 and up, either for restrocomputing purposes or because you need to keep an old piece of software running, you’ve most likely heard of Legacy Update. This tool allows you to keep Windows Update running on Windows versions no longer supported by the service, and has basically become a must-have for anyone still playing around with older Windows versions. The project released a fairly major update today. Legacy Up … ⌘ Read more
We just had some lovely colors again: https://lyse.isobeef.org/abendhimmel-2025-09-12/

@zvava@twtxt.net I am getting [2025/09/11 12:56:01.816] ⇒ please set config.host when trying to run “bbycll”. How to bypass that tiny hurdle?
A mate visted me and we went on a few hours long hike. We came across a mythical creature in its natural habitat:

setpriv on Linux supports Landlock.
Another example:
$ setpriv \
--landlock-access fs \
--landlock-rule path-beneath:execute,read-file:/bin/ls-static \
--landlock-rule path-beneath:read-dir:/tmp \
/bin/ls-static /tmp/tmp/xorg.atom
The first argument --landlock-access fs says that nothing is allowed.
--landlock-rule path-beneath:execute,read-file:/bin/ls-static says that reading and executing that file is allowed. It’s a statically linked ls program (not GNU ls).
--landlock-rule path-beneath:read-dir:/tmp says that reading the /tmp directory and everything below it is allowed.
The output of the ls-static program is this line:
─rw─r──r────x 3000 200 07-12 09:19 22'491 │ /tmp/tmp/xorg.atom
It was able to read the directory, see the file, do stat() on it and everything, the little x indicates that getting xattrs also worked.
3000 and 200 are user name and group name – they are shown as numeric, because the program does not have access to /etc/passwd and /etc/group.
Adding --landlock-rule path-beneath:read-file:/etc/passwd, for example, allows resolving users and yields this:
─rw─r──r────x cathy 200 07-12 09:19 22'491 │ /tmp/tmp/xorg.atom
Saw this on Mastodon:
https://racingbunny.com/@mookie/114718466149264471
18 rules of Software Engineering
- You will regret complexity when on-call
- Stop falling in love with your own code
- Everything is a trade-off. There’s no “best” 3. Every line of code you write is a liability 4. Document your decisions and designs
- Everyone hates code they didn’t write
- Don’t use unnecessary dependencies
- Coding standards prevent arguments
- Write meaningful commit messages
- Don’t ever stop learning new things
- Code reviews spread knowledge
- Always build for maintainability
- Ask for help when you’re stuck
- Fix root causes, not symptoms
- Software is never completed
- Estimates are not promises
- Ship early, iterate often
- Keep. It. Simple.
Solid list, even though 14 is up for debate in my opinion: Software can be completed. You have a use case / problem, you solve that problem, done. Your software is completed now. There might still be bugs and they should be fixed – but this doesn’t “add” to the program. Don’t use “software is never done” as an excuse to keep adding and adding stuff to your code.
On my blog: Real Life in Star Trek, Interface https://john.colagioia.net/blog/2025/06/12/interface.html #scifi #startrek #closereading
bruh i log in after a day and my TL/discover feed has 12 twts WHAT AM I MISSING
On my blog: Toots 🦣 from 05/12 to 05/16 https://john.colagioia.net/blog/2025/05/16/week.html #linkdump #socialmedia #quotes #week
On my blog: Developer Diary, International Nurses Day https://john.colagioia.net/blog/2025/05/12/nurses.html #programming #project #devjournal