Raspberry Pi PoE+ Injector Launches For $25 USD
Raspberry Piâs brisk pace of new hardware and software the past few months continues today⊠The Raspberry Pi PoE+ Injector was announced today at the $25 USD price point⊠â Read more
Nouvel article Ă propos de ma page /quotes https://si3t.ch/log/2025-03-24-quotes.txt
@eapl.me@eapl.me Ah! It is still not working.
@eapl.me@eapl.me I think the benefits do not outweigh the disadvantages. Clients would have to read and merge the information from 2 txt and a new metadata would have to be added with the address of this file.
Also, it is very easy to filter or ignore it.
I have finished 1-9 on Python. If anyone is interested, I could share the code, or in Reddit many people have shared theirs.
đ
Is it working now?
Iâd say again that perhaps the DMs could be stored in another .txt, but anyway Iâd like to try it.
I donât have the need for a physical Calc nor a watch, although Iâm slightly more interested in a https://banglejs.com or an eink watch đ€
Anyone interested in the PicoCalc? https://www.clockworkpi.com/product-page/picocalc #basic
@doesnm@doesnm.p.psf.lt đŻ đđđđđđ
Câest fou comme câest cher une voiture oO. Comment vous faĂźtes les gens???
@lyse@lyse.isobeef.org (I think of pointers as âmemory location + typeâ, but I have done so much C and Assembler by now that the whole thing feels almost trivial to me. And I would have trouble explaining these concepts, I guess. đ Maybe Iâll cover this topic with our new Azubis/trainees some day âŠ)
EROFS Being Extended To Handle Massive Amounts Of Data For AI Model Training
The EROFS open-source, read-only Linux file-system is set to be extended with the upcoming Linux 6.15 kernel cycle to support massive amounts of data to support AI model training⊠â Read more
@prologic@twtxt.net What is âciwtuauâ? I donât understand, sorry haha
@prologic@twtxt.net So it seems!
When will the flat UI craze end? Can I get my buttons, scrollbars, and toolbars back, please?
yes @lyse@lyse.isobeef.org đ
I am working on this: https://dm-echo.andros.dev/
More news coming soon.
#twtxt
@kat@yarn.girlonthemoon.xyz Pointers can be a bit tricky. I know it took me also quite some time to wrap my head around them. Let my try to explain. Itâs a pretty simple, yet very powerful concept with many facets to it.
A pointer is an indirection. At a lower level, when you have some chunk of memory, you can have some actual values sitting in there, ready for direct use. A pointer, on the other hand, points to some other location where to look for the values oneâs actually after. Following that pointer is also called dereferencing the pointer.
I canât come up with a good real-world example, so this poor comparison has to do. Itâs a bit like you have a book (the real value that is being pointed to) and an ISBN referencing that book (the pointer). So, instead of sending you all these many pages from that book, I could give you just a small tag containing the ISBN. With that small piece of information, youâre able to locate the book. Probably a copy of that book and thatâs where this analogy falls apart.
In contrast to that flawed comparision, itâs actually the other way around. Many different pointers can point to the same value. But there are many books (values) and just one ISBN (pointer).
The pointerâs target might actually be another pointer. You typically then would follow both of them. There are no limits on how long your pointer chains can become.
One important property of pointers is that they can also point into nothingness, signalling a dead end. This is typically called a null pointer. Following such a null pointer calls for big trouble, it typically crashes your program. Hence, you must never follow any null pointer.
Pointers are important for example in linked lists, trees or graphs. Letâs look at a doubly linked list. One entry could be a triple consisting of (actual value, pointer to next entry, pointer to previous entry).
_______________________
/ ________\_______________
â â | \
+---+---+---+ +---+---+-|-+ +---+---+-|-+
| 7 | n | x | | 23| n | p | | 42| x | p |
+---+-|-+---+ +---+-|-+---+ +---+---+---+
| â | â
\_______/ \_______/
The âxâ indicates a null pointer. So, the first element of the doubly linked list with value 7 does not have any reference to a previous element. The same is true for the next element pointer in the last element with value 42.
In the middle element with value 23, both pointers to the next (labeled ânâ) and previous (labeled âpâ) elements are pointing to the respective elements.
You can also see that the middle element is pointed to by two pointers. By the ânextâ pointer in the first element and the âpreviousâ pointer in the last element.
Thatâs it for now. There are heaps ;-) more things to tell about pointers. But it might help you a tiny bit.
Hyprland 0.48 Adds A âApplication Not Respondingâ Dialog, Better Color Management
Just days after marking the third birthday of the open-source project, Hyprland 0.48 released today as the newest version of this popular Wayland compositor⊠â Read more
@andros@twtxt.andros.dev @prologic@twtxt.net Exactly. The screenshots of the last few days show it in action. But I do not consider it ready for the world yet. @doesnm@doesnm.p.psf.lt appears to have a high pain tolerance, though. :-)
@andros@twtxt.andros.dev You use your real name as login name, too?
@prologic@twtxt.net I see this with the scouts. Luckily, not at work. But at work, Iâm surrounded by techies.
@movq@www.uninformativ.de Oh my goodness! Iâm so glad that I donât have to deal with that in my family. But yeah, I guess youâre onto something with your theory. This article is also quite horrific. O_o
@movq@www.uninformativ.de Wooaah, that is cool! \o/
LLVM/Clang Compiler Being Adapted For AVX10.2 Now Making 512-bit Support Mandatory
Coming out this week was an updated AVX10 whitepaper from Intel with the surprising decision that 512-bit floating point and integer support is no longer considered optional for AVX10.2. AVX10.2 now mandates 128 / 256 / 512-bit support and in turn also dropped the 256-bit embedded rounding support with the focus on 512-bit. The LLVM/Clang compiler had seen its AVX10 support designed around Intelâs original AVX10 design assumpt ⊠â Read more
@lyse@lyse.isobeef.org Maybe itâs a lyrebird. đ
Hahaha, a bird is singing really load and it sounds almost exactly like a car alarm. Well, itâs probably the other way around, the car alarm was modeled after the birdcall. :-)
@prologic@twtxt.net Yes, it was one of those. 95, 98, and Me were all built on top of DOS, as far as I know.
Qualcomm Iris Video Decode Driver & DesignWare HDMI Input Support Ready For Linux 6.15
Among the earliest of pull requests this week ahead of the Linux 6.15 merge window expected to begin tomorrow were the media subsystem updates. In addition to continuing to improve the common âuvcvideoâ web camera driver and other routine refinements, there is also some new media hardware support slated to be included as part of the Linux 6.15 kernel⊠â Read more
@lyse@lyse.isobeef.org I guess the thing is that usernames are no longer needed for many popular things, like WhatsApp. âJust install the appâ, done. When I ran my Matrix server for our family, this was the first thing that people were bummed out about: âOh, this needs a username and a password? Why doesnât it just work? Thatâs annoying.â
People are less and less exposed to âlow-levelâ details like this. There was also this story in 2021 about the concept of a âfileâ: https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z
I lost my original Windows 95 CD (and itâs too expensive for my taste to buy on eBay), so I finally sat down and got an old disk image of one of my PCs to work in QEMU.
I donât intend to do much with Win95. I just want to be able to boot it, if I want to check how certain things worked or looked in that version. The purpose of this really is to be an archeological digsite.
Rust Additions For GCC 15 Bring Support For if-let Statements, Other Improvements
This past week a lot of new code for the Rust âgccrsâ front-end began being merged for the upcoming GCC 15.1 stable release⊠The Polonius borrow checker landed along with other big improvements to the Rust code ahead of this annual GNU Compiler Collection release. A third round was merged on Friday adding yet more gccrs features⊠â Read more
Sched_Ext Changes Submitted For Linux 6.15
The sched_ext code for extensible scheduler support and being able to quickly prototype new Linux kernel scheduling improvements continues evolving nicely since its much anticipated merging to the mainline kernel in 2024. Ahead of the imminent Linux 6.15 merge window, the sched_ext feature updates were sent out today for this next kernel cycle⊠â Read more
In a couple of days Iâll be giving a talk about #twtxt https://www.meetup.com/es-ES/python-valencia-meetup/events/306769708/
The Startup CTOâs Handbook
https://github.com/ZachGoldberg/Startup-CTO-Handbook/blob/main/StartupCTOHandbook.md
@doesnm@doesnm.p.psf.lt What is tt2?
@lyse@lyse.isobeef.org I had no idea. However, I think weâre losing our sense of anonymity. I even started using my real name!
@eapl.me@eapl.me I looked at the first few puzzles and they are pretty cool so far! I havenât actually implemented any of them, but Iâm fairly certain about how Iâd solve them properly. I went through some linked reference articles yesterday, theyâre also really good. I will recommend this to some workmates. :-)
Itâs extremely surprising to me that younger non-technical people just type in their full name (properly cased first and last name with a space in between) for a technical username in account registration or login forms. Iâve seen that happening several times in the past few years. The field name is âBenutzernameâ in German, literally âusernameâ. Even adding a placeholder text to signal that they could simply use their nickname in lowercase did not change anything at all. Well, one person used at least an e-mail address.
This wasnât the case six, seven years ago, everybody had some ârealâ username. Even non-techies. It looks like some âcommon knowledgeâ is getting lost. Strange. Very weird. It trips me every time I see it.
Have you experienced something similar?
hung out with friends today it was nice :)
FreeDesktop.org GitLab Transitions To New Server Infrastructure
Last weekend FreeDesktop.org began transitioning to their new server/cloud infrastructure after recently finding out their sponsored Equinix Metal services were shutting down. Following the complex migration process this past week, FreeDesktop.org GitLab is up and running on the Hetzner server infrastructure in Germany⊠â Read more
đ§
The âidiossINcrasiasâ series from the ANTI-DEMOS-CRACIA label starts in June!
It was an ill-kept secret: kokori had the honor of being invited to kickstart this series with the also Portuguese band âFloating Ashesâ.
Starting June, ADC will release a series of âidiossINcraciesâ, a special, limited CD collection, where each volume will showcase two musical projects with five songs from each.
The first volume, to be released on the 16th of June, joins Floating Ashes and kokori, and from this moment on you can already get a sample of it with one track from each project, on the labelâs bandcamp:
https://anti-demos-cracia.bandcamp.com/album/idiossincrasia-vol-1
Being œ #kokori Iâm suspect, but I agree with the label when they state that âthis series promises to be a valuable addition to collectors and followers of experimental and alternative music.â
đ reservations can be made by sending me a message.
O Dia da Liberdade Documental celebra-se jĂĄ na prĂłxima semana, e em Portugal hĂĄ conversa pelo Porto!
Pela @ansol@ansol :
âPrograma Eleitoral 2025 - Oportunidade para a Soberania Digital?â
Linux 6.15 Plans To Drop Support For A Useless CRC-32 Checksum In The Kernel Image
Ingo Molnar began sending out the pull requests today for the upcoming Linux 6.15 merge window of code areas he oversees for the Linux kernel. Among those early pulls are of the x86/build updates, which includes removing some seemingly useless CRC-32 checksum code from the kernel⊠â Read more
@doesnm@doesnm.p.psf.lt Heck yeah! Worky, worky! \o/
Hello World from tt2
Ctrl+Left
to jump a word left, I get 1;5D
in my tt2 message text. My TERM
is set to rxvt-unicode-256color
. In tt
, it works just fine. When I change to TERM=xterm-256color
, it also works in tt2
. I have to read up on that. Maybe even try to capture these sequences and rewrite them.
@movq@www.uninformativ.de Hahaha, that name is certainly fitting! :-D
Yeah, I should revert that and try to figure out which programs misbehaved. But thatâs something for future Lyse. 8-) Right now, I just redefine TERM
in my Makefile when the USER
happens to be me.
Ăa mâĂ©nerve, ils ne peuvent mĂȘme pas Ă©crire COâ correctement sur les sites marchand de voiture. Câest COâ, pas COÂČ bordel!
AMD RDNA 3.5 Cleaner Shader Support Prepped For Linux 6.15
Ahead of the imminent Linux 6.15 merge window expected to begin next week, a batch of AMDGPU/AMDKFD Radeon kernel driver updates were sent out on Friday for this next kernel cycle. Itâs mostly about bug fixes but does container cleaner shader support for AMD RDNA 3.5 graphics⊠â Read more
KDE KWin Lands FIFO v1 Wayland Support, GNOME 48 Squeezed In XDG Toplevel Drag v1
There is some new Wayland protocol support activity this week worth mentioning for both the KDE Plasma and GNOME desktops⊠â Read more
On my blog: Free Culture Book Club â Sulphur Nimbus https://john.colagioia.net/blog/2025/03/22/sulphur-nimbus.html #freeculture #bookclub
Code Submitted Ahead Of Linux 6.15 For Enabling Block Sizes Greater Than Page Size
Ahead of the Linux v6.14 kernel expected for release tomorrow and in turn the Linux 6.15 merge window, Linux engineer Christian Brauner at Microsoft began sending out his pull requests today of new code heâs hoping to see merged for this next cycle. One of those interesting pulls is the work for block devices to allow for block sizes to be greater than the page size⊠â Read more
NVIDIAâs Open-Source Kernel Driver Ported To Haiku OS, Mesa NVK Adapted To Run On Top
Haiku OS developer X512 has managed a rather impressive feat: porting NVIDIAâs open-source kernel modules to Haiku. Not only did he get NVIDIAâs official Linux kernel modules running on Haiku but he also ported the Mesa NVK Vulkan driver to be able to run atop the NVIDIA kernel driver interface⊠â Read more
KDE Continues Prepping More Features For Plasma 6.4
KDE developers continue pushing ahead with new feature development on the Plasma 6.4 desktop to further refine Plasma 6⊠â Read more
@prologic@twtxt.net Yeah and I donât get why ⊠Thereâs no copyrighted music in it, no ads (at least I donât see any) ⊠Just weird. đ„Ž
@prologic@twtxt.net Lol, I give up. đ„Ž
Didnât know this side of Aurora. đ
Ctrl+Left
to jump a word left, I get 1;5D
in my tt2 message text. My TERM
is set to rxvt-unicode-256color
. In tt
, it works just fine. When I change to TERM=xterm-256color
, it also works in tt2
. I have to read up on that. Maybe even try to capture these sequences and rewrite them.
@lyse@lyse.isobeef.org Thereâs a reason itâs called â(n)cursesâ. đ The only advice I can give is to never fiddle with reassigning control sequences and $TERM
variables. Leave $TERM
at whatever value the terminal itself sets and use an appropriate terminfo file for it. If there are programs misbehaving, they probably blindly assume XTerm and should be fixed (or have XTerm as a hard requirement). If you try to fix this on your end, itâll likely just break other programs. đ„Ž
@david@collantes.us Ah, I just went to bed, great to see you figured it out. đ I probably would have ended up with something similar (but Iâm not a Vimscript guru). đ€
Chapter 14:
Epilogue:
Chapter 12:
Chapter 13:
I havenât had one since the before times of COVID. I am not sure if my company will have them again for the near future.
#MarchMysteryMadness #FridayReads with the third #book in the Lord Peter Wimsey series, âUnnatural deathâ, here in a #Portuguese edition
T-Display K230 Combines RISC-V Processing with LoRa, Wi-Fi, and AMOLED Display
The LILYGO T-Display K230 is a compact development board targeting IoT and embedded system applications. It features the Kendryte K230 system-on-chip, which includes a dual-core 64-bit RISC-V processor and dedicated units for AI acceleration, graphics rendering, and multimedia processing. The K230 SoC includes two CPU cores: CPU1 operates at 1.6 GHz, while CPU0 runs at
Wine 10.4 Brings More Direct3D To Vulkan Video Handling, Continued Bluetooth Driver Work
Wine 10.4 is out tonight as the newest bi-weekly development release of this open-source software for running Windows games and applications on Linux, macOS, and other platforms⊠â Read more
Ctrl+Left
to jump a word left, I get 1;5D
in my tt2 message text. My TERM
is set to rxvt-unicode-256color
. In tt
, it works just fine. When I change to TERM=xterm-256color
, it also works in tt2
. I have to read up on that. Maybe even try to capture these sequences and rewrite them.
Well, some time ago I put this in my ~/.Xdefaults:
URxvt.keysym.Control-Up: \033[1;5Aâš URxvt.keysym.Control-Down: \033[1;5B
URxvt.keysym.Control-Left: \033[1;5Dâš URxvt.keysym.Control-Right: \033[1;5C
Probably to behave more like XTerm and fix a few other issues I had with other programs. But, it turns out, tcell expects the original sequence: https://github.com/gdamore/tcell/blob/main/terminfo/r/rxvt/term.go#L487
Hmm.
Hmmm, when I Ctrl+Left
to jump a word left, I get 1;5D
in my tt2 message text. My TERM
is set to rxvt-unicode-256color
. In tt
, it works just fine. When I change to TERM=xterm-256color
, it also works in tt2
. I have to read up on that. Maybe even try to capture these sequences and rewrite them.
@david@collantes.us Tada, the reply context is now also shown above. Itâs slowly coming together and reaching a state where I can actually use this as my daily driver I think. :-)
On my blog: Toots 𩣠from 03/17 to 03/21 https://john.colagioia.net/blog/2025/03/21/week.html #linkdump #socialmedia #quotes #week
@david@collantes.us Thanks, yes, absolutely! ;-)
I now notice that I should also show the original message(s) to which I reply. That was super useful in the original tt
. But one after the other. The mentions are now automatically filled in. \o/
Perfect!
I now also implemented basic replying by hitting a
as in answering. Whatâs missing is automatically adding mentions in the message text template. Thatâs gonna be a bit more tricky, though.
vi
or vim
at the beginning of each line? Like, upon opening like so:
@david@collantes.us While youâre typing? I guess this could be used as a starting point (doesnât work on the very first line):
inoremap <CR> <Esc>:r!date +"\%F \%T"<CR>A
Whatâs the end goal here? đ
tt
.) Now, this is the second attempt in tt2
.
Righto, now with added basic subject support. Hopefully!
AMD Announces AITER For ROCm To Help Boost AI Performance
AMD has been on a software / container / documentation spree recently around ROCm and today are announcing another software addition to the ROCm portfolio: AITER⊠â Read more
(Back in tt
.) Well, it kinda worked. At least appending to the file. But my cache database got screwed up. I do not yet support replies, so the subject and and root hash columns have not been set at all, resulting in a message that is just not shown at all. I gotta do something about that next. The good thing is, though, after simply fixing the two columns the message appeared on screen.
(The previous message was written with tt
.) Now, this is the second attempt in tt2
.
Letâs see!
RPI Image Gen Introduces Custom Raspberry Pi Image Creation
The Raspberry Pi team has introduced rpi image gen, a new tool for creating custom software images with detailed control over configuration. It is designed for embedded systems, industrial applications, and personalized projects. rpi image gen is an alternative to the existing pi gen tool, which is used to produce the official Raspberry Pi OS
Microsoft Proposes âHornetâ Security Module For The Linux Kernel
Microsoftâs newest open-source contribution to the Linux kernel being proposed is⊠Hornet, a Linux security module (LSM) for providing signature verification of eBPF programs⊠â Read more
Dang it, first attempt failed:
Somehow, my local feed cannot be opened to append to. I reckon, I have to resolve the tilde first:
ReactOS 0.4.15 Released For This âOpen-Source Windowsâ OS With Tons Of Enhancements
Itâs been over three years since the last ReactOS open-source operating system release for this platform working on API/ABI compatibility with Microsoft Windows. Today ReactOS 0.4.15 was finally published⊠â Read more
i really wanna learn golang it looks fun and capable and i can read it kind of but every time i try it iâm immediately stuck on basic concepts like âwhat the fuck is a pointerâ (this has been explained to me and i still donât get it). i did have types explained to me as like notes on code which makes sense a bit but iâm mostly lost on basic code concepts
M5Stamp PLC Controller with Opto-Isolated Inputs, Relays, PWR CAN, and RS485
The M5Stamp PLC Controller, built on the StampS3A module, is a compact programmable logic controller designed for industrial automation and remote monitoring. With wireless connectivity, versatile I/O, and industrial communication support, it fits applications such as smart manufacturing and distributed control. The StamPLC leverages the StampS3A, which incorporates an ESP32-S3FN8 microcontroll ⊠â Read more
@movq@www.uninformativ.de hahahah i for one hate sleeping and need to be busy 24/7 or else i go insane so server stuff is awesome for my ADHD ass!!!
IaaS does seem kinda interesting to me, i think i could vibe with that more than full on cloud stuff
i hope i can be one of those people who does the barebones stuff bc i am a rare sicko who finds it fun and cloud stuff scares me LMAOOOO
@lyse@lyse.isobeef.org oh yeah i use the CLI sometimes itâs fun af
Linux Security Hardening Fix As Cache Randomization Was Inadvertently Using The Same Seed
Ahead of the upcoming Linux 6.15 kernel cycle a few early pull requests have already been sent in to Linus Torvalds in advance of the anticipated v6.14 release on Sunday. Among those early changes for Linux 6.15 are the SLAB allocator updates that include a fix for cache randomization with kvmalloc inadvertently being inadequate due to accidentally using the same randomization seed⊠â Read more
@kat@yarn.girlonthemoon.xyz Allegedly, thereâs at least a CLI for that, yarnc
. I neither used nor looked at it, though.
@movq@www.uninformativ.de Oh for sure, I fully agree!
@eapl.me@eapl.me Cool!
Proposal 3 (https://git.mills.io/yarnsocial/twtxt.dev/issues/18#issuecomment-19215) has the âadvantageâ, that you do not have to âmentionâ the original author if the thread slightly diverges. It seems to be a thing here that conversations are typically very flat instead of trees. Hence, and despite being a tree hugger, I voted for 3 being my favorite one, then 2, 1 and finally 4.
All proposals still need more work to clarify the details and edge cases in my opinion before they can be implemented.
New Intel/AMD GPU Features, Apple Touch Bar Drivers & Other Likely Changes For Linux 6.15
With the Linux 6.14 stable kernel likely debuting on Sunday, the Linux 6.15 merge window will then open for kicking off the next development cycle. Thereâs a lot of exciting changes and new features building up ahead of the Linux 6.15 merge window⊠â Read more
Raspberry Pi Announces rpi-image-gen To Help Craft Custom Software Images
Following a slew of hardware announcements in the past few months like the RP2350 shipping, Raspberry Pi 5 16GB, Raspberry Pi Monitor, and Raspberry Pi 500, today they have a new software announcement. Today they formally announced ârpi-image-genâ as a new tool to help customers in crafting customized software OS images⊠â Read more
Linux 6.14 Sees Last Minute Fix For A Two Year Old Regression Causing A 30% Performance Drop
Submitted today ahead of the Linux 6.14 stable release expected Sunday is a lone scheduler fix for the kernel. This patch is for reverting a change made to the Linux kernel two years ago that ended up regressing some workloads with a significant performance hit⊠â Read more
AMD Announces Open-Source âGAIAâ For GenAI But Currently Windows-Only
AMD on Thursday announced GAIA for âGenerative AI Is Awesomeâ as a means of easily running local large language models (LLMs) on Ryzen AI PCs with the XDNA NPU. GAIA provides an easy software demonstration for Ryzen AI capabilities but sadly for the moment is limited to Microsoft Windows platforms⊠â Read more
ASUS ROG Flow Z13 Improvements For Linux, RGB Controls For The ROG Ally
A set of eleven patches being worked on for the ASUS HID and platform drivers work to enhance the support for the AMD Strix Halo powered ROG Flow Z13 (2025) laptop as well as adding RGB control support for the ROG Ally gaming handheld⊠â Read more
Dynamic EPP & Raw EPP Features Coming To AMD P-State Driver
The AMD P-State Linux kernel driver for CPU frequency scaling with modern Ryzen processors has been working out quite well and proving very effective over the prior ACPI CPUFreq generic driver use. Beyond recently being extended to becoming the default for EPYC 9005 âTurinâ processrs, AMD P-State has recently been seeing some patches for additional feature work⊠â Read more
Vulkan 1.4.311 Released With New Extension For BFloat16
The Vulkan 1.4.311 specification update is out today with a handful of issues resolved with various clarifications and other subtle refinements. Plus two new extensions⊠â Read more
NXPâs FRDM i.MX 91 Board Provides Low-Power Solution for Linux-Based IoT Systems
Following the release of the FRDM i.MX 93 board, NXP has launched the FRDM i.MX 91 development board, a compact platform based on the i.MX 91 applications processor. It is intended for early-stage development and evaluation of industrial and IoT systems that require basic Linux support, integrated connectivity, and hardware-level security. The board features a
Intel Updates Advanced Performance Extensions âAPXâ Code For The Linux Kernel
In addition to Intel software engineers this week being busy doing a late restructuring of AVX10 support in moving away from possible 256-bit maximum vector register size (a great move and still so excited to see this materialize!), there are also Intel engineers continuing work on enabling Advanced Performance Extensions (APX) on the Linux kernel side⊠â Read more
Santa paciĂȘncia:
Websites prove their identity via certificates, which are valid for a set time period. The certificate for www.app.gov.pt expired on 3/11/2025.
I always find the âAdven of codeâ challenges difficult to follow.
i18n-puzzles.com has been a blast, but I donât like having to think about puzzles on weekends. Like with exercise, doing it every day without rest doesnât sound healthy.
Iâd rater have a weekly challenge, at most three.
On my blog: Real Life in Star Trek, Starship Mine https://john.colagioia.net/blog/2025/03/20/starship-mine.html #scifi #startrek #closereading
The Most Interesting Linux 6.14 Features From NTSYNC To AMD Ryzen AI & Rust Abstractions
Barring any last minute issues or hesitation by Linus Torvalds, the Linux 6.14 kernel is aiming for releasing as stable this coming Sunday on 23 March. Hereâs a reminder about some of the most interesting changes to find with Linux 6.14⊠â Read more