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 Staff Explains How Microsoft Swindled Employees and Avoided Paying Out Severance Pay (Microsoft Hasn't Much Money Left in the Bank)
This is a classic way to avoid paying workers
Techrights Should be Even Faster Now
We're now better off
Richard Stallman (RMS) Gave 3 Talks in India in Less Than a Week
In India this month we've not seen a single negative comment about RMS
Microsoft Mass Layoffs Without Severance Pay Reported Hours After Microsoft Reported Weak Numbers and Microsoft Stock Fell
Microsoft has a bloodbath this month
Another Slew of Fake Articles About 'Linux' and 'Security' From Brittany Day at linuxsecurity.com (Spamfarm/Slopfarm)
linuxsecurity.com is basically a pariah and parasite. It lessens the incentive to write real articles about "Linux" by generating fake ones to outrank the originals.
 
Links 31/01/2025: Mass Layoffs at Amazon and Microsoft, Sweden Again Fails to Protect Critics of Violence
Links for the day
Slopwatch: Fake Articles About "Linux" and More (Latest Roundup Featuring BetaNews, Janus Atienza, and Brittany Day From Guardian Digital, Inc)
LLM slop season
"Not one of us" by Dr. Andy Farnell
Elon Musk has brought embarrassment to nerds and technologists
Gemini Links 31/01/2025: "Bulletin Buble" and "Why Blog?"
Links for the day
Static Site Generators (SSGs) Pay Off: Vastly Faster Sites, Much Smaller Hosting Bills
success story for SSGs
Of Note: Linux Foundation Has Already Let Linux.com Rot for About 4 Months (No Activity)
there's no campaign aside from marketing spam there
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, January 30, 2025
IRC logs for Thursday, January 30, 2025
Indian Data Biases statCounter For or Against "Linux"
In statCounter, the GNU/Linux increases and decreases are deeply tied to what it does with data collected in India
The Corporate Media Pretends That Facebook ("Meta") Has Performed Well, But Its Debt Doubles Every 2 Years Despite Mass Layoffs
That same media also helps parrot misleading financial claims
Microsoft's Debt Surged by More Than 6,000,000,000 Dollars in Just 3 Months
numbers released hours ago
The Sheer Irony of Microsoft Proxy Accusing Others of 'Stealing'
Wherever DeepSick's data came from, Microsoft (or its proxy) is in no position to issue criticism.
The Difference a Decade (and GAFAM Money) Makes
Credibility cannot be purchased
[Meme] The Free Software Foundation (FSF) Has Critics Because Its Message is Effective
Applying to others the same standards one is willing to violate?
The Free Software Foundation (FSF) Raised $422,000 (Another $22k in the Two Weeks After Campaign Ended), Proving That Truth and Justice Tend to Find a Way
10,000+ dollars a week even without campaigning for more funds
Faking Revenue Increase by Buying Your Own Products and Services (Through Scams and Scammers Like Scam Altman)
Is this what society deserves? Media that instead of exposing corruption has chosen to participate in it and profit from it?
Links 30/01/2025: Fentanylware (TikTok) Causes Deaths, FBI Seizes Domains
Links for the day
Gemini Links 30/01/2025: Action vs Inaction, Gopherholes, and More
Links for the day
Links 30/01/2025: Microsoft Wants Convicted Felon to Give Fentanylware (TikTok) to It (After Making a Phonecall Asking for That in 2019), "Moving Away From Google's Ecosystem"
Links for the day
Jack M. Germain (LinuxInsider) Seems to Have Turned to LLM Slop, Graphics Slop, and B2B SPAM
LinuxInsider is barely active anymore
Links 30/01/2025: Amazon Layoffs and DeepSeek Panic
Links for the day
Gemini Links 30/01/2025: Chaos Reigns, E-mail, Searching
Links for the day
IBM: Many Thousands of Layoffs in 2025
If 2025 is expected to be the same, then perhaps about 20,000 IBM workers will no longer be there
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Wednesday, January 29, 2025
IRC logs for Wednesday, January 29, 2025
Google: Your Only Option is Google YouTube (Coming Soon: Mandatory DRM and Attestation?)
Digital Restrictions (DRM) to follow? Only for "approved" (attestation) browsers?
Mastodon Was Always Biased (Just Like Twitter After Abandoning Chronological and Neutral Timelines in Order to Become More Like Facebook)
So bury-brigading and click-farming control what people see
Certificate Authority Let's Encrypt Falls to Only 0.4% of the Total in Geminispace
Geminispace does not need to outsource trust
The Munich-Based EPO is Still Using a Platform That Promotes the Far Right and Rehabilitates Nazism
Active Twitter account
Links 29/01/2025: Dismantling Public Health in the US, Air Busan Plane Up in Flames (South Korea's Air Disasters Streak)
Links for the day
Announcements and Administrivia
This week we're going out for two days in a row to celebrate an achievement that's very respectable
Gemini Links 29/01/2025: Japan, GTD, and More
Links for the day
Sir, Yes, Sir. The Life of EPO Patent Examiners.
If working for the EPO makes it harder to sleep at night, take action
How the EPO Pressures Staff Into Minting More Monopolies (Patents), Even Illegal Ones That Harm Europe and Ultimately Dismantle the Rule of Law
insights into the pressure examiners are under
LLM Slop Machines Are Not a Win for "Open Source" and If They Get Cheaper, It's Even Worse
If some program that claims to be "Open Source" pollutes the Web with fake articles (Microsoft SPAM and fake "Linux" articles), whose win is it?
Links 29/01/2025: Data Privacy Day and Growing Tensions in Europe
Links for the day
Nazi Twitter (aka "X") Became a Troll Site That Lets People Buy a Blue Tick While Its Boss Actively Promotes Neonazi Politicians
the intellectual level of people who infest the Web through "Twitter" or "X"
This is Why They're So Afraid of Richard Stallman (He Tells People the Correct History)
Then they post about it to Microsoft's LinkedIn
Richard Stallman Speech in Bengaluru, "Silicon Valley of India"
62 years have passed since his "young nerd" days and he's still at it
Claim: Facebook Deletes Posts of IBM Red Hat Critics
As always, follow the money (advertisers)
Links 29/01/2025: Climate Crisis and "It’s time for the Xbox to fade away" (Microsoft Lose)
Links for the day
Links 29/01/2025: Buying Groceries During a Trade War, Political 'Retro'
Links for the day
More Illegal Patents at the EPO, Legality of Granted European Patents No Longer Matters to the Office
breaking the law for profit
Network Improvements Tomorrow
"Network maintenance" down in London
Sharing is Caring (But Advocating Copyleft Makes You a "Target")
GPLv3 does not close all the loopholes which the "Affero" helps close
Articles About Free Speech at Facebook
'Facebook vs Linux' story is now receiving a lot more media coverage
We Were Right About stallmansupport.org Making an Error by Joining Social Control Media. mastodon.social Suspends stallmansupport.org.
From what we can guess, accounts can be banned by some oversensitive admin or a mob of users ("bury brigades")
"Latest Technology News" in BetaNews Still LLM Slop and SPAM Composed by LLMs (It's Basically a Spamfarm Disguised as a News Site)
Only a fool would visit BetaNews in search of actual news
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, January 28, 2025
IRC logs for Tuesday, January 28, 2025
The EPO's Corruption, If It Remains Untackled, Helps the Far Right and Enemies of European Unity/Solidarity
Do not negotiate with evil
The Web, Including Wikipedia, Gets Filled With Lies About Bill Gates, Added by Bill Gates and His PR Team
Of course Wikipedia is funded by Gates
Facebook Banning Linux Sites (or People Who Link to Linux Sites) is Another Symptom of the Web's Demise
The state of media on the Web is really bad; Social Control Media amplifies the badness, as Facebook serves to show
Gemini Links 29/01/2025: Neovim Telescope and Writing Less
Links for the day