Bonum Certa Men Certa

Links 20/04/2023: News Still Dominated by 'Lunar Lobster'



  • GNU/Linux

    • Desktop/Laptop

      • 9to5LinuxSystem76 Refreshes Its Serval WS, Adder WS, and Bonobo WS Linux Laptops

        After updating the Oryx Pro and Gazelle laptops earlier this year, System76 now offers updated versions of the Serval WS, Adder WS, and Bonobo WS models featuring HK-class processors from the 13th Gen Intel Core i9 13900HX “Raptor Lake” series, up to 64GB DDR5 RAM, NVIDIA 40 series of graphics cards, 4K displays, and refresh rates as high as 165Hz.

        Starting at $1599 USD, the new Adder WS laptop is System76’s first notebook offering featuring the NVIDIA 40 GPU series up to GeForce RTX 4070. It’s also equipped with an Intel Core i9 13900HX CPU with 24 cores and 32 threads, and DDR5 RAM.

      • HowTo GeekSystem76 Has Many New Linux Laptops For You

        System76 is one of the brands Linux enthusiasts geek out the most about, and with good reason. The company is not only behind the Pop!_OS Linux distribution but also has a lot of hardware of its own. It is now releasing a range of new Linux-powered laptops for you to check out.

        System76 recently announced one new laptop, the Gazelle, but today’s announcement is seeing three new offerings added to the fray. We have the Adder WS, the Serval WS, and the Bonobo WS, ordered from least to most premium. The Adder WS’s big step up compared to the Gazelle is the addition of NVIDIA’s RTX 4000 GPUs, with the Adder coming with up to an RTX 4070. It can also be outfitted with up to an Intel Core i9-13900HX CPU, with a total of 24 processing cores, as well as DDR5 RAM.

      • ZDNet The Kubuntu Focus Ir14 is an upcoming Linux laptop worthy of powering the KDE Plasma desktop

        Kubuntu Focus focuses on laptops that run the Kubuntu operating system. For those that aren't aware, Kubuntu is an official spin of Ubuntu that uses the KDE Plasma desktop in place of GNOME.

        KDE Plasma offers many of the same elements most users are accustomed to (panel, system tray, desktop menu, clickable desktop icons, etc). It's similar to the Windows desktop UI, only with more flexibility and customization. And given how elegant KDE Plasma is, one would expect a laptop to power that desktop to be equally so.

    • Audiocasts/Shows

      • The BSD Now PodcastBSD Now 503: Fast Unix Commands

        ZFS Optimization Success Stories, Linux Namespaces Are a Poor Man's Plan 9 Namespaces, better support for SSH host certificates, Fast Unix Commands, Fascination with AWK, and more

    • Kernel Space

      • LWNThe early days of Linux

        My name is Lars Wirzenius, and I was there when Linux started. Linux is now a global success, but its beginnings were rather more humble. These are my memories of the earliest days of Linux, its creation, and the start of its path to where it is today.

        I started my computer science studies at the University of Helsinki in the fall of 1988, and met Linus Torvalds, who was the other new Swedish speaking student in computer science that year. Toward the end of that first year, we had gotten access to a Unix server, and I accidentally found Usenet, the discussion system, by mistyping rm as rn, the Usenet reader. I told Linus about it and we spent way too much time exploring this.

        After the first year, we both went away to do the mandatory military service, though in different places. We returned to our university studies in the fall of 1990, and both took the course on C and Unix programming, which included a fair bit of theory of the Unix kernel architecture as well. This led to us reading about other operating system kernels, such as QNX and Plan 9. Linus and I discussed with some enthusiasm how an operating system should be built correctly. We had all the overconfidence of 20-year-old second-year university students. Everyone is better off that this wasn't recorded for posterity.

        In January 1991, Linus bought his first PC from a local shop that assembled computers from parts. The PC had a 386 CPU, which was relatively fancy at that time, because Linus wanted to explore multitasking. Also, since he came from a Sinclair QL with a 32-bit Motorola 68008 CPU, he wanted a 32-bit CPU, and did not want to step down to a 16-bit one, so a 286 was not an option. Linus's first PC had a whopping 4 megabytes of RAM and a hard drive.

        He got a copy of the game Prince of Persia, which occupied most of his spare time for the next couple of months. He later also bought a copy of MINIX, because after using Unix at the university, he wanted something like that at home as well.

      • LWNSeeking an acceptable unaccepted memory policy

        Operating systems have traditionally used all of the memory that the hardware provides to them. The advent of virtualization and confidential computing is changing this picture somewhat, though; the system can now be more picky about which memory it will use. Patches to add support for explicit memory acceptance when running under AMD's Secure Encrypted Virtualization and Secure Nested Paging (SEV-SNP), though, have run into some turbulence over how to handle a backward-compatibility issue.

        Normally, when the operating-system kernel boots, it discovers the available memory and happily sets itself up to use that memory. Version 2.9 of the UEFI specification, though, added the concept of unaccepted memory; when this mechanism is in use, a system (normally a virtualized guest) will be launched with its memory in an unaccepted state. That system will not be able to make use of the memory provided until that memory has been explicitly accepted. On such systems, the bootloader will typically pre-accept enough memory to allow the guest kernel to boot; that kernel must take responsibility for accepting the rest before using it.

      • LWNThe shrinking role of semaphores

        The kernel's handling of concurrency has changed a lot over the years. In 2023, a kernel developer's toolkit includes tools like completions, highly optimized mutexes, and a variety of lockless algorithms. But, once upon a time, concurrency control came down to the use of simple semaphores; a discussion on a small change to the semaphore API shows just how much the role of semaphores has changed over the course of the kernel's history.

        At its core, a semaphore is an integer counter used to control access to a resource. Code needing access must first decrement the counter — but only if the counter's value is greater than zero; otherwise it must wait for the value to increase. Releasing the semaphore is a matter of incrementing the counter. In the Linux kernel implementation, acquisition of a semaphore happens with a call to down() (or one of a few variants); if the semaphore is unavailable, down() will wait until some other thread releases it. The release operation, unsurprisingly, is called up(). In the classic literature, as defined by Edsger Dijkstra, those operations are called P() and V() instead.

      • LWNStandardizing BPF

        The extended BPF (eBPF) virtual machine allows programs to be loaded into and executed with the kernel — and, increasingly, other environments. As the use of BPF grows, so does interest in defining what the BPF virtual machine actually is. In an effort to ensure a consistent and fair environment for defining what constitutes the official BPF language and run-time environment, and to encourage NVMe vendors to support BPF offloading, a recent effort has been undertaken to standardize BPF.

        BPF programs are written in C, and compiled into BPF bytecode. Like other bytecode instruction sets, BPF programs are platform-independent and just-in-time (JIT) compiled. For a long time, "platform-independent" for BPF simply meant the ability to run BPF programs on multiple different architectures on Linux. That definition has expanded in recent years, with Microsoft implementing a version of BPF for Windows, and network-interface vendors, such as Netronome, providing the ability to offload BPF networking programs. NVMe vendors are also looking into supporting offloading functionality to BPF for storage devices with a new framework called eXpress Resubmission Path (XRP), though this effort is currently stalled due to BPF not being standardized.

    • Benchmarks

      • Hot HardwareAMD Ryzen 7 7800X3D Benchmark Battle Pits Windows 11 Against Ubuntu Linux

        Staunch Linux advocates have been saying for some time that the Unix derivative's application performance outstrips that of Windows, assuming all other factors are equal. Valve even proved it back in 2012 by porting Left 4 Dead 2 to Linux as part of its original Steam Machine push.

    • Applications

      • Unix MenLinux-Based Safety Management Software: A Comprehensive Guide

        Safety management software is a crucial tool for businesses to effectively manage workplace safety, reduce risks, and maintain compliance with industry regulations. In today’s world, safety management systems are essential for preventing workplace accidents and ensuring employee well-being. But what makes Linux a great platform for safety management software? Let’s find out!

        If you are looking to perform a fire inspection of a building or facility using software on a Linux system, you can use a combination of tools to help you plan, visualize, and analyze building layouts with regard to fire safety

      • Make Use OfWhat Is Manuskript and How Does It Help You Write Novels?

        Writing a novel is hard, and it's difficult to keep track of character arcs, branching plot lines, and random ideas which drift into your head and then vanish before you have a chance to flesh them out.

        Manuskript is an open-source utility for Windows, macOS, and Linux, which can help you to organize your thoughts, lay out your chapters, and explore motivations.

    • Instructionals/Technical

      • AddictiveTipsHow to Install the Backdrop CMS Dependencies on Ubuntu Server

        The Backdrop CMS system requires several dependencies that the user must install, including the Apache web server, MySQL, PHP, and several PHP extensions. To start the installation of these dependencies, launch a terminal and SSH into the server or launch a terminal physically.

      • 2 Ways to install Bitwarden on Debian 12 or 11 Linux

        Bitwarden is a password manager that offers both SAAS service and the opportunity for admins to create their own password manager server using the open-source Bitwarden server.

      • LinuxiacWatchtower: Automatically Update Docker Container Images

        Keep your Docker container images up-to-date effortlessly with Watchtower! Learn how to update them automatically with our guide.

      • Ignoring databases to write to a binary log in MySQL

        Hey there, fellow database enthusiasts!

      • FOSSLinuxTips and Tricks for Optimizing Linux Device Performance

        In this article, we'll explore various tips and tricks that can help you optimize your Linux device performance, ensuring that your system runs smoothly and efficiently. We'll cover topics such as choosing the right distribution, optimizing system settings, managing resources, and maintaining a clean file system.

      • FOSSLinuxExploring the Pop!_OS community and support resources

        In this guide, we will explore the numerous community and support resources available to help you get the most out of your Pop!_OS experience. From vibrant online forums to official documentation, you'll never feel lost or alone as you navigate your way through this powerful operating system.

      • ZDNetHow to kill a process in Linux

        Sometimes a process or application can cause problems on a Linux machine. When that happens, you'll need to know how to kill the wayward process.

    • Games

  • Distributions and Operating Systems

    • Gentoo Family

    • SUSE/OpenSUSE

      • SUSE's Corporate BlogIntroducing SUSE support for the newest model of IBM LinuxONE Rockhopper and IBM z16 Platforms

        The ground-breaking combination of IBM and SUSE security and sustainability initiatives pave the way to better€ choices for our customers. This is exemplified by IBM’s recent announcement of the new IBM LinuxONE Rockhopper 4 and IBM z16 Single Frame platforms.€  These latest systems: Launch a new era of sustainability with a more cost-effective rackmount system.

    • Canonical/Ubuntu Family

      • Canonical Canonical releases Ubuntu 23.04 Lunar Lobster
        Today Canonical announces the release of Ubuntu 23.04, codenamed “Lunar Lobster”. Available to download and install from https://ubuntu.com/download.

        “This Ubuntu milestone release demonstrates our progress in raising the bar for the enterprise developer desktops, thanks to our best-in-class Linux integration with Active Directory Domain Services and now Azure Active Directory”, said Mark Shuttleworth, CEO of Canonical. “Our expanded investment in Ubuntu gaming means your downtime is just as satisfying”.

      • UbuntuUbuntu Desktop 23.04 release roundup
        Every new release of Ubuntu Desktop comes packed with new features and functionality to enable developers, gamers, creators and tinkerers. Ubuntu 23.04 is no exception.

        Our focus, as always, has been improving quality, performance and enjoyment for all our users, whether that’s more elegant update handling for snaps, improved UI for installation and quick settings or a more accessible gaming experience.

      • Ubuntu StudioUbuntu Studio 23.04 Released
        The Ubuntu Studio team is pleased to announce the release of Ubuntu Studio 23.04, code-named “Lunar Lobster”. This marks Ubuntu Studio’s 33rd release. This release is a regular release and as such, it is supported for 9 months (until January 2024).

        Since it’s just out, you may experience some issues, so you might want to wait a bit before upgrading. Please see the release notes for a complete list of changes and known issues.

      • Ubuntubuzz Ubuntu 23.04 Lunar Lobster is Released with Download Links, Official Flavors and Torrents

        Ubuntu 23.04 Lunar Lobster is here! Congratulations to all computer users especially Ubuntu community as Canonical releases Lunar Lobster on Thursday, 20 April 2022. This is a regular release with 9-month support that comes with a lot of new technologies. Continuing the surprise of Ubuntu Unity in the previous release Kinetic Kudu, in this release we are surprised by the official introduction of two flavors Cinnamon, the user friendly interface flagship of the famous Linux Mint, and Edubuntu, the revival of the school-oriented operating system. In this article, you will be able to download Ubuntu 23.04 and all official flavors to later install one into your desktop PC, laptop, and server. Happy downloading!

      • Ubuntu News Ubuntu 23.04 (Lunar Lobster) released
        Ubuntu 23.04, codenamed “Lunar Lobster”, is here. This release continues Ubuntu’s proud tradition of integrating the latest and greatest open source technologies into a high-quality, easy-to-use Linux distribution. The team has been hard at work through this cycle, partnering with the community and our partners, to introduce new features and fix bugs.

        Ubuntu Desktop 23.04 features a new installer, unifying the Ubuntu server and desktop installation engine, enabling the same autoinstall configuration workflows for both desktops and servers. The UI sports a refreshed user interface with a modern but familiar first-time user experience.

        This release includes GNOME 44, delivering further usability improvements with a focus on new quick settings options for bluetooth device management and dark mode. And desktop snaps now benefit from new refresh functionality for quicker application of updates.

      • GamingOnLinux Ubuntu 23.04 is out now with GNOME 44 and a stable Steam Snap
        Canonical has today released Ubuntu 23.04, their latest short-term new-feature release (it's not an LTS) that will be supported until January 2024.

        One of the big user-facing additions is the new installer that they say offers a "streamlined and more intuitive user experience". While it offers up a refresh look the code behind the scenes is the biggest change, since it now shares the code-base with Ubuntu Server so they can give a more consistent experience.

      • DebugPointUbuntu 23.04 "Lunar Lobster" is Available for Download. This is What's New

        Ubuntu 23.04, codenamed "Lunar Lobster", has been released as the first short-term version of 2023. It will receive support for nine months until January 2024. This version focuses on enhancing Ubuntu's core backend and adopting new packages and technology to prepare for next year's LTS release (Ubuntu 24.04).

        This is what's new.

      • 9to5LinuxYou Can Now Upgrade Ubuntu 22.10 to Ubuntu 23.04, Here’s How

        Dubbed Lunar Lobster, Ubuntu 23.04 introduces several new features and improvements, such as the latest Linux 6.2 kernel for better hardware support, the latest GNOME 44 desktop environment, a new Mesa graphics stack for gaming, as well as some of the most recent GNU/Linux technologies.

        Ubuntu 22.10 (Kinetic Kudu) was released on October 20th, 2022, and it’s only supported for nine months, until July 2023. Since this isn’t an LTS (Long Term Support) release, users might want to consider upgrading to Ubuntu 23.04 as soon as possible.

      • LWNUbuntu 23.04 (Lunar Lobster) released

        The Ubuntu 23.04 release is out. Headline features include a new installer, GNOME 44, Azure Active Directory authentication, and more.

      • ZDNet Canonical unveils Ubuntu 23.04 'Lunar Lobster': A Linux distro for work and play

        Canonical has officially released Ubuntu 23.04, codenamed Lunar Lobster, which is the latest version of its Linux distribution and it boasts improvements for enterprise developer desktops, gaming enhancements, a revamped installer, and an expanded focus on gaming.

        "This Ubuntu milestone release demonstrates our progress in raising the bar for the enterprise developer desktops, thanks to our best-in-class Linux integration with Active Directory (AD) Domain Services and now Azure Active Directory," said Canonical CEO Mark Shuttleworth.

    • Devices/Embedded

      • LWNSearching for an elusive orchid pollinator



        He was in a "Raspberry Pi phase" a year or so later and thought he could use that device to help in the search. He put up a block diagram of the Raspberry-Pi-based camera system that he built. It uses an infrared camera to continuously take pictures of a target flower. It is powered by two "very heavy, unfortunately" sealed lead-acid (SLA) batteries using a power distribution board that allows him to swap batteries in the field without shutting down. He also designed a companion board with a realtime clock, small display for power monitoring, and that could drive an infrared floodlight at night.

        He started out taking full-resolution photos, but "it was taking too long to take a photograph, relatively speaking"; he reduced the resolution to 1920x1080, which allowed him to take a photo every 0.8 seconds. The "3.2 million photographs" from the title of his talk referred to what he gathered in a normal month-long season: a bit over 100K photos per day for roughly 30 days. Over a season, five different flowers were monitored in succession.

      • CNX Software100ASK-V853-Pro – A feature-rich Allwinner V853 board designed for AI vision applications

        The 100ASK-V853-Pro board is a development kit consisting of an Allwinner V853 system-on-module board (SoM) and a feature-rich carrier board with a large number of interfaces. Allwinner V853 supports up to 1TOPS of NPU computing power and is mainly for AI vision application development. The core board contains a DDR and eMMC as well as a PMU chip (AXP2101) and is connected to the carrier board through a board-to-board connector.

      • CNX SoftwareArduPico – An Arduino UNO compatible baseboard for Raspberry Pi Pico

        WisdPi ArduPico is an Arduino UNO-shaped baseboard designed for the Raspberry Pi Pico and compatible boards that enables makers to reuse most Arduino shields available on the market and also adds for few I/Os and features.

      • Stacey on IoTHands on with the Matter beta for Home Assistant

        Now that I'm done reviewing the latest Matter devices from Nanoleaf, it's time to turn my attention back to Home Assistant. Since I haven't taken a deep dive on this open source smart home platform in a few years, I recently set it up on a spare Raspberry Pi.

      • Matter Explained: What You Need to Know About This Next-gen Smart Home Protocol

        The dream of smart home unity may finally be here thanks to Matter. This next-gen smart home protocol helps all your various smart home devices play well together without numerous apps or complicated setups. Ideally, this will drastically change the future of smart home technology for the better.

    • Mobile Systems/Mobile Applications

      • Net2Top 10 Android Emulators for Linux

        As technology keeps evolving, the demand for top-notch Android emulators for Linux has exploded. Android emulators are nifty software that lets you run Android apps on your computer, creating a virtual Android environment for testing,€ development, or gaming.

  • Free, Libre, and Open Source Software

    • Events

    • SaaS/Back End/Databases

      • Aerospike Database 6.3 Offers Better Resource Management

        Aerospike is releasing Aerospike Database 6.3, delivering operational, quality, performance, and stability improvements.

        Aerospike Database 6.3 adds support for OpenSSL 3, which means that it runs well on Red Hat Enterprise Linux 9 (RHEL) and its many clones, as well as Ubuntu 22.04. The release continues to support RHEL and Debian-compatible Linux distributions that come with OpenSSL 1. One caveat is that support for Debian 10 on ARM64 hardware has been discontinued, however, server 6.3 still runs on Debian 10 on x86_64.

        Ubuntu 18.04 was removed from the list of supported Linux distributions, starting with server 6.3.

    • Programming/Development

      • Python

        • LWNPython 3.12: error messages, perf support, and more

          Python 3.12 approaches. While the full feature set of the final release—slated for October 2023—is still not completely known, by now we have a good sense for what it will offer. It picks up where Python 3.11 left off, improving error messages and performance. These changes are accompanied by a smattering of smaller changes, though Linux users will likely make use of one in particular: support for the perf profiler.

      • Shell/Bash/Zsh/Ksh

        • TecAdminUsing Logical Operators in Bash: A Comprehensive Guide

          Bash, or the Bourne-Again SHell, is a powerful and versatile scripting language widely used in the Linux and Unix environments. One of the key features of Bash scripts is the ability to create conditions and control the flow of execution using logical operators.

        • Make Use OfThe Linux Bourne Shell Explained

          The Bourne shell is one of the oldest shells still in use on modern Linux systems, even though it's not as widely used as Bash. Here's what you need to know about the Bourne shell on Linux.

  • Leftovers

  • Gemini* and Gopher

    • Personal

      • Obedience

        Obedience is one of those virtues not commonly wanted nowadays. It can even be the least wanted one. That's simply because we are being told that we should listen to noone but ourselves, that we are the decisive ones in our lives. Well... In some meanings those probably are true. But to say, that those statements are always true is a grave mistake!

      • Yretek - Treasures of the Wild East - Solo RPG - 01

        Just in case, you have not read my previous entries: this one is meant to be a story written with dice, i.e. the product of a solo, tabletop role-playing game.

      • Pool

        My dad's parents owned a pool table when he was young. My grandfather taught him how to play, and when my dad attended university, he spent quite a bit of time at local pool halls and competing in small tournaments. When he and my mother moved to the town where I grew up, he purchased a table for himself, and he taught me and my sister the game.

        One of my high school friends frequented a pool bar near me, but I usually didn't have the time to join him, especially during my college days. However, I've always enjoyed the game, and I've always wanted to get better than I am.

      • Codigo Penal de Cuba: translation

        It being the 20th April, I was curious about the status of drug laws in Cuba. It seems they're defined in the Penal Code (Codigo Penal), which was updated in 2022. I couldn't find an English translation offhand, so here's my manual attempt for the relevant section.

      • my school experience

        I have been in college for 3 years. I started when I was a junior in high school, and am now almost finished as the equivalent of a freshman in college. I was able to start as a junior because of my state's program that allowed me to take college credits while in high school. I went to a small (and underfunded) school that had a very small course list, which mean that I met the requirements for graduation very quickly. Soon after taking the ACT, they allowed me to go to the Ohio State University, free of charge, for the remainder of my time in school (or I could graduate early, but that was a poor decision and would leave me in a tough spot at the time). So, I buckled up and joined 2 or 3 other students that were in the same boat as me, and headed to Ohio State. This was during the COVID-19 lockdown so it was all online but nonetheless I started taking courses. Long story short, I made it and was able to receive my degree from Ohio State before I even received one from my high school. I am very thankful for my opportunities and relatively proud of the work that went into accomplishing that. I am now on my way, with 50% completed, to receiving my bachelor's degree in Software Engineering from Western Governor's University. However, my accomplishments are not the main focus of this post; in fact, I very rarely like sharing it with people because it makes me uncomfortable and I'm sure it inspires bad feelings occasionally as well. No, this is about the many failures I endured throughout my school career.

    • Technical

      • Headphone charging UX 🎧

        My wireless headphones have a battery that lasts for ages. Hooray! But eventually it goes flat, and then two things happen.

      • Testing the Network

        Other reasons might include overly zealous firewalls, though there one might expect the packet to be dropped, not a signature mismatch--maybe it's a zealous and buggy firewall? Such are not unknown. Even with a zealous firewall that blocks ICMP echo requests (or the responses, or both), all sorts of other protocols and ports could be open. Or maybe pings are rate limited and your system happened to be beyond the limit when you tested it. In this case one might try the same thing and expect a different result (Einstein).

        That pkg_add works indicates that HTTPS works and likely also DNS, too. Everything else could be broken--maybe the hypothetical firewall only allows DNS and HTTPS. Package requests could be done by IP address, in which case DNS could also be blocked. Unlikely, but possible.


* Gemini (Primer) links can be opened using Gemini software. It's like the World Wide Web but a lot lighter.



Recent Techrights' Posts

Microsoft's Bing Falls to Fourth in the Europe/Asia-Based Turkey, Share Halved Since LLM Hype, Now Only 1% (Sometimes Less)
Turkey (Eurasia) is another example of Microsoft failing with LLM hype and just burning a lot of energy in vain (investment without returns)
Backlash and Negative Press After Microsoft Tells Diversity, Equity, and Inclusion (DEI) People to DIE
Follow-up stories
Censorship as Signal of Opportunity for Reform
It remains sad and ironic that Wikileaks outsourced so much of its official communications to Twitter (now X)
The World Wide Web Has Been Rotting for Years (Quality, Accuracy, and Depth Consistently Decreasing)
In the past people said that the Web had both "good" and "bad" and that the good outweighed the bad
Comoros: Windows Plunges to Record Low of About 6% in Country of a Million People (in 2010 Windows Was 100%)
Many of these people earn a few dollars a day; they don't care for Microsoft's "Hey Hi PC" hype
The Mail (MX) Server Survey for July 2024 Shows Microsoft Collapsing to Only 689 Servers or 0.17% of the Whole (It Used to be About 25%)
Microsoft became so insignificant and the most astounding thing is how the media deliberate ignores it or refuses to cover it
Windows Down From 98.5% to 22.9% in Hungary
Android is up because more people buy smaller mobile devices than laptops
Microsoft Windows in Algeria: From 100% to Less Than 15%
Notice that not too long ago Windows was measured at 100%. Now? Not even 15%.
 
Joel Espy Klecker & Debian on Joe Biden's health and Donald Trump's assassination
Reprinted with permission from Daniel Pocock
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Wednesday, July 17, 2024
IRC logs for Wednesday, July 17, 2024
Links 18/07/2024: Hostname Pedantry and Retro Coding
Links for the day
Fedora Week of Diversity (FWD) 2024 Attracting 0.01% of the IBM Staff "Was a Success"
They expect volunteers (unpaid slaves) to do the PR for them...
African's Largest Population (Nigeria) Approaching 80% Android "Market Share" Amid Steady Monthly Increases While Microsoft Has Mass Layoffs in Nigeria
Microsoft- and Apple-sponsored Western (or English-speaking) media chooses to ignore that or treat it as irrelevant (a racist disposition in its own right)
[Meme] The Warlord's Catspaw
Thugs that troll us
Microsoft Misogyny Will be the Fall of Microsoft (Covering Up for Misogynists is a Huge Mistake and Highly Misguided Short-term Strategy)
Microsoft's undoing may in fact be its attitude towards women
Red Hat Keeps Behaving Like a Microsoft Reseller (for Proprietary Stuff!), Microsoft Employees as Authors in redhat.com
In some ways this reminds us of Novell
UEFI 'Secure Boot' Once Again Bricking PCs and Fake Security Models Are Perishing in Geminispace
Let's Encrypt has just fallen again
Links 17/07/2024: New Attacks on the Press, European Patents Squashed Even at Kangaroo Court (UPC)
Links for the day
Gemini Links 17/07/2024: Proponents of Censorship and New Arrivals at Gemini
Links for the day
Links 17/07/2024: School Budget Meltdown and Modern Cars as Tracking Nightmares
Links for the day
This Should Certainly be Illegal, But the Person Who Helped Microsoft Do This is Still Attacking the Critics of It
perhaps time for an "I told you so post"
[Meme] A Computer With an Extra Key on the Keyboard Isn't Everyone's Priority
(so your telling me meme)
Africa as an Important Reminder That Eradicating Microsoft Doesn't Go Far Enough
Ideally, if our top goal is bigger than "get rid of Microsoft", we need to teach people to choose and use devices that obey them, not GAFAM
Billions of Computers Run Linux and Many Use Debian (or a Derivative of It)
many devices never get updated or even communicate with the Net, so exhaustive tallies are infeasible
[Meme] Microsoft is Firing
Don't worry, Microsoft will have some new vapourware coming soon
More DEI (or Similar) Layoffs on the Way, According to Microsoft Team Leader
What happened shortly before Independence Day wasn't the end of it, apparently
[Meme] Many Volunteers Now Realise the "Open" in "OpenSUSE" or "openSUSE" Was Labour-Mining
Back to coding, packaging and testing, slaves
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, July 16, 2024
IRC logs for Tuesday, July 16, 2024
Microsoft Windows "Market Share" in New Zealand Plunges to 25%
Android rising
[Meme] Ein Factory
A choice between "masters" (or "master race") is a false choice that results in mass exploitation and ultimately eradication (when there's little left to exploit)
Links 17/07/2024: Open Source Initiative Lies and Dark Net Thoughts
Links for the day
SUSE Goes Aryan: You May Not Use the Germanic Brand Anymore (It's Monopolised by the Corporation)
Worse than grammar Nazis
Media Distorting Truth to Promote Ignorance
online media is rapidly collapsing
Gratis But Not Free as in Freedom: How Let's Encrypt is Dying in Geminispace
Let's Encrypt is somewhat of a dying breed where the misguided CA model is shunned
Android Rises to New Highs of Almost 80% in Cameroon
How many dozens of nations will see Windows at under 10% this coming winter?
Links 16/07/2024: TikTok Ban in Europe and Yandex Split
Links for the day
Gemini Links 16/07/2024: On Packrafting and on Trump Shot
Links for the day
[Meme] Firefox Users Who Think They Know Better Than Mozilla
Enjoy Firebook
Firefox Used to Have About Half the Market in Switzerland, But It Doesn't Stand a Chance Anymore (Chrome Surging This Summer)
Mozilla has managed to alienate some of the biggest fans of Firefox
Microsoft's Biggest Losses Are in Europe This Summer
Microsoft's ability to milk a relatively rich Europe is fast diminishing
How to Make Software Suck and Discriminate Against People at the Same Time
ageism glorified
Bing Was at 2.6% in Russia When LLM Hype Started. Now It's Down to 0.8% (for 3 Months in a Row Already)
The sharp fall of Bing may mean that exiting the Russian market won't matter to anybody
[Meme] Microsoft Seems to be Failing to Comply With WARN Act (by Refusing to Announce Mass Layoffs as They Happen)
since when does Microsoft obey the law anyway?
Microsoft Layoffs Are Still Too Frequent to Keep Abreast of and Properly (or Exhaustively) Classify
The "HR" department knows what's happening, but whistleblowers from there are rare
Bahamas Joined the "5% Windows" Club
statCounter only traces back about 1 in 20 Web requests to Windows
Links 16/07/2024: Salesforce Layoffs and Microsoft's DMARC Fail
Links for the day
Antenna Abuse and Gemini Abuse (Self-hosting Perils)
Perhaps all this junk is a sign of Gemini growing up
Possibly Worse Than Bribes: US Politicians and Lawmakers Who Are Microsoft Shareholders
They will keep bailing out Microsoft to bail themselves out
The Software Freedom Conservancy Folks Don't Even Believe in Free Speech and They Act As Imposters (Also in the Trademark Arena/Sense)
Software Freedom Conservancy was already establishing a reputation for itself as a G(I)AFAM censor/gatekeeper
Djibouti Enters the Windows "10% Club" (Windows Was 99% in 2010)
In Africa in general Microsoft lost control
GNU/Linux Share Doubled in the United States of America (USA) in the Past 12 Months
Or so says statCounter
Even in North Korea (Democratic People's Republic Of Korea) Google Said to Dominate, Microsoft Around 1%
Google at 93.26%
[Meme] The Red Bait (Embrace... Extinguish)
They set centos on fire, then offer a (de facto) proprietary substitute for a fee
Shooting the Messenger to Spite the Message
segment of a Noam Chomsky talk
[Video] Boston Area Assange Defense (Yesterday)
It was published only hours ago
Guinea: Windows Down From 99.3% to 2.7% 'Market Share'
Guinea is not a small country
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Monday, July 15, 2024
IRC logs for Monday, July 15, 2024
What's Meant by "Antenna Abuse" (Gemini)
syndication is not a monopoly in Gemini and if one doesn't condone political censorship, then one can create one's own syndication service/capsule
Microsoft Layoffs and Entire Unit Termination: Diversity, Equity, and Inclusion
What an announcement to make just before Independence Day
Links 16/07/2024: Old Computer Challenge and One Page Dungeon Contest
Links for the day