#Libanon: Die Israelische Verteidigungsstreitkräfte haben Evakuierungswarnungen für bestimmte Gebäude in den libanesischen Küstenstädten #Tyros und #Sidon herausgegeben. Hintergrund sind geplante Luftangriffe auf Infrastruktur der Hisbollah. Armeesprecher Avichay Adraee erklärte, das Militär
#Rune Technologies, founded by veterans #DavidTuttle and #PeterGoldsborough, raised $24 million in Series A #funding to develop #AI-enabled software for #militarylogistics. Their flagship product, #TyrOS, aims to modernise manual #logisticsprocesses by predicting future needs, optimising resources, and enabling distributed operations. https://techcrunch.com/2025/07/21/anduril-alums-raise-24m-series-a-to-bring-military-logistics-out-of-the-excel-spreadsheet-era/?Pirates.BZ #Pirates #Tech #Startup #News
Anduril alums raise $24M Series A to bring military logistics out of the Excel spreadsheet era | TechCrunch

Rune Technologies raised $24 million to advance deployment of TyrOS, AI-enabled predictive software for military logistics that can run on the ground without internet connection.

TechCrunch
Jan 21 @ 08:19 So I've been up about an hour, Pete has my TRS-MS05 sound system out, he's on his morning nets - well, the local one, first is his CARF.net and then a local net every morning - I enjoy listening to them but don't know how these guys keep everyone's call sign and names straight! This morning they're talking about thrift stores, dumpster diving, side-of-the-road finds and stuff like that, very interesting! I won't be able to sit at my keyboard for a while yet but am totally looking forward to seeing how it sounds...! This will be the first time since I bought the #Tyros-5 it will sound as it was meant to. So I admit, I'm kind of obsessing about that today. Whatever else I do (the usual stuff: cooking & cleaning and moderating and parrot/dog stuff and working on my site, etc. playing my keyboard will probably come first :). In other news we're supposed to see the sun today for a while, and they're teasing me with another prediction of snow tonight/tomorrow...I'll believe THAT when I see it! But am hopeful as always! One last thing: this new RV we live in now is made for 4-season use, super-insulated, thick walls, etc...but it always feels so cold in here! We kept our heat at 62°F in the motorhome and were warmer than at 68°F here. It's been a puzzlement. Then we realized this thing has REALLY high ceilings (we can't reach them)...and there's a ceiling fan at the highest point...we turned that thing on low speed, and problem solved! And with that I'm off to work on today's #Caturday post, I'll see you later, enjoy your Saturday❣️

That time Simon the Sorcerer made it into the bedroom 🤣

Now it covers up my Yamaha Tyros4 keyboard and provides a nice backdrop when I'm on camera in daily meetings. Always a good talking point along with the Displate posters.

#retrogaming #simonthesorcerer #bed #retrocomputing #adventuresoft #displate #yamaha #tyros

Die Ursache ist noch unklar, die Hintergründe sind es ebenso. Sollte es tatsächlich "lediglich" Verletzte gegeben haben, käme dies bei dem Ausmaß der Detonationen in Burdsch al-Schimali fast einem Wunder gleich.
Explosionen in palästinensischem Flüchtlingslager | DW | 10.12.2021
#Libanon #Palästinenser #Flüchtlinge #Tyros #RoterHalbmond #Burdschal-Schimali
Explosionen in palästinensischem Flüchtlingslager | DW | 10.12.2021

Die Ursache ist noch unklar, die Hintergründe sind es ebenso. Sollte es tatsächlich "lediglich" Verletzte gegeben haben, käme dies bei dem Ausmaß der Detonationen in Burdsch al-Schimali fast einem Wunder gleich.

DW.COM

Update on my #hobbyos , #tyros . Feature-wise nothing has changed, as I'm still at the state of having detected a SATA disk, but haven't send any commands to it yet.

The code behind the scenes has changed a lot, though. As you may discern from the screenshot, I have some debugging prints in there from my memory mapping code. Mapping memory is much more dynamic and flexible now (and I can even dynamically allocate new memory from the free memory pools).

This is all necessary to get SATA working, which is the next step.

Tip for anyone else developing a hobby OS: if your kernel is compiled with debugging symbols, gdb can show you the line of code for a specific instruction pointer with the 'list' command (e.g., "list *0xf0a"). Very useful in conjunction with your page fault handler to quickly determine which pointer was not mapped properly.

Minor update to my #hobbyos , #tyros . Basic AHCI (SATA) configuration, setup, and probing is working. Actual SATA operations like reading or writing are still a ways off. That will involve memory allocation (still haven't finished my memory allocator), DMA, interrupts with locks....

Still very proud of myself!

This has really given me an appreciation for how fiddly it is writing hardware drivers. EVERY hardware specification you read is like "So set this bit to 1 to initialize. That's all that's required, but some devices may require a reset after that. Also you should check this bit to see if it's 1, but it will probably work anyway, unless your device is very old". And it goes on like that. Like how can anyone have any confidence that their code is going to work across all devices? It's an impossible problem. I thought specifications would be better by now, and I guess they are...a little bit...but still quite bad.

Another update on my #hobbyos #tyros . Last post, I said I was going to tackle AHCI (SATA controller) next. Which...I've started...kind of.

There was a bit of a domino effect here. In order to find the AHCI controller, I needed some PCI code, and in order to find the PCI code, I needed some ACPI code. And all of this is complicating my virtual memory mappings, so I'm in the middle of redoing virtual memory to be done properly. That means dynamically allocated page tables.

Fun stuff! I have made the decision to only support PCI Express. This excludes all (old) PCI 1.0 and PCI 2.0 systems. I can live with that since it makes my life easier, ha.

Hope to get into real AHCI code soon!

Obligatory screenshot.

Going to work on #tyros #hobbyos again today. Did some preliminary PS/2 keyboard work. I can type stuff! Next up is AHCI (hard drive support).

Doing this work on a hobby OS is, as always, granting a deeper appreciation for how hard it is working with hardware. I'm working with hardware specifications that have been published and examined and implemented for sometimes decades, and even then it's often hard to figure out exactly what to do.

To help keep myself from forgetting everything, I've done, I've started rewriting (so far just the boot code) in noweb (https://www.cs.tufts.edu/~nr/noweb/), a Literate Programming tool. I've always been a fan of Literate Programming and have found it helps a lot.

Obligatory screenshot of my keyboard doing stuff.

Noweb home page

Update on #tyros #hobbyos that I'm foolishly making from scratch. My first time in a couple weeks getting to sit down with it. Fixed the crashing bug I had with handling IRQs. I can now properly get IRQs from the timer and keyboard (and then do nothing with them). Scrolling text even works now! Feeling somewhat accomplished.

Next up is dealing with scan codes from the keyboard.