source https://www.theregister.com/science/2026/08/07/brit-boffins-boast-of-beating-barriers-to-building-fusion-power/5284882
Saturday, 8 August 2026
Saturday, August 08, 2026
System Engineer
register
No comments
source https://www.theregister.com/science/2026/08/07/brit-boffins-boast-of-beating-barriers-to-building-fusion-power/5284882
Saturday, August 08, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/framework-tally-disclose-metabase-data-theft-attacks/
Saturday, August 08, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/unlimited-technology-systems-breach-impacts-38-million-people/
Friday, 7 August 2026
Friday, August 07, 2026
System Engineer
register
No comments
source https://www.theregister.com/science/2026/08/06/uncle-sam-aims-to-help-nuclear-energy-find-its-sea-legs/5284179
Friday, August 07, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/new-tontou-cpu-attack-bypasses-spectre-v2-fixes-leaks-linux-password-hashes/
Thursday, 6 August 2026
Thursday, August 06, 2026
System Engineer
register
No comments
source https://www.theregister.com/security/2026/08/05/prompt-injection-isnt-the-bug-ai-agent-frameworks-are/5283585
Thursday, August 06, 2026
System Engineer
register
No comments
source https://www.theregister.com/ai-and-ml/2026/08/05/time-magazine-has-a-separate-version-of-its-website-with-ads-only-ai-can-see/5283640
Thursday, August 06, 2026
System Engineer
register
No comments
source https://www.theregister.com/systems/2026/08/05/elon-pledges-to-give-nvidia-a-virtual-monopoly-over-the-stars/5283605
Thursday, August 06, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/hackers-run-khunt-post-exploitation-toolkit-from-oracle-database/
Wednesday, 5 August 2026
Wednesday, August 05, 2026
System Engineer
osnews
No comments
Today, I wanted to show you one of the most fascinating and surprising operating systems ever created. It’s not another Unix, Linux, or Windows. It is an architecture that went its own way and proved that systems engineering design can look completely different.
I’m talking about IBM’s child, which for many might be synonymous with “boring banking systems,” but in reality, is one of the most uncompromising projects in IT history. While we get excited about abstraction and virtualization today, thinking we are discovering new lands, this system was doing it decades ago. Imagine a system that doesn’t know the concept of a “file” in the way we understand it. A system where everything is an object, and all disk and operational memory form one vast, flat space. If you are looking for proof that true engineering doesn’t need buzzwords to blow you away, I invite you to read on.
↫ Kamil Pytliński
Ever since watching Clabretro’s detailed video about getting IBM i to work on his own IBM POWER hardware and then remoting into them, I’ve been obsessed with running IBM i at home. It feels like the final boss of operating systems to dive into and explore, hidden in the deepest, darkest trenches of the ocean of technology. Everything about IBM i feels alien, complex, convoluted, opaque, and overwhelming, and you can probably dedicate your entire career to working with this platform and somehow still learn new things about it every day.
There’s something brutalist about IBM i, and I so desperately want to bang my head on its concrete walls.
source https://www.osnews.com/story/145681/ibm-i-os-400-the-database-operating-system/
Wednesday, August 05, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/77-open-vsx-extensions-found-harvesting-developer-info/
Tuesday, 4 August 2026
Tuesday, August 04, 2026
System Engineer
register
No comments
source https://www.theregister.com/security/2026/08/03/google-dev-kit-spurs-first-ever-agent-on-agent-violence/5282496
Tuesday, August 04, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/fake-roblox-xeno-script-launcher-pushes-infostealer-rat-malware/
Monday, 3 August 2026
Monday, August 03, 2026
System Engineer
register
No comments
source https://www.theregister.com/os-platforms/2026/08/03/microsoft-says-8gb-of-ram-should-be-enough-for-anyone-running-windows-11/5282153
Monday, August 03, 2026
System Engineer
register
No comments
source https://www.theregister.com/public-sector/2026/08/03/meta-straps-on-a-kick-me-sign-by-mistakenly-taking-down-video-by-indias-prime-minister/5282130
Monday, August 03, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/artificial-intelligence/openai-teases-astra-its-next-major-ai-model-after-it-solves-10-long-standing-math-problems/
Monday, August 03, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/coldcard-wallet-rng-flaw-likely-linked-to-88-million-bitcoin-theft/
Sunday, 2 August 2026
Sunday, August 02, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/google/google-chrome-may-soon-block-new-tab-hijacker-extensions-by-default/
Sunday, August 02, 2026
System Engineer
register
No comments
source https://www.theregister.com/offbeat/2026/08/02/meet-the-internet-radical-who-helped-microsoft-get-email-and-att-get-online/5281281
Sunday, August 02, 2026
System Engineer
osnews
No comments
I have a policy to effectively never link to YouTube videos. I’ll gladly make an exception for this one.
Reflection is one of the most powerful concepts in Computer Science. Unfortunately, not every programming language is blessed enough to have it.
In the 1980s, one company, Symbolics took the concept to the logical extreme. By representing EVERYTHING as objects; they created the most powerful (and inadvertently) least private operating system ever created!
The company collapsed, but the ideas live on. Some modern languages got a full dose of reflection. Some…weren’t so lucky. I ranked them all, and in the end I’ll show you how I dragged C++ up a tier with my brand new runtime reflection library, CallMeMaybe!
↫ Laurie Wired
The GitHub description of CallMeMaybe:
CallMeMaybe (CMM) is a C++ runtime reflection library built on top of P2996 static reflection introduced in C++26. CMM purposefully mirrors many of the std::meta functions to provide a uniform interface, but allows runtime introspection, dynamic invocation, and instantiation by building a runtime reflection registry. Class members can be automatically traversed and reflected by simply adding
↫ CallMeMaybe GitHub page[[=cmm::reflectable]]as an annotation. CMM implements a custom type system to completely avoid RTTI requirements.
My YouTube linking policy will remain in place.
source https://www.osnews.com/story/145661/callmemaybe-runtime-reflection-library-built-on-c26-static-reflection/
Saturday, 1 August 2026
Saturday, August 01, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/amgen-says-cloud-data-breach-exposed-patient-health-proprietary-info/
Saturday, August 01, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/online-ad-firm-adforms-script-compromised-to-steal-cryptocurrency/
Saturday, August 01, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/artificial-intelligence/openai-says-its-new-gpt-56-models-are-becoming-more-cost-efficient/
Friday, 31 July 2026
Friday, July 31, 2026
System Engineer
register
No comments
source https://www.theregister.com/storage/2026/07/30/gpus-could-explode-to-multiple-tb-with-new-storage-inspired-memory-tech/5281363
Friday, July 31, 2026
System Engineer
register
No comments
source https://www.theregister.com/ai-and-ml/2026/07/30/open-source-project-fools-ai-scrapers-with-poisoned-font/5281303
Friday, July 31, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/vmware-fixes-three-critical-flaws-allowing-auth-bypass-vm-escapes/
Thursday, 30 July 2026
Thursday, July 30, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/cisco-warns-of-fmc-static-credential-flaw-exploited-in-zero-day-attacks/
Thursday, July 30, 2026
System Engineer
register
No comments
source https://www.theregister.com/public-sector/2026/07/29/uncle-sam-sees-the-light-offers-globalfoundries-300m-to-pursue-silicon-photonics-while-taking-1-stake/5280620
Thursday, July 30, 2026
System Engineer
register
No comments
source https://www.theregister.com/ai-and-ml/2026/07/29/closed-models-refuse-to-help-researcher-swat-linux-bug/5280647
Thursday, July 30, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/health-isac-warns-of-rising-shinyhunters-data-theft-attacks-on-healthcare/
Wednesday, 29 July 2026
Wednesday, July 29, 2026
System Engineer
register
No comments
source https://www.theregister.com/security/2026/07/28/microsoft-and-wiz-mind-meld-agents-catch-more-than-90-of-bugs/5279914
Wednesday, July 29, 2026
System Engineer
bleepingcomputer
No comments
source https://www.bleepingcomputer.com/news/security/vbulletin-fixes-critical-pre-auth-rce-flaw-with-public-exploit/
Tuesday, 28 July 2026
Tuesday, July 28, 2026
System Engineer
register
No comments
source https://www.theregister.com/ai-and-ml/2026/07/27/ai-has-changed-data-architecture-but-storage-hasnt-caught-up/5255880
Monday, 27 July 2026
Monday, July 27, 2026
System Engineer
register
No comments
source https://www.theregister.com/security/2026/07/27/google-goes-it-alone-with-a-new-cybercrime-crew-taxonomy/5278749
Monday, July 27, 2026
System Engineer
register
No comments
source https://www.theregister.com/software/2026/07/27/manager-showed-off-his-dos-prowess-with-a-command-that-wiped-data/5278057
Monday, July 27, 2026
System Engineer
register
No comments
source https://www.theregister.com/science/2026/07/27/spacex-just-about-nails-starship-test-flight-13/5278725
