Bonum Certa Men Certa

Links 27/07/2023: Zorin OS 16.3 Released and Beta of Krita 5.2.0



  • GNU/Linux

    • HackadaySelectric Typewriter Goes From Trash Can To Linux Terminal | Hackaday

      If there’s only lesson to be learned from [alnwlsn]’s conversion of an IBM Selectric typewriter into a serial terminal for Linux, it’s that we’ve been hanging around the wrong garbage cans. Because that’s where he found the donor machine for this project, and it wasn’t even the first one he’s come across in the trash. The best we’ve ever done is a nasty old microwave.

      For being a dumpster find, the Selectric II was actually in pretty decent shape. The first couple of minutes of the video after the break show not only the minimal repairs needed to get the typewriter back on its feet, but also a whirlwind tour of the remarkably complex mechanisms that turn keypresses into characters on the page. As it turns out, knowing how the mechanical linkages work is the secret behind converting the Selectric into a teletype, entirely within the original enclosure and with as few modifications to the existing mechanism as possible.

    • Kernel Space

      • LWNA Q&A about the realtime patches

        In a session at the 2023 Real Time Linux Summit, Thomas Gleixner answered questions about the realtime feature of the kernel, its status, and the Real-Time Linux project's plans for the future. The talk was billed as a "Q&A about PREEMPT_RT" with a caveat: "anything except printk() and documentation". As might be guessed, the first two questions were on just those topics, but there were plenty of other questions (and answers) too. The summit was held in conjunction with the inaugural Embedded Open Source Summit in Prague, Czechia at the end of June.

      • LWNDebian looks forward to 2038

        The time_t rollover is still over 14 years away, so solving it might not appear to be an urgent problem. The fact that it does not affect most 64-bit systems may also encourage complacency. But there are affected 32-bit systems on the market now, and some of them are likely to still be operating in 2038; that is especially true of embedded systems, which might prove harder to fix as the date approaches. It would be far better if these systems were prepared for 2038 at deployment time; that means solving the problem as quickly as possible.

        Work has been underway in the kernel for some years, and it is mostly free of year-2038 problems at this point. The GNU C Library (glibc) has also seen a considerable amount of work to allow it to handle both 32-bit and 64-bit time_t values, depending on how a program has been compiled. So the core of a Linux system is ready, but there is a lot more than that to the problem.

      • LWNThe proper time to split struct page

        The page structure sits at the core of the kernel's memory-management subsystem; one such structure exists for every page of installed RAM. This structure is increasingly seen as a problem, though, and phasing it out is one of the many side projects associated with the folio conversion. One step in that direction is currently meeting some pushback from memory-management developers, though, who think that some of these changes are coming too soon.

        The purpose of struct page is to allow the kernel to keep track of the status of each page — how it is being used, its position in a least-recently-used list, how many references to it exist, and more. The information needed varies considerably depending on how a given page is being used; a page of user-space anonymous memory is managed differently from, say, memory used for a kernel-space DMA buffer. Since page structures must be kept as small as possible — there are millions of them in a modern system, so every byte hurts — data must be stored as efficiently as possible. As a result, struct page is declared as a maze of nested unions, allowing the data fields for each usage type to be overlaid.

      • LWNStabilizing per-VMA locking

        The kernel-development process routinely absorbs large changes to fundamental subsystems and still produces stable releases every nine or ten weeks. On occasion, though, the development community's luck runs out. The per-VMA locking work that went into the 6.4 release is a case in point; it looked like a well-tested change that improved page-fault scalability. There turned out to be a few demons hiding in that code, though, that made life difficult for early adopters of the 6.4 kernel.

        The mmap_lock controls access to a process's address space. If a process has a lot of things going on at the same time — a large number of threads, for example — contention for the mmap_lock can become a serious performance problem. Handling page faults, which can involve changing page-table entries or expanding a virtual memory area (VMA), has traditionally required the mmap_lock, meaning that many threads generating page faults concurrently can slow a process down.

        Developers have been working for years to address this problem, often pursuing one form or another of speculative page-fault handling, where the work is done without the protection of the lock. If contention occurred during the handling of a fault, the kernel would drop the work it had done before making it visible and start over. This work never got to the point of being merged, though. Eventually, Suren Baghdasaryan's per-VMA locking work was merged instead. Since a page fault happens within a specific VMA, handling it should really only require serialized access to that one VMA rather than to the entire address space. Per-VMA locking is, thus, a finer-grained version of mmap_lock that allows for more parallelism in the execution of specific tasks.

      • LWNExtensible scheduler class rejected

        The extensible scheduler class enables the creation of CPU schedulers in BPF. After the fourth version of this series was greeted with relative silence, Tejun Heo asked about the status of this work...

      • LWNLinux 6.4.7
        All users of the 6.4 kernel series must upgrade.
        
        

        The updated 6.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-6.4.y and can be browsed at the normal kernel.org git web browser: https://git.kernel.org/?p=linux/kernel/git/stable/linux-s...

        thanks,

        greg k-h
      • LWNLinux 6.1.42
      • LWNLinux 5.15.123
      • LWNLinux 5.10.188
      • LWNLinux 5.4.251
    • Graphics Stack

      • It's FOSSWhat is Compiz in Linux

        Today, we hear of people "distro hopping." Some of us may be guilty of it. It's hard to resist, trying out that new Linux distro with the new features. Even I am not immune, and I have a couple of laptops that I routinely try a new OS (or older if I'm feeling nostalgic) on.

        There was a time though, when distro hopping wasn't common as there were fewer distros in the beginning days of Linux. What many of us early users did instead was to play around with different window managers.

        Compiz was one of those window managers, released in 2006. It is one of the oldest compositing window managers for the X Window System and it was quite advanced for its day. Window managers aren't as popular as they once were, but Compiz is still maintained, still has remarkable performance and a large number of features.

    • Instructionals/Technical

      • LinuxTechiHow to Install GitLab on Ubuntu 22.04 | 20.04
      • TecMintHow to Install Odoo Community Edition in Ubuntu

        Odoo is a full-featured, extensible open-source ERP (Enterprise€ Resource€ Planning) software built using Python and PostgreSQL database for data storage.

        It is a suite of open-source business applications, that consists of multiple apps under various categories such as website, sales, finances, operations, manufacturing, human resource (HR), communication, marketing, and customization tools.

      • TecMint5 Ways to Empty or Delete a Large File Content in Linux

        Occasionally, while dealing with files in a Linux terminal, you may want to clear the content of a file without necessarily opening it using any Linux command line editors. How can this be achieved?

        In this article, we will go through several different ways of emptying file content with the help of some useful commands.

      • TecMintHow to Resolve “Temporary failure in name resolution” Issue

        Sometimes when you try to ping a website, update a system or perform any task that requires an active internet connection, you may get the error message ‘temporary failure in name resolution’ on your terminal.

        For example, when you try to ping a website, you might bump into the error shown...

      • TecMint12 Tcpdump Commands – A Network Sniffer Tool

        In our previous article, we have seen 20 Netstat Commands (netstat now replaced by ss command) to monitor or manage a Linux network.

        This is another ongoing series of packet sniffer tools called tcpdump. Here, we are going to show you how to install tcpdump and then we discuss and cover some useful commands with their practical examples.

      • TecMintHow to Connect Odoo with ONLYOFFICE Docs on Ubuntu

        Odoo is an open-source business platform that comes with a vast set of productivity apps allowing you to deal with what an average company needs — sales, CRM, electronic commerce, project management, human resources, accounting, inventory, marketing, etc.

        The built-in Odoo marketplace makes it possible to create a highly customizable platform that can be easily adapted to any business by installing the required apps. The choice is so extensive that exploring all the available integration options might take a lot of time.

      • MediumYour First Linux Box!

        If you work in IT, you may have been lucky enough to take home some hardware your company was going to donate, or recycle. Whether its a few small form factor workstations or a giant enterprise grade server, they can be a great tool for learning on your own. A similar situation is what started my homelab. My previous boss was going through his garage, and was getting rid of boxes and boxes of old IT equipment. He asked if I wanted to pick through it all before he donated it. I did exactly that, and came out with a bunch of cool stuff. One of those items was an old Lenovo workstation running Windows 7. As you know, Windows 7 is pretty old. Released in 2009, and support ended in 2020. Not something we want on our network , even if its going to be used for internal use. That leaves us 2 options:

      • Make Use OfHow to List Installed Packages on Linux

        Before installing a new package, you need to check if it’s already installed on your system. Additionally, if you are shifting to a new system, having a list of all the installed packages can save you significant time and effort. It can also facilitate you in identifying unwanted packages that you want to remove to free up some space.

        Here's how to list all installed packages on various Linux distributions including Ubuntu, Debian, CentOS, Arch Linux, and openSUSE.

      • ZDNet What is a Linux bash script and how do you create one?

        Bash scripts have been around since the humble beginnings of Linux. But what are they and how do you create your first one? Find the answers to those questions here.

      • Make Use OfHow to Patch Linux Server PwnKit Vulnerability CVE-2021-4034

        The security of Linux servers is of paramount importance in today's digital environment where cyber threats are constantly evolving. One such critical vulnerability requiring immediate action is the PwnKit vulnerability, identified as CVE-2021-4034.

        Let's examine the nature of this vulnerability, its potential impact on Linux servers, and most importantly, ways to effectively patch and secure your Linux server against this threat.

      • Make Use OfHow to Fix the "hash sum mismatch" Error When Updating Kali Linux

        It’s important to keep your system packages up-to-date because you can quickly upgrade your PC’s software and enjoy all the latest features and fixes. If you’ve encountered an error like “hash sum mismatch” on Linux, this routine task can quickly become frustrating.

    • Games

    • Desktop Environments/WMs

      • K Desktop Environment/KDE SC/Qt

        • LinuxiacPlasma 6 Development Update: Unveiling Features Removals
          The KDE development team is gearing up for an exciting milestone as they prepare to unveil the highly anticipated Plasma 6 desktop environment. As the successor to the widely acclaimed Plasma 5, the latest iteration promises to bring a host of new enhancements and optimizations to the KDE ecosystem.

          However, with progress often comes change, and to refine the user experience and streamline performance, KDE developers have announced their decision to remove certain features from Plasma 6.

        • Nate GrahamWhat we plan to remove in Plasma 6

          Icons on the desktop!

          The minimize button!

          Visible Panels and docks!

          Just kidding, don’t have a heart attack. Well actually there are some things… just not those! The full list can be found at https://community.kde.org/Plasma/Plasma_6#Removals, and it’s public; we’re not hiding anything! Today I wanted today provide a bit of context and explain the why, since it may not be obvious how it makes sense to remove things. So let’s go through the list...

        • KritaFirst Beta for Krita 5.2.0 Released

          Krita 5.2.0 is a major new release, and the first of the Krita 5.2 series of releases. Especially internally, there have been huge changes and improvements. While there are a lot of important user-visible changes that will make artists’ workflow smoother, most work has been inside Krita, preparing Krita for the future.

          The release notes will give you all the details, but here are some highlights...

      • GNOME Desktop/GTK

        • DebugPointDiscover What's Hot in GNOME 45: Feature Highlights

          GNOME is a free and open-source desktop environment for Linux and Unix-like operating systems. It is one of the most popular desktop environments in the world and is used by millions of people via mainstream Linux distributions such as Ubuntu and Fedora alike.

          The GNOME 45 release is expected to be a major update with many new features and improvements.

          Let's take a look at the new improvements.

        • GNOMEGNOME: Sysprof 45

          Unfortunately I couldn’t be at GUADEC this year, but that wont stop me from demoing new things!

          I’ve been doing a lot of work on Sysprof now that we have semi-reliable frame unwinding on Fedora, Silverblue and GNOME OS. When I have tolling that works on the OS it makes it a lot easier to build profilers and make them useful.

          Additionally, we’re at a good point in GTK 4 where you can do really powerful things if you design your data models correctly. So this cycle I’ve spent time redesigning how we record and process our captured data.

  • Distributions and Operating Systems

    • New Releases

      • IPFire Official BlogIPFire 2.27 - Core Update 177 is available for testing

        The next update for IPFire is available for testing! It contains more hardening features for modern processors and a large number of security fixes in third-party packages.

        This update comes with extended hardening for the kernel by using Indirect Branch Tracking wherever possible. This will prevent hackers to hijack functions calls and jump into injected code. This feature is currently only supported on Intel processors.

        In the near future, we will extend this feature to the user-space and more processor types.

      • 9to5LinuxZorin OS 16.3 Released with New Upgrade Utility, Zorin Connect Improvements

        Zorin OS 16.3 is here nine months after Zorin OS 16.2 and includes all the latest updates from the upstream Ubuntu repositories to provide those who want to deploy the latest Zorin OS 16 series on new computers with an updated live/installation media with top-notch hardware support and the most recent security patches.

        Apart from shipping with all the latest updates from the Ubuntu 22.04 LTS repositories, as well as an updated software selection that includes the latest and greatest LibreOffice 7.5 open-source office suite series, the Zorin OS 16.3 release comes with a cool new feature out of the box, Zorin OS Upgrader.

    • Fedora Family / IBM

      • University of TorontoThere's more than one reason that people used (or use) CentOS

        The news of the time interval is that Red Hat has stopped making Red Hat Enterprise Linux source code generally available, although just as with the switch to 'CentOS Stream' from CentOS their article doesn't put it that way. This created difficulties for at least two CentOS replacement distributions, forcing AlmaLinux to change what they are. I don't have much to say on this specific topic, but it has sparked a series of exchanges about, for example, the history of RHEL rebuilds (via). As it happens, I have some views on why people would want to use a free 'clone' (rebuild) of RHEL, as CentOS was before it became CentOS Stream, partly based on personal experience.

        Here are some major reasons people could want or need CentOS, at least back in the era of CentOS, before CentOS Stream became your only option from RHEL 8 onward: [...]

      • SlashdotRHEL Response Discussed by SFC Conference's Panel - Including a New Enterprise Linux Standard

        "Red Hat themselves did not reply to our repeated requests to join us on this panel... SUSE was also invited but let us know they were unable to send someone on short notice to Portland for the panel."

        One interesting audience question for the panel came from Karsten Wade, a one-time Red Hat senior community architect who left Red Hat in April after 21 years, but said he was "responsible for bringing the CentOS team onboard to Red Hat." Wade argued that CentOS "was always doing a clean rebuild from source RPMS of their own..." So "isn't all of this thunder doing Red Hat's job for them, of trying to get everyone to say, 'This thing is not the equivalent to RHEL.'"

        In response Jeremy Alison made a good point. "None of us here are the arbiters of whether it's good enough of a rebuild of Red Hat Linux. The customers are the arbiters." But this led to an audience member asking a very forward-looking question: what are the chances the community could adopt a new (and open) enterprise Linux standard that distributions could follow. AlmaLinux's Vasquez replied, "Chances are real high... I think everyone sees that as the obvious answer. I think that's the obvious next step. I'll leave it at that." And Oracle's Wright added "to the extent that the market asks us to standardize? We're all responsive."

    • Debian Family

      • Sparky GNU/LinuxSparky 7.0.1

        There is an update of Sparky ISO images of the stable line 7.0.1 out there.

        This is a minor update, it mainly fixed an issue of the live config, which did not let you launch password reqiured application without password in live session, such as: Calamares, APTus, GParted, Gufw, etc.

        Now, the apps don’t need a password to be launched in live session (excluding MinimalGUI i686).

        As usually, all packages have been upgraded from Debian and Sparky stable repos, as of June 26, 2023, so all updates of Debian 12.1 are included.

        No reinstallation is required if you have Sparky 7 installed, simply keep Sparky up to date. The new iso images only fix the live session issue.

    • Devices/Embedded

      • Beta NewsStarTech.com launches 4-Slot PCIe Expansion Chassis for Windows, Linux, and macOS [Ed: Classic marketing webspam from Brian Fagioli, pretending it's something about "Linux". It's agnostic. It's SPAM.]
      • Linux GizmosSolidRun Unveils 1st Fanless AMD Phoenix Zen 4 PC – Bedrock R7000 Edge AI

        SolidRun revealed today two fanless PCs built around the 8-core AMD Ryzen 7040 Series CPUs along with up to three Hailo-8 AI accelerators to provide 78 TOPS AI performance. The Bedrock R7000 Edge AI has been designed to operate in diverse commercial and industrial applications including robotics, agriculture, transportation, etc. € 

      • HackadayRunning A Modern Graphics Card In A 33 MHz PCI Slot

        If you ever looked at a PCI to PCIe x16 adapter and wondered what’d happen if you were to stick a modern PCIe GPU in it, the answer apparently is ‘it works’ according to an attempt by [Circuit Rewind]. As long as you accept needing to supply external power with even a low-end GT 1030 card – as the PCI slot cannot provide enough power – and being limited to a single PCIe lane. This latter point isn’t so much of an issue as a single PCIe lane offers more bandwidth than the (shared) PCI bus anyway.

    • Open Hardware/Modding

      • STHDebian Adds RISC-V as an Official Architecture

        A really great one came out on the Debian mailing list this week. RISC-V is becoming a first-class citizen on Debian. RISC-V has now been accepted as an official architecture. This is huge news for the RISC-V community.

      • ArduinoA snore-no-more device designed to help those with sleep apnea

        Although many boards have microphones and can run sound recognition machine learning models, the Nicla Voice contains a Syntiant NDP120 Neural Decision Processor that is specifically designed to accelerate deep learning workloads while also decreasing the amount of power needed to do so. Apart from the board, Kumar added an Adafruit DRV2605L haptic motor driver and haptic motor as a way to wake up the user without disturbing others nearby.

      • Frank DelporteReading the temperature, humidity, and pressure from a BME280 Sensor with Java, Pi4J, I2C, SPI, and JBang

        To make it as easy as possible to get started with Java on the Raspberry Pi to interact with electronic components, I started a new section on the Pi4J website with JBang examples.

        In this tutorial, I want to show you how you can read the temperature, humidity, and pressure from a BME280 Sensor.

      • Gilles ChehadeBuilding my own guitar, part 4

        Came back from vacation, started working on the neck but realised I really needed more tools. Luckily, I could get some that weren’t too expensive.

      • HackadayA Nifty 3D Printed RC Car

        Once upon a time, a remote controlled (RC) car was something you’d buy at Radio Shack or your local hobby store. These days, you can print your own, complete with suspension, right at home, as this project from [Logan57] demonstrates.

    • Mobile Systems/Mobile Applications

  • Free, Libre, and Open Source Software

    • Web Browsers/Web Servers

      • [Old] マリウスGemini is Solutionism at its Worst

        While I don’t care too much about ideas and projects that I believe to be dead ends or maybe even doomed to fail eventually, a recent interaction on Superhighway84 got me to write down a few thoughts on why I believe Project Gemini is a really bad idea.

      • [Old] The Small Web Browser, an inclusive proposal

        Therefore, in an attempt to make an inclusive solution (rather than exclusive, as Marius thought of Gemini), I suggest a new browser, namely the Small Web Browser, with the following design requirements: [...]

      • Daniel Stenbergcurl 8.2.1

        Welcome. Due to some annoying regressions in the previous release we think we owned it to everyone to do a quick patch follow-up.

      • APNICHSTS preload adoption and challenges

        HTTP Strict Transport Security (HSTS) is a way to signal to a web client that valid HTTPS certificates must be used when connecting to a domain. There are two main benefits to HSTS.

        First, it prevents a user from connecting over an unencrypted HTTP connection. Unencrypted HTTP leaks data to the network and is vulnerable to manipulation in man-in-the-middle attacks.

        Second, it prevents a user from connecting if the server presents an untrusted TLS certificate. Users aren’t great at deciding if a warning message about an untrusted TLS certificate is a security concern or just a misconfiguration. They don’t have the knowledge or tools to decide, and they may inadvertently allow an attack to proceed by clicking through the warning.

      • APNICUpdate QUIC timers once per RTT

        In a previous post, I observed that the classic way to compute round-trip time (RTT) statistics and retransmission timers does not work well. When acknowledgements are too frequent, the correlation between successive RTT measurements causes the smoothed RTT estimate to track closely the last values, and the RTT variations to be widely underestimated.

        This imprecision impacts both the effectiveness of loss recovery and the implementation of delay-based congestion algorithms like BBR. I think this can be fixed by updating the variables just ‘once per RTT’. In this post, I first describe the once per RTT update algorithm, then report on promising measurements using the simulations in the Picoquic test suite.

      • Mozilla

        • TorNew Alpha Release: Tor Browser 13.0a1 (Windows, macOS, Linux)

          Tor Browser 13.0a1 is now available from the Tor Browser download page and also from our distribution directory.

          This release updates Firefox to 115.2.0esr, including bug fixes, stability improvements and important security updates. This is a Desktop platform only release (Windows, macOS, and Linux), but Android should be available in the coming weeks.

    • Education

      • [Repeat] KlaraOur 2023 Recommended Summer Reads 2023: FreeBSD and Linux

        We previously discussed in our webinar The Case for OS Diversity and Independence the great deal of value, security, and flexibility to be gained from using a diversity of operating systems. To help make implementation such diversity possible, Klara has produced a set of articles that discuss the differences between Linux and FreeBSD across various subsystems. These articles aim to act as a sort of Rosetta Stone, helping experienced administrators and developers turn their skills with one of the operating systems into knowledge of the other. With summer upon us, now is a great time to read through this series and learn how you can take maximum advantage of OS diversity.

      • Jakub SteinerGUADEC

        GUADEC 2023 is underway in Riga. It’s great to see people face to face after a long time. Kicked off the first day with an ADHD trip of a talk. Rather than putting links in my slides, where nobody has the chance of actually follow, I’ve assembled them here. Enjoy!

    • Openness/Sharing/Collaboration

      • Open Access/Content

        • NetzpolitikShutdowns don’t stop during the weekends

          The Internet does not forget? The opposite is the case. Huge mountains of data are lost on the internet every day. That’s why the Archive Team scours the vastness of the WWW and rescues data from extinction – around the clock and on a voluntary basis.

    • Programming/Development

      • RlangReproducible data science with Nix

        This is the first of a (hopefully) series of posts about Nix. Disclaimer: I’m a
        super beginner with Nix. So this series of blog posts is more akin to notes that
        I’m taking while learning than a super detailed tutorial. So if you’re a Nix

      • Alex EwerlöfFallback

        Fallback is a risk mitigation strategy for reducing the negative impact of failures in a cost-effective manner.

        Where failover uses the same type of solution to achieve the same outcome, fallback uses a different type of solution to maintain the essential system functionality.

      • Chris HannahWhat Sort of Programmer Am I Now?

        Hopefully, at the end of this year of experimentation, I’ll be a bit closer to figuring out what I want to do professionally. Do I want to really focus on something new like Python or Go? Do I want to lean into Java more? Or possibly do I even try and stay working on as many technologies as I can?

      • Haki BenitaWhen Good Correlation is Not Enough: How outliers can trick the optimizer into the wrong plan

        Choosing to use a block range index (BRIN) to query a field with high correlation is a no-brainer for the optimizer. The small size of the index and the field's correlation makes BRIN an ideal choice. However, a recent event taught us that correlation can be misleading. Under some easily reproducible circumstances, a BRIN index can result in significantly slower execution even when the indexed field has very high correlation.

      • Rust

        • LWNRust for embedded

          The advantages of the Rust programming language are generally well-known; memory safety is a feature that has attracted a lot of developer attention over the last few years. At the inaugural Embedded Open Source Summit (EOSS), which is an umbrella event for numerous embedded-related conferences, Martin Mosler presented on using Rust for an embedded project. In the talk, he showed how easy it is to get up and running with a Rust-based application on a RISC-V-based development board.

          Mosler works for Zühlke Engineering in Switzerland; both he and his company see the potential of Rust for new development, particularly for embedded projects. That is why the company supports his community work on Rust, including holding Rust meet-ups and traveling to Prague to attend EOSS and give the talk. He is building up Rust knowledge within the company so that it is available for new projects as they arise.



Recent Techrights' Posts

IBM is "Making an Exit". Only the Executives Will Get Rich.
failure disguised as success
2026 is the Year of Blockchains, Says IBM's CEO a Decade Ago?
"falling upwards"
Most Coders Used to be Women, Not Men (and Men Who Dropped Out of College Now Plunder Everything They Can)
"Ethics For Hackers"
European Patent Office (EPO) Series: Down But Not Out – Costa's Comeback
he managed to secure a top-level EU position in June 2024
 
Links 05/06/2026: Lawyers in Trouble for Citing Cases That Don't Exist (Slop Too Bad to Justify Costs; Even It It Did Work, It Would Still be Far Too Expensive)
Links for the day
Gemini Links 05/06/2026: Bears in the Streets, WWII Revisionism, and Westworld
Links for the day
Microsoft's LinkedIn Called "Dying Platform" by One Who Worked There
The co-founder of LinkedIn has just stepped down too
GAFAM (Google, Amazon, Facebook, Apple, Microsoft) Layoffs Are Due to Surging Debt, or About 120 Billion Dollars Borrowed in One Year Alone
It's well above 150 billion dollars if one adds Oracle
After One Jeffrey Epstein Associate 'Leaves' Microsoft's Board Another Jeffrey Epstein Associate Steps Down, Workers Concerned About the Mass Layoffs
How many more loans can Microsoft receive? Those loans are becoming increasingly risky.
IBM Exploits Overambitious, Hungry Young Men to Help the "Great Quantum Hype Campaign" (Pumping the Stock Based on Deliberate Misinformation or Outright Disinformation)
The boot-licking campaign is live...
What Will Likely Happen When the Slop Bubble Pops (and When It'll be Widely Accepted That It Popped)
all the "most successful" slop companies are so deep in debt
The Register MS is Part of the Problem, It's Publishing "AI" SPAM Because it's Paid by Chinese Military-Connected Firms
Given that The Register MS is run by a Microsofter (since last summer), destruction seems inevitable
IBM's CEO Does Not Use GNU/Linux, So Why Did He Suggest Buying Red Hat Only to Lay Off Its Workers, Market Slop Instead of Linux, and Sack UNIX Professionals?
Shortly after IBM had bought Red Hat and there were mass layoffs we pointed out that Red Hat's CEO was not using GNU/Linux
If You're Not Focusing on Software Freedom, All You'll Get is Slopware and Buzzwords
If you're not focusing on attaining Software Freedom (and remember "Linux" is just a brand), then you're losing sight of the goals that actually matter
Red Hat/IBM: Microsoft is Our Partner of the Year
Red Hat is a really bad gravy
Gemini Links 05/06/2026: Enshittification of Institutes for Project Management, Codebases Contaminated With Slop, Personal Stories
Links for the day
Communicating With Freedom - Part II - Quibble Breathing New Life Into LibreJS
Notice how work on one thing led to thousands of lines of code added to a mostly dormant (but nevertheless important) project
Slop Has no ROI, an Economy Built on False Assumptions of Slop is Doomed
we're all going to suffer from this Ponzi scheme
Links 05/06/2026: More GAFAM Layoffs, Google Faces Regulatory Crackdown in UK Over Plagiarism in "AI" Clothing
Links for the day
Rumour That Layoffs at Microsoft Will Kick Off on July 1st, 2026 (Impacting 10,000 or More Workers)
this is what the rumour mill or the word through the grapevine is
Mission:Libre, Which Teaches Young People Free Software Ideals, Needs Financial Backing
plea for assistance with Mission:Libre
The Slop Ponzi Scheme is a Problem and Threat to All of Us (Even Those Who Don't Invest in or Use Slop at All)
This problem is systemic, not contained
"Blind Justice" Examines the Solicitors Regulation Authority (SRA) Turning a Blind Eye to Abuse by British Solicitors
We have some jaw-dropping examples of how the SRA does not do actual regulation - to the point where its staff does not actual work and does not look into any evidence at all!
7 Days From Now the FSF's Founder Gives a Talk in Bern, the FSF Has Just Advertised This
Meanwhile the FSF (or GNU) processes and uploads many recent talks by RMS
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, June 04, 2026
IRC logs for Thursday, June 04, 2026
Links 04/06/2026: Self-hosting Remotely and GemText Emphasis
Links for the day
Links 04/06/2026: Ukraine’s Daily Moment of Silence and Uber Lays off 23% of HR
Links for the day
SLAPP Censorship - Part 98 Out of 200: Microsoft Threatening Real Security Researcher With Criminal Investigation for Talking About Microsoft's Bug Doors/Back Doors
The crime should be the back doors (deliberate attack on every user's data protection), not talking about those back doors
Microsoft Would Get Away Even With Pedophilia
"Microsoft should never be above the law"
Journalists Should be Ashamed for Parroting False Claims From IBM Management About "Quantum Computing", Say IBM Insiders Who Work on "Quantum Computing"
IBM is a buzzwords vendor. International Buzzwords Machines.
Free Software is Nourishment to Software Users, Unlike Proprietary Software
Quit treating "mere users" of software "like animals"
The "Peanut Gallery" of GAFAM Has Infiltrated Free Software Projects or Disrupts Free Software Communities
They contribute nearly nothing and do substantial damage; they're freeloaders who attack the most productive members of projects
Coding is Not a Quantity Game (It Never Was!)
"less is more"
Exposing Corruption Using a Highly Resilient Platform
Growing levels of trust, based on our track record, help us attract whistleblowers
Mass Layoffs Expected at Microsoft in July 2026
They're preparing more "lists" of people
Reflection on EPO Leadership That Harbours Cocaine, IBM Leadership That Pumps-and-Dumps the Shares, and More
ManCity replaced Manuel Pellegrini with a more famous manager it didn't envision winning 20 titles in 10 years (it could only hope) [...] Team-building is something that "Pep" seemed to be good at, as was Jürgen Klopp
Pump and Dump by IBM Insider Traders: Nickle LaMoreaux, Gary Cohn, James Kavanaugh, Arvind Krishna, Robert Thomas, and Others
the shares are already collapsing
FOMO (Fear Of Missing Out) Has Weakened If Not Ruined What's Left of Big Media
Many things that have existed for decades are now being rebranded as "AI"
SLAPP Censorship - Part 97 Out of 200: Garrett in Hiding (From the Simple Observable Fact He's Closely Connected to the Microsofter Who Strangles Women, Tells Women to Kill Themselves, and Worse)
They use one another; they are coordinating this via the SLAPP industry in another continent
Links 04/06/2026: Microsoft Threatening Security Researcher for Naming Back Doors in BitLocker, "Demand is Booming for" Old Tech
Links for the day
Gemini Links 04/06/2026: "Word Vomit", Slop", and Moving to Gopher/Gemini
Links for the day
Rust Outsources its Financing (or Financial Control) to Microsoft
How long before the third "E"?
"Format Sovereignty" Can Only be Accomplished With LaTeX or OpenDocument Format (ODF) or Vendor-Neutral Standards for Editable Documents
Microsoft is, in effect, above the law
IBM's Shares Fell Nearly 13% in One Day (Including After Hours)
its main product is false promises
The Cyber Show on the Importance of Software Freedom and Why GNU/Linux Could Not be Stopped
an excellent article
Drew DeVault Can Still Redeem His Reputation. Revisiting His Attacks (and Attack Site) on Richard Stallman Might be a Good Start.
DeVault has openly apologised (this past spring)
The Register MS is Publishing Paid SPAM; Some of It is Designed to Prop Up the "AI" Pyramid Scheme
The Register MS participates in scams
European Patent Office (EPO) Series: "Operation Influencer"
Costa's political career was far from finished
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Wednesday, June 03, 2026
IRC logs for Wednesday, June 03, 2026
GNU/Linux Usage Rising Among Gamers, But "Hardware Survey Data Not Available."
Not anymore, not for now anyway
Jumping Up and Down on the Shoulders of Giants, Never Talking About What Bill Gates Did
We're back to 2019
Despite LLM Slop or Chatbots, Our Traffic Has Doubled Since We Moved Everything to the UK (in 2023)
The demise of news sites was not what we thought it would be
Software Developers Attacked by Plagiarism Engines Because These Developers Can Teach People How to Exercise Control, Not Outsource to Monopolies of Slop and Back Doors
"Universities should be telling industry what is to be done next, not the other way about. Present education policy has the tail wagging the dog."
Quantum Quantum Quantum Quantum (Pump, Then Dump)
What has IBM become?
Communicating With Freedom - Part I - Developing “Quibble” and Improving GNU LibreJS in the Process
In the next part we shall examine where things currently stand
Quantum Computers Are "All the Rage" (35 Years Ago, What IBM Promises This Year is What People Promised When the CEO Was in His 20s)
"Quantum" hype is high on the agenda
How IBM Removes 15% of Its Staff Without Even Checking Performance of Staff (or Calling That "Layoffs")
Performance Improvement Plan (PIP) as veiled RAs
Links 03/06/2026: Mobile Systems, Openwashing, and New Antenna
Links for the day
Canonical as Reseller of Back Doors in "Ubuntu" Clothing
Microsoft is the antithesis of security and autonomy
Romania Used to be Windows Stronghold, But That's No Longer the Case
Windows was once upon a time so ubiquitous that institutions didn't bother supporting anything except it
KDE Has Long Used Dragons, and Dragons Come From Hatched Eggs
That Microsoft Lunduke tries to paint this as some "trans agenda" thing says a lot about Microsoft Lunduke and his COVID-19-damaged brain
IBM Announces 5 Billion Dollars "Invested" in "AI", in "Security", and 10 Billion Dollars for "Quantum", But IBM Does Not Have This Kind of Money (It's Fake News to Manipulate the Share Price)
IBM has fast-growing debt and liabilities, it does not intend to invest this kind of money, it's a smokescreen and false promises timed to alleviate the sagging share price (52-week low)
When Science and Religion Are on the Same Side, United Against Slop Pushers
The "Mathematics Pope" (sometimes known as "Pope Pi") brought together science and religion, united against technofascists who are mostly college drop-outs who abhor women
Links 03/06/2026: "In Turkey, Criticizing a Corporation Can Land You in Jail" and "Court Bans X Account of Turkey's Oldest Newspaper"
Links for the day
Web Censorship Benefits the Corrupt and the Criminal
More so when corrupt politicians are in charge
Have a "Lifetime" Without Microsoft
The online rage over this is still ongoing
Internet Archive’s Wayback Machine Undoing Censorship of Corporate Wrongdoing
That won't go away anymore
"For Entertainment Purposes Only" But Everyone Must Adopt It for Work and Governance, Say Anti-Scientific Technocrats
"The present mentality around "AI" is like driving to the gym to use a treadmill - it's walking for people who hate fresh air and beautiful changing scenery."
Gemini Links 03/06/2026: Ian Murdock's Ex-wife Footprint in Debian and Alhena 5.6.1 Released
Links for the day
Irish Company statCounter Recognises It Overestimated Microsoft Windows' Market Share in Ireland
it seems like the Irish people are gradually moving away from Windows
Corporate Media Participates in the Lie That Mass Layoffs at GitLab and Loss of Geographic Footprint in More Than a Third of Countries is "AI" and Thus "Success Story"
There's no way to spin this as positive news
Slop Prompting is Not a Coding Skill and Slop Deserves Shunning
Red Hat is hypocritically shunning the very same thing it keeps promoting
IBM colleagues "handed out a PIP and then right after the end date they are gone"
Some go into early 'retirement' to save face
SLAPP Censorship - Part 96 Out of 200: When You Receive Death Threats From Anonymous Sockpuppets/Burner Accounts Connected to People Who Strangle Women and Tell Women to Kill Themselves
Women are not objects and my wife ought not be mentioned in "threats to kill" (how cops have described this)
European Patent Office (EPO) Series: A Tale of Two Antónios - Introducing the Other António
António Costa
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Tuesday, June 02, 2026
IRC logs for Tuesday, June 02, 2026