Bonum Certa Men Certa

Links 15/08/2022: EasyOS 4.3.4, Alternatives to Google Finance



  • GNU/Linux

    • Videos/Shows

      • David RevoyTutorial: an Illustration from A to Z with Krita

        And here is the long 1h22min Krita video tutorial fully commented as I promised on the last blog post with the artwork.

        It's a real full lenght course suited to beginners, but also advanced digital painters. It starts from scratch with default set of brushes, preferences and break-down all the process. The repetitive parts while painting were all accelerated and can be skipped easily (a timer in overlay appears on display) Check the Timeline codes under to navigate in the video.

        Subtitle are unfortunately not available, sorry for my (heavy) French accent and poor vocabulary. It was too long to write them this time. I hope the auto generation will work and you'll have not a lot of trouble to understand me mumbling sometime.

      • VideoThe Linux Phone - Invidious

        It's been a couple years since the first Linux phone came out and I bought a Pinephone Pro in Jan of this year to follow back up on it.

      • VideoHaskell, GTK and CSS Theming (Give Your Apps Style!) - Invidious

        In a two previous videos, I created a very simple GTK app using Haskell. In the first video, I created the app (which I named "byebye") in 30 minutes and I wrote it in such a way as to be as "gentle" an introduction to Haskell and GTK as I could be. In a second video, I refactored the code so it would be less lines and cleaner code. In this third video, I adding some new functionality to "byebye", namely the ability to read a config file and the ability to use CSS for theming.

      • VideoShould you only buy Linux-native hardware? Ft. Jay LaCroix and Ryan DasGeek - Invidious

        What do Ryan DasGeek from @TuxDigital Jay from @Learn Linux TV have to say about buying hardware? "Buy native Linux hardware from vendors that actually ship Linux."

      • Linux User Space: Episode 3:04: The Endeavour Endeavor

        0:00 Cold Open 1:44 Is EndeavourOS Arch? 11:06 The Intro to the History of EndeavourOS 13:00 2019 27:36 2020 34:09 2021 42:21 2022 50:31 Our Thoughts on EndeavourOS 1:10:52 Community Focus: Linux Saloon 1:14:35 App Focus: trash-cli 1:20:54 Next Time 1:24:16 Stinger

    • Kernel Space

      • ZDNetLinux 6.0 arrives with performance improvements and more Rust coming [Ed: The slant from Microsoft's booster Liam Tung.]

        Linux creator Linus Torvalds has announced the first release candidate for the Linux kernel version 6.0, but he says the major number change doesn't signify anything especially different about this release.

        While there is nothing fundamentally different about this release compared with 5.19, Torvalds noted that there were over 13,500 non-merge commits and over 800 merged commits, meaning "6.0 looks to be another fairly sizable release." According to Torvalds, most of the updates are improvements to the GPU, networking and sound.

        Torvalds stuck to his word after releasing Linux kernel 5.19 last month, when he flagged he would likely call the next release 6.0 because he's "starting to worry about getting confused by big numbers again".

    • Applications

      • Linux LinksBest Free and Open Source Alternatives to Google Finance

        Google Finance is a website focusing on business news and financial information. It provides real-time market quotes, international exchanges, financial news, and analytics.

        We recommend the best free and open source alternatives to Google Finance.

    • Instructionals/Technical

      • OSTechNixCheck Disk Space Usage In Linux Using Ncdu - OSTechNix

        This guide explains what is Ncdu, how to install Ncdu in various Linux distributions and how to use Ncdu to check disk space usage in Linux and Unix operating systems with examples.

      • DebugPointHow to Install and Use GNOME Nightly Apps

        These GNOME apps are the development version of the native GNOME applications. They are usually unstable since its being developed and features are added continuously.

        That means these apps you get to test and report any issues to the developers. Also, you get to experience the new features before it arrives in stable releases.

      • ID RootHow To Install Darktable on Linux Mint 21 - idroot

        In this tutorial, we will show you how to install Darktable on Linux Mint 21. For those of you who didn’t know, Darktable is an open source photography workflow application and raw developer. It manages your digital negatives in a database, lets you view them through a zoomable lighttable, and enables you to develop raw images and enhance them. In addition to basic RAW conversion, Darktable is equipped with various tools for basic and advanced image editing.

        This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of a Darktable on Linux Mint 21 (Vanessa).

      • HowTo ForgeHow to Setup SaltStack Master and Minion on Rocky Linux

        Salt or Saltstack is an open-source IT automation framework that allows administrators to execute commands remotely to multiple machines directly. Salt is mainly written in Python and designed with Master and Minion architecture. SaltStack master is the central controller of Salt configuration management, and Minions are servers managed by SaltStack Master, or you named minions as target servers.

        SaltStack master is running on Linux OS by default, but minions can be any operating system. Saltstack is revolutionary configuration management for automation deployment, remote task execution, and infrastructure as code. SaltStack also can be used to provision multiple infrastructure servers, this includes physical and virtual servers, and also the cloud.

        By following this guide, you will install SaltStack Master and Minion on Rocky Linux servers. Also, you will learn how to use Salt for running Arbitrary commands from SaltStack Master against Salt Minions. And at the end, you will also learn how to create a Salt state for installing the basic LEMP Stack (Linux, Nginx, MariaDB, and PHP-FPM).

      • HowTo ForgeLinux Gunzip Command Explained with Examples

        We have already discussed the gzip command in Linux. For starters, the tool is used to compress or expand files. To uncompress, the command offers a command line option -d. However, there's an entirely different tool that you can use for uncompressing or expanding archives created by gzip. The tool in question is gunzip. In this article, we will discuss the gunzip command using some easy to understand examples.

  • Distributions and Operating Systems

  • Free, Libre, and Open Source Software

    • Programming/Development

      • Status update, August 2022 €· emersion

        This month I’ve been pondering offline-first apps. The online aspect of modern apps is an important feature for many use-cases: it enables collaboration between multiple people and seamless transition between devices (e.g. I often switch between my personal workstation, my laptop, and my phone). However many modern apps come with a cost: often times they only work with a fixed proprietary server, and only work online. I think that for many use-cases, allowing users to pick their own open-source server instance and designing offline-friendly apps is a good compromise between freedom and ease-of-use/simplicity. Not to say that peer-to-peer or fully distributed apps are always a bad choice, but they come at a significantly higher complexity cost, which makes them more annoying to both build and use.

        The main hurdle when writing an offline-first app is synchronization. All devices must have a local copy of the database for offline use, and they need to push changes to the server when the device comes online. Of course, it’s perfectly possible that changes were made on multiple devices while offline, so some kind of conflict resolution is necessary. Instead of presenting a “Oops, we’ve got a conflict, which version would you like to keep?” dialog to the user, it’d be much nicer to just Do The Right Thing™. CRDTs are a solution to that problem. They look a bit scary at first because of all of the obscure naming (PN-Counter? LWW-Element-Set? anyone?) and intimidating theory in papers. However I like to think of CRDTs as “use this one easy trick to make synchronization work well”, and not some kind of complicated abstract machinery. In other words, by following some simple rules, it’s not too difficult to write well-behaved synchronization logic.

        So, long story short, I’ve been experimenting with CRDTs this month. To get some hands-on experience, I’ve started working on a small hacky group expense tracking app, seda. I’ve got the idea for this NPotM while realizing that there’s no existing good open-source user-friendly collaborative offline-capable (!) alternative yet. That said, it’s just a toy for now, nothing serious yet. If you want to play with it, you can have a look at the demo (feel free to toggle offline mode in the dev tools, then make some changes, then go online). There’s still a lot to be done: in particular, things gets a bit hairy when one device deletes a participant and another creates a transaction with that user at the same time. I plan to write some docs and maybe a blog post about my findings.

      • Ruben SchadeRubenerd: Too hard? Take more steps

        As my favourite software lecturer used to say, it’s better to be clear than clever. He was talking about code reviews, but it easily applies to tasks you assign yourself. We all think we’re clever, but “do X” in your task manager feels far less intimidating if it has “do A, B, and C” subtasks underneath.

      • Matt RickardThe Unreasonable Effectiveness of Makefiles

        Few tools walk the right line between declarative and imperative like make.

      • Perl / Raku

      • Python

        • Ubuntu PitC++ vs Python: Get The Right Tool in 2022

          While C++ is the pioneer of object-oriented languages, Python is one of the newer languages that has hit peak popularity due to its easy-to-understand syntax, among a ton of other benefits. That said, it is valid to draw a comparison between C++ vs Python as they are both high-level programming languages with similar uses.

          Although one can use both languages to develop real-time dynamic applications, C++ and Python can be seen to go on different paths as most prefer C++ for general applications, and Python users often get a kick out of developing web applications. If this piques your interest or if you are trying to choose which to learn, stick on because that’s why we are here today!

    • Standards/Consortia

      • 3 Factors Why WebRTC Will Succeed in 2022

        Your clients are global, and they expect to have access to the skills of your staff globally as well. Even when workers are collaborating remotely, there must be no interruptions. Even though your organization purchased licenses for everyone to use a video conferencing program, nobody feels as if they are cooperating properly. How can businesses engage remote workers and consumers who want experiences that are given “now here, right now” and without any delays or interruptions?

        [...]

        If you’re not aware of WebRTC, it allows for native real-time media connections between devices and browsers, including audio, video, and data transmission. As a result, users may instantaneously interact inside a web browser or app without the need for complicated plug-ins or other applications.

  • Leftovers

    • Hardware

      • Ruben SchadeRubenerd: Q&A about my NW-A55 Walkman

        My recent Walkman post generated a ton of email and comments; thanks to most of you for sharing your ideas and questions!

        I say most, because it seemed to attract more trolls than anything I’ve written in a long time. It’s disheartening to have something you enjoyed (and tried to share with people) immediately shat on by those who don’t even bother to read it. At times it makes me wonder why I even blog in the first place; but then I remember all the rest of you :).

      • CNX SoftwareThin Mini-ITX networking board features six 2.5GbE ports, Celeron J6412 Elkhart Lake SoC - CNX Software

        Jetway says the thin mini-ITX networking board support Windows 10, Windows 11, and Linux, and recommends models with the 32GB eMMC flash to boot Windows 10 for some reasons… Looking into the datasheet, we find a longer list of operating systems, even adding some BSD distributions with Win10 64-bit, Win 10 IoT Enterprise 64-bit LTSC 2019, CentOS (Version 9), Debian (Version 11.3), Fedora LXDE, Workstation, or Server (Version 36.1.5), OpenSUSE (Version 15.4), Ubuntu 22.04 Desktop/Server, pfSense (Version 2.6.0), TrueNAS (FreeNAS) (Version 13.0), RedHat Enterprise (Version 9.0), and OPNSense (Version 22.1.2).

      • John Goerzen John Goerzen: The Joy of Easy Personal Radio: FRS, GMRS, and Motorola DLR/DTR

        From my own experience, as a person and a family that enjoys visiting wilderness areas, having radio communication is great. I have also heard from others that they’re also very useful on cruise ships (I’ve never been on one so I can’t attest to that).

        There is also a sheer satisfaction in not needing anybody else’s infrastructure, not paying any sort of monthly fee, and setting up the radios ourselves.

    • Health/Nutrition/Agriculture

      • UW study strengthens evidence of link between air pollution and child brain development | UW News

        Air pollution is not just a problem for lungs. Increasingly, research suggests air pollution can influence childhood behavioral problems and even IQ. A new study led by the University of Washington has added evidence showing that both prenatal and postnatal exposure to air pollution can harm kids.

        The study, published in Environmental Health Perspectives, found that children whose mothers experienced higher nitrogen dioxide (NO2) exposure during pregnancy, particularly in the first and second trimester, were more likely to have behavioral problems.

    • Proprietary

      • Liam ProvenMS-DOS was *not* an illegal clone of CP/M

        Later on, MS abused that power repeatedly, stole code, copied ideas, unfairly pushed rivals out of business, and generally became a bully and a criminal. MS effectively killed Be, Netscape, and Central Point Software; it crippled Aldus and STAC; and many more.

    • Security

      • Security WeekGoogle Boosts Bug Bounty Rewards for Linux Kernel Vulnerabilities [Ed: This is the very same Google that put NSA-weakened encryption inside the Linux kernel before it got yanked out months later]

        Google is once again boosting the maximum bounty payouts for Linux vulnerabilities reported as part of its open-source Kubernetes-based capture-the-flag (CTF) vulnerability rewards program (VRP).

        Called kCTF, the program was launched in 2020 to provide security researchers with the means to report vulnerabilities in the Google Kubernetes Engine (GKE), for which they receive a flag.

        “All of GKE and its dependencies are in scope, but every flag caught so far has been a container breakout through a Linux kernel vulnerability. We’ve learned that finding and exploiting heap memory corruption vulnerabilities in the Linux kernel could be made a lot harder,” Google notes.

      • PostgreSQLPostgreSQL: PostgreSQL JDBC versions 42.4.1/42.2.26 Security Update

        The PostgreSQL JDBC team have released 42.2.26 and 42.4.1 to address a security issue: CVE-2022-31197. This is only an issue if you are using ResultSet.refreshRow()

        Previously, the column names for both key and data columns in the table were copied as-is into the generated SQL. This allowed a malicious table with column names that include statement terminator to be parsed and executed as multiple separate commands. More information about this security advisory is available here

        Thanks to Sho Kato https://github.com/kato-sho for finding and reporting the issue

      • LWNSecurity updates for Monday

        Security updates have been issued by Debian (trafficserver), Fedora (freeciv, gnutls, kernel, libldb, mingw-gdk-pixbuf, owncloud-client, rust-ffsend, samba, thunderbird, and zlib), Gentoo (apache, binutils, chromium, glibc, gstreamer, libarchive, libebml, nokogiri, puma, qemu, xen, and xterm), Mageia (golang, libtiff, poppler, python-django, and ruby-sinatra), Red Hat (.NET 6.0 and .NET Core 3.1), SUSE (chromium, cifs-utils, kernel, open-iscsi, and trousers), and Ubuntu (webkit2gtk).

      • Bruce Schneier$23 Million YouTube Royalties Scam

        Scammers were able to convince YouTube that other peoples’ music was their own. They successfully stole $23 million before they were caught.

        No one knows how common this scam is, and how much money total is being stolen in this way. Presumably this is not an uncommon fraud.

      • Privacy/Surveillance

        • CoryDoctorowThe FTC takes aim at commercial surveillance

          The biggest fallacy in the online privacy is that there is a difference between "state surveillance" and "commercial surveillance." Bizarrely, it's a fallacy that is widely held by both government snoops and Big Tech snoops.

          Many's the time I've spoken to a DC audience about privacy, only to have an audience member say, "I'm OK with Uncle Sam spying on me – after all, I've already given up every sensitive scrap of information about my personal life to the Office of Personnel Management when I applied for security clearance. But I don't want my money going to Google – those bastards would sell their mothers out for a nickle."

          Meanwhile, in Silicon Valley, I hear, "I don't care if Google has my data – they just want to show me better ads. But the US government? Hell no! Those govies and their profiteering private contractor pals are all too stupid to get jobs at real tech companies and who knows what they're going to do with my data?"

        • Public KnowledgeHiding OUT: A Case for Queer Experiences Informing Data Privacy Laws - Public Knowledge

          Anti-queer hate crimes are at an all-time high. Murders of transgender and gender-nonconforming people have skyrocketed year over year since 2016.

    • Environment

    • Finance

      • To tackle the cost of living we need to align banks with public purpose - Positive Money

        With inflation high, public spending and central bank ‘money printing’ has become the scapegoat, leading to calls for spending cuts and/or higher interest rates to combat it. This not only overlooks how inflation is being driven primarily by supply shocks beyond our immediate control, but also the fact that most of the money in our economy is not ‘printed’ by the state, but created by private banks when they make loans – the vast majority of which goes towards bidding up the price of existing assets (including commodities we rely on) rather than increasing the economy’s productive capacity.

      • Michael West MediaJames Packer's email spray is more than a falling out among casino mates - Michael West

        Even when the rich and powerful fall out, the house – their wealth – always wins. Michael Sainsbury examines the latest goings on surrounding Sydney’s Crown Casino.

        The grubby nexus between Australian business, politics and the mainstream media has been laid bare in a leaked series of explosive emails from James Packer to senior Nine Entertainment executives, journalists and chairman Peter Costello.

        The emails alleged that Costello was paid as a secret Crown lobbyist in 2011 for a year, a claim he denies.

        Packer said that Costello’s role was to bring Packer “closer” to then Victorian gaming minister Michael O’Brien, his friend and former staffer. The job was undertaken while Costello was on the board of Future Fund and not disclosed on the national lobbyist register. He was elevated to Future Fund chair in 2014 and remains in the position which would also seem at odds with his role at Nine.

      • Michael West MediaScott Morrison, pimpernel PM, is the gift that keeps giving - Michael West

        Why is Scott Morrison hanging around? The weekend revelations that Morrison swore himself in to multiple portfolios without notifying the nation has sparked cries of outrage, in the political class at least.

        Morrison had himself sworn in as a spare health minister during the first months of the Covid pandemic and also held the finance and resources portfolios during different periods in 2020 and 2021.

  • Gemini* and Gopher

    • Personal

      • Ramblings about myself cuz thats who I know the best ig

        I just got back from work after summer vacation. I say work, but it's really just a paid internship. School starts again in 3 weeks, and I cannot wait. This job is so boring, and I feel so unwelcome. At the same time, I do get paid, so I feel like I can't be too ungrateful. It's a big industry, and it always comes down to "Who can take care of the intern" and everyone looks down and avoids eye contact. I feel like I just get in people's way. Anyhow, It's good money for someone who hasn't really made any on their own.

        I want to go back to school, finish my education and start life for real. It feels like life is in some kind of transition state, just waiting for something real to begin. I have yet to figure out what, but I just yearn for something new, something to take me somewhere I've never been before, somewhere interesting.

      • SpellBinding: GILNUYW Wordo: SNOEK
    • Technical

      • Counting Computers



        My newest laptop is a refurbished 2-in-1 I got from a friend. A few of the keys are finicky, and he needed to type reliably for his job. He gave it to me, since I had worked on his other computers before. The work? Installing Linux on every one of his machines. He's far from tech-savvy; he just got fed up with the eternal update cycle and vows never to return to Windows. Anytime he gets a new computer he calls me up to ask me to install Linux for him: even when I'm on the other side of the world.

        It's currently my main laptop. It's the fastest computer I have, so it's used for watching videos, compiling software, and playing video games.

        [...]

        The desktop was given to me by a relative. I mostly use it for writing when I want to avoid any distractions. It's disconnected from the Internet most of the time.

      • Science

      • Programming

        • Borgmatic and snapper, part 2

          In this article, I go over some improvements from our previous venture with borgmatic and snapper. My previous (and rather janky) approach was not only unnecessary but inefficient. As borg caches based on absolute filepaths, having a stable location is superior to changing it everytime. Further, if you are backing up multiple users (even if it's just root and your own user), it's probably best to run all the scripts as root. Permissions will be preserved, so you shouldn't have to worry about that (though you need root to extract the archives obviously).


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



Recent Techrights' Posts

Don't Use the Future Tense to Discuss the Slop Bubble
Wall Street does not react to reality; it reacts to panic, which is related to expectations
The Broken Window Industry and Its Ongoing Desires to Make Technology Less Dependable
Reliable computing is becoming harder to find
New XBox CEO Typecast in Social Control Media
Microsoft apologists will fall back on (or shuffle between) the "racist" and "sexist" angle
Sites Without JavaScript Deserve Your Visits
We're not arguing that the Web should be as simple or barebones like Gemini Protocol/GemText
EPO Strikes Are Already Working
Campinos is already going "into hiding"
 
IBM Layoffs Definitely Still Happening
Contrary to what some apologists try to say
More and More Projects Quit Microsoft GitHub This Year, XBox Will See the Same
Microsoft GitHub's embrace of slop as "strategic" gives us a clue of what'll happen to XBox very soon
Google "Intelligence": Despite Slam-Dunk or "Smoking Gun" Proof, Drug Abuse in EPO Leadership is "Unverified Allegations"
Google's slop (so-called 'AI') lacks intelligence
8,000 Pages/Articles Per Year
We're eager to maintain a good production/publication pace and illuminate the sinister attempts to interfere with Freedom of the Press in the UK
Gemini Links 22/02/2026: Okonomiyaki and Midcrunch Crisis
Links for the day
Freedom Means Accepting He or She Who is Different
In the Debian community we're sadly seeing some authoritarian overreach this month
Microsoft Windows Falls to Another New All-Time Low in Guatemala, It is a Bottomless Pit
Maybe users come to realise that Windows means back doors and those doors are open to a regime that ought not be trusted
"XBox" Will Become Slop After Mass Layoffs
When all else fails, "AI it"
Links 22/02/2026: Hardware Price Hikes Across the Board, "Microsoft Issues Statement on Potential Layoffs"
Links for the day
Microsoft "Layoffs Incoming"
This transition isn't about promoting games; it's about canning the console
Links 22/02/2026: "Bloat of Modern Fitness Apps" and Wikipedia Deprecates Archive.today
Links for the day
Our IRC 5-Year Anniversary (for Self-Hosted) is Fast Approaching
A week from now it's March already
Gemini Links 22/02/2026: Dream Job Gone and Slop in Taskwarrior
Links for the day
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Saturday, February 21, 2026
IRC logs for Saturday, February 21, 2026
GNU/Linux Grew a Lot in Nicaragua
We've not noticed until today
Techrights Has Over 1,000 Good Articles 'in the Tank'
Drafts, notes, and lengthy documents
New Article Challenges Solicitors Regulation Authority (SRA) for Choosing the Wrong SLAPP Cases to Investigate
The one point we can agree on is that SRA does not know how to correctly select the worst culprits/offenders
The Brand 'Watsonx' is a Terrible Name for IBM 'Hey Hi' (Chatbots) Because Watson Agreed With Adolf Hitler
Almost a century has passed and IBM still believes that selling "intelligence", chatbots in particular, should be done under the name "Watson"
Why IBM is Still Scary and Dangerous
Keep a distance from "Big Blue" Bully
Measuring the Growth of Our Mission and Community
Something between experiment and prototype
Richard Stallman in the United States - Part III - Georgia Tech Did a Fine Job Upholding Free Speech Principles
The real problem was social control media (toxic)
Debian's Master is Deleting Criticism of SystemD and Other Things (On-Topic and Published by Debian Developers), Resorts to the Excuse Messages Are "Too Long"
Censorship serves nobody except the masters that control this censorship
Digg's Latest Incarnation Already Failed, It's Infested With LLM Slop
Many submissions go to slopfarms and some get summarised by slop
Gemini Links 21/02/2026: Veganism and DeskPi RackMate T0
Links for the day
On The Web, XBox Already a Dying Breed
Down to about 0.05% on large machines, based on statCounter [...] Microsoft will never publicly admit or say how many billions it lost on the XBox
2026 a Year of 'Top-Down' Microsoft Layoffs (Management First)
Stay tuned for what comes next
Your "Likes" Aren't Yours and They're Mostly "Worthless Clicks"
Social hermits are not popular, irrespective of how many "Facebook friends" or "likes" they get
Waggener Edstrom/Frank Shaw Lied, There Are Definitely Microsoft Layoffs
Microsoft never issued a formal statement, it made allusions by proxy
Microsoft-Controlled Media With Embargo and Press Operatives
This won't be the last example of media manipulation for narrative control or face-saving "damage control"
Slop Hype Makes Our Core Technology Less Reliable and Far Less Resilient (We Pay for the Catastrophe That Follows)
Only slop-free projects can be trusted
Going for 1,000 (Days of Uptime)
universal records are vastly better
Firefox is No-Go in China, Not Even 1% "Market Share" Anymore
Given Mozilla's utterly rubbish marketing these days (politics over technical aspects), set aside the cheerleading for slop, there's hardly a chance of Mozilla Firefox reaching or exceeding 10% again
EPO "Cocaine Communication Manager" - Part III - It's in His Eyes
Workers are free to draw their own conclusions
Links 21/02/2026: Tensions Over Iran and Illegal Cheeto Tariffs, Presidential Approval Sags
Links for the day
Links 21/02/2026: "Moving Away From Cloudflare", Many Layoffs or Shutdowns in Games (Including XBox/Microsoft)
Links for the day
GNU Linux-libre is a Grown-Up Today
"before that, every distro that wanted to respect its users' freedom had to remove itself all of the binary blobs that were distributed as part of the kernel Linux's so-called sources"
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Friday, February 20, 2026
IRC logs for Friday, February 20, 2026
Gemini Links 21/02/2026: "The Evil of Action" and Slop Bots Causing Great Harm Online (Not Just the Web)
Links for the day
Like a Shell
Overreactions can backfire
Not Only Leaders of XBox Got Sacked (Layoffs)
Phil Spencer and Sarah Bond got laid off
9PM on a Friday Night: Microsoft Says the Layoffs Are Not Layoffs
We've said for a long time that XBox is doomed this year
Gemini Links 20/02/2026: Misfin Server and Magic in Programming
Links for the day
Former Debian Project Leader Branden Robinson Cautions Against Cover-up and Censorship in Debian
Debian drama. Again.
analytics.usa.gov Reckons Windows "Market Share" Fell to Just 38%, Vista 11 Not Even a Third of Windows Users
This coming summer Vista 11 turns 5
The New Digg.com is Slop
Slop "summaries" and Serial Sloppers are drowning out the site with fake 'articles' (plagiarism)
Linus Torvalds: Bill Epsteingate Good Enough for Me to Wine and Dine With
Torvalds is more connected to Jeffrey Epstein than Richard Stallman ever was
Our Uptimes Are Always Better Than Any Site That Uses Clownflare
Clownflare as a company operates like a cult
GNU/Linux Apparently Rose to 6% in Uzbekistan
If accurate, this represents a new problem for Microsoft and a big win for Software Freedom
Sponsored Videos and 'Articles' in The Register MS, Stenography as a Service/Product
They should more accurately label these actors
It's Friday Again and Many People Leave IBM for Good (IBM Should be Reported for Illegal NDAs That Hide Layoffs)
we very seldom see anyone deviating a lot from the "template-like" narrative, let alone mentioning "layoffs" or "RA" or some other term that implies non-consensual departure
The Little Clique of Sloppers/Spammers About "Linux" Got Even Smaller
Thankfully there are still genuine and legit GNU/Linux sites out there
Links 20/02/2026: Microsoft Intentionally Kills Older Hardware, "The Story of XBox" Shows How Defective Microsoft Hardware Really Was
Links for the day
Turkmenistan One of Many Countries Where Microsoft Fell to Distant Third in Search
We expect many layoffs in Bing some time soon
Don't Wait for "Red Hat Layoffs" Because After Bluewashing They're IBM RAs and Don't Wait for "IBM Layoffs" Because They're Perpetual
IBM layoffs are silent and "forever" (small trickle that never ends and is widespread - after all IBM is a very global and ubiquitous firm)
Links 20/02/2026: Standards, Science, and Politics
Links for the day
What Do People Ever Buy From Microsoft Anyway (Not PCs)?
Microsoft sells two things these days: 1) vapourware/promises. 2) its stock.
Gemini Links 20/02/2026: "Mainstream Unix, Underground Unix", Slop Staging DDoS Attacks Against Small Sites
Links for the day
IBM Inclusivity: Red Hat Summit is for Rich Sponsors Like Microsoft and Rich Guests Who Pay $500 a Day
Nothing signals societal tolerance more than paying a large military contractor
GNU/Linux Adoption is Higher in Richer Countries
Is it because freedom is actually expensive - something that only privileged people can pursue?
Links 20/02/2026: Windows TCO Versus Deutsche Bahn, Europe Seeks More Independent Digital Future
Links for the day
IBM, Red Hat and Fedora: Don't Say "Master", It Offends People. Also IBM, Red Hat and Fedora: "Master Podman".
The hypocrisy at Red Hat and Fedora shows no boundaries
IBM Layoffs Aren't Just in IBM 'Proper'
Who is still using Lotus after the HCL move?
The Register MS Gets Paid by Gartner to Promote a Ponzi Scheme for Gartner, Microsoft, and Others
The credibility of that site will suffer because it tries to sell a major scam to its audience
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, February 19, 2026
IRC logs for Thursday, February 19, 2026