Bonum Certa Men Certa

Links 09/01/2023: Roundup of CRAN Packages and More



  • GNU/Linux

    • Audiocasts/Shows

      • Jupiter BroadcastingA New Challenge Approaches | LINUX Unplugged 492

        Join us on a journey to true software freedom. We embark on our 30-day challenge and discover a whole new philosophy that will change the way you think about technology.

      • Tux Digital307: Our Open Source Goals for 2023 - Destination Linux - TuxDigital

        This week’s episode of Destination Linux, we’re going to discuss open source projects the crew wants to take on in 2023. Then we discuss Budgie and Sway getting all official on us with Fedora. Plus, we have our tips/tricks and software picks. All this and more coming up right now on Destination Linux to keep those penguins marching!

    • Applications

      • Linux Handbook7 Reasons NeoVim is Better Than Vim

        7 Reasons Why Developers Prefer NeoVim Over Vim The Vim editor is a successor to the vi editor found on the original UNIX. As a fork of Vim, Neovim is an editor that aims to improve the quality of life for all developers, better than Vim.

        Vim is an excellent choice for experienced sysadmins. However, NeoVim has gathered a significant following among developers.

        Wondering why more developers are choosing NeoVim over Vim? As an ardent NeoVim user, I can think of the following reasons.

      • TecMint16 Best Web Browsers I Discovered for Linux in 2023 [Ed: This headline is a lie; they keep recycling old articles, sometimes editing the headlines a bit to make them seem new]
      • TecAdmin10 Most Popular Open Source Linux Shells - TecAdmin

        The Linux shell is a command-line interface that allows users to interact with the operating system and execute commands. There are several different types of Linux shells available, each with its own set of features and characteristics. In this article, we will introduce the 10 most popular open-source Linux shells, which are widely used by developers, system administrators, and other users around the world.

    • Instructionals/Technical

      • DebugPointHow to Install EndeavourOS: Step-by-Step Guide

        EndeavourOS is an Arch Linux-based distribution which became popular in the last couple of years. It is easy to use because of installation methods, unique native scripts and tools and user-centric desktop design. EndeavourOS is the best starting point for Arch for beginners.

        On top of that, it comes with popular desktop environments (Xfce, KDE Plasma, GNOME, etc.) and window managers to choose from.

        This tutorial will teach you how to install Endeavour OS in a physical system with dual boot with Windows. And you can follow these steps for a single-install system.

      • Linux HintTouch Command in Ubuntu 22.04

        The touch command in Ubuntu 22.04 serves various purposes such as generating files or sets of files, altering the modification or access times of files, etc. Moreover, this command can be used to classify the files based on their timestamps without causing any changes to the files. Besides this, you can set the date and time of modification of a file according to your desire using the touch command.

      • Learn UbuntuCheck Disk Space in the Ubuntu Command Line

        And if you are curious, the -H option with the df command is used to get output in human-readable form.

        You can clearly see, it gave me all the necessary details like the size of the disk, used space, available space, and mounting point.

        Want to know more methods of checking disk space? Here you have it.

      • LinuxTechiHow to Install Minecraft on Ubuntu 22.04 Step-by-Step [Ed: Microsoft-controlled and proprietary; use something like minetest instead.]
      • Joe BrockmeierA little Calibre trick: Set series order in metadata : Dissociated Press

        Many book series do not make it abundantly clear what order the series is in by book title. If you are reading, say, Larry Niven’s Ringworld series, it’s not clear from book titles what order the series is in. So you finish Ringworld and then you are ready to start the next book, but is it The Ringworld Engineers or The Ringworld Throne or Ringworld’s Children? Here’s how to make that obvious on your ebook reader.

      • Trend OceansHow to Connect to Wi-Fi from the Terminal Command Line in All Major Linux Distributions - TREND OCEANS

        In all major Linux distributions, you can easily connect to Wi-Fi from the command line. Learn every step required and get connected with this tutorial today!

    • Desktop Environments/WMs

      • GNOME Desktop/GTK

        • Ubuntu HandbookTry out GNOME's New Window Focus Animation in Ubuntu 22.10/Fedora 37 | UbuntuHandbook

          Gnome, the default desktop environment in Ubuntu & Fedora Workstation, is going to replace the app menu with a new window animation, for indicating window focus.

          Meaning it will remove the app menu for current window, in the top-bar beside ‘Activities’ button. Because, it’s always confusing users who are new to GNOME.

  • Distributions and Operating Systems

    • Debian Family

      • Junichi Uekawa: Uploaded Debian packages, since a long time.

        Uploaded Debian packages, since a long time. enumn and remain are rust packages, and needed for crosvm. Working slowly through the dependency chain.

      • Gunnar WolfGunnar Wolf● Back to Xochicalco

        Some of the regulars that follow this blog (or its syndicators) will remember Xochicalco, as it was the destination we chose for the daytrip back in the day, in DebConf6 (May 2006).

        [...]

        Xochicalco is quite unique among our archaeological sites, as it was built as a conference city: people came from cultures spanning all of Mesoamerica to debate and homogeneize the calendars used in the region. The first photo I shared here is by the Quetzalcóatl temple, where each of the four sides shows people from different cultures (the styles in which they are depicted follow their local self-representations), encodes equivalent dates in the different calendaric systems, and are located along representationsof the God of knowledge, the feathered serpent, Quetzalcóatl.

  • Free, Libre, and Open Source Software

    • Control

      • Ruben SchadeComputers don’t do what you “want”

        It’s useful to think about. There’s no spirit of the law for computers; they live in absolutes. A program you write will be executed faithfully to perform the actions you prescribed, regardless of our aims. We may sometimes anthropomorphise or project ill intentions on these damned machines, even go as far as to pretend they have artificial intelligence. But that’s on us.

        It’s also not universal. Developers, like physicists, live in the abstract; only to be rained on by the physical world. Faulty silicon, degraded physical connections, and unreliable networks can result in computations being done that aren’t what you want, or even what you told it. The Pentium FDIV bug is a classic example, but it could even be something as mundane as coming short in the silicon lottery, or the heatsink falling off your RAID controller at 03:00.

    • Programming/Development

      • QtQt as a Career – The Versatility of Technical Artistry

        In this series, we'll be bringing you a variety of career stories from people working with Qt.

      • Red HatHow to use valgrind to track file descriptors | Red Hat Developer

        A file descriptor is a positive integer number representing resources that can do input or output. Naturally, they can represent files that your program opens, but also network sockets and pipes between programs. Also, file descriptors can be created for monitoring timers, signals, and process ids.

        File descriptors are, by default, a limited resource. ulimit -n will show you what the default number of file descriptors that a program can open. A program can normally have only 1024 file descriptors open. Although this number can be increased (also using ulimit -n), you might still want to make sure you don't keep file descriptors open unnecessarily.

        As long as a file descriptor is open, the resources associated with it cannot be released. For example, a file cannot be deleted from the disk if a program is still reading it, or a network port will be kept open. Also, open file descriptors are inherited by any program created by execve (unless it was opened with the O_CLOEXEC flag).

      • Boosting Win Probability accuracy with player embeddings

        In my previous post Computing Win Probability of T20 matches I had discussed various approaches on computing Win Probability of T20 matches. I had created ML models with glmnet and random forest using TidyModels.

      • November 2022: 'Top 40' New CRAN Packages - R Views

        One hundred sixty-seven new packages made it to CRAN in November: Here are my “Top 40” selections in fourteen categories: Climate Modeling: Computational Methods, Data, Ecology, Epidemiology, Genomics, Machine Learning, Mathematics, Networks, Pharma, Statistics, Time Series, Utilities, and Visualization.

      • Austin GilConditional API Responses For JavaScript vs. HTML Forms

        Today, I’ll show you how to detect whether an HTTP request was submitted via HTML form or with JavaScript to the server.

        The examples in this post are based on Nuxt.js and include references to a few global functions (defineEventHandler, getRequestHeaders, sendRedirect). It’s not important that you know how they work. Just focus on the concept. I’ll explicitly highlight the important bits

        Here’s a very basic event handler for a Nuxt JS server. An “event handler” in Nuxt.js represents an HTTP endpoint.

      • Tribonacci sequence
      • Easily re-using self-written functions: the power of gist + code snippet duo

        Quite often data processing or analysis needs bring us to write own functions. Sometimes these self-defined functions are only meaningful and useful within a certain workflow or even a certain script. But other self-written functions may be more generic and reusable in other circumstances. For example, one may want to have a version of ggsave() that always enforces bg = 'snow', or a theme_own() function with pre-saved preferences. Self-written functions live in {.GlobalEnv} and have to be re-defined in every new R session. Copying the same lines of code across projects can be boring. How to “bookmark” the useful little own functions and reuse them easier in other projects? This post offers an elegant solution.

      • Python

        • Linux HintHow to Use Psycopg2 to Connect Python to PostgreSQL

          PostgreSQL is an object-relational database system that you can link with different programming languages. When creating a Python application, you can connect it to the PostgreSQL database. Besides, connecting Python to PostgreSQL is simplified, thanks to the psycopg2 PostgreSQL database adapter.

          Once you install the adapter on your Python development environment, you can execute all PostgreSQL database tasks directly from the Python application. This guide covers different ways of using the psycopg2 database adapter when working with a Python script.

      • Ada

        • OpenSource.comLearn the Ada programming language by writing a simple game | Opensource.com

          These concepts are the basis of most programming languages. Once you understand them, you can start figuring out the rest. Because programming languages usually share similarities, once you know one language, you can learn the basics of another by understanding its differences.

          A good way to learn new languages is practicing with a standard program. This allows you to focus on the language, not the program's logic. I'm doing that in this article series using a "guess the number" program, in which the computer picks a number between one and 100 and asks you to guess it. The program loops until you guess the number correctly.

      • Java

        • Red HatHow to run the correct Java version after an update | Red Hat Developer

          Your shell finds the proper Java environment through an environment variable called JAVA_HOME. It could point to either a JDK or a JRE. As the error message shown earlier indicates, you should point to your JDK if you have a JDK. When non-developers run Java, they don't need the entire JDK, so they can download a JRE and point JAVA_HOME to that. You can learn more about the Java platform components in the article, What is the Java Runtime Environment.

          When you upgrade Java, the system installs a new JDK, and you need to update JAVA_HOME to point to the new location.

          Environment variables used in the shell are generally defined in a start-up file. This file is located in your home directory and is called .bashrc if you use the Bash shell that is the default on Linux. Note the initial dot in the name .bashrc: this dot means that the file doesn't normally turn up when you display the contents of the directory.

    • Standards/Consortia

      • James G100 Days of IndieWeb Challenge

        For the next 100 days, I am committing to ship something related to the IndieWeb each day. A "ship" could be anything that is seen publicly or could be used by someone else that pertains to the IndieWeb. For example, if I make a change to my personal website that other people can see, that would count. If I write a blog post about something related to the IndieWeb, that too would count. Changes could be made over multiple days, but I should write a short post summarizing what I did on a given day to hold myself accountable.

        I have wanted to do a challenge like this for a while but I never committed. After seeing Tantek start his year by committing to write 100 posts about the IndieWeb, I thought I would follow suit.

  • Leftovers

    • Jim NielsenBook Notes: “Pirate Hunters” by Robert Kurson

      My kids have been checking out books at the local library about treasure hunting. I have been reading said books to them, which means I now have an interest in treasure hunting.

    • Ruben SchadeRubenerd: Social norms at coffee shops

      But a quirk of our human nature means we treat people differently depending on density. Whereas sharing tables within close quarters are expected and reasonable, it’s unsettling in a near-empty coffee shop to be asked to share your table, or have someone sit right next to you. We interpret it as being intimate in a way that’s uninvited or unnecessary, given there are so many other places to sit. And unfortunately, I suspect I’d have an extra level of anxiety if I weren’t a man in this situation.

    • James GThe (not so awkward?) shuffle | James' Coffee Blog

      I was walking around Edinburgh today. On my way down a street with a narrow pavement, I was in a position where it was unclear to me in what direction I should walk. The person in front of me shuffled one way and I did, too.

    • Evan HahnEverything we know about The Legend of Zelda: Tears of the Kingdom, as of January 2023

      This post tries to summarize everything we know about Tears of the Kingdom. It’s arranged by time. It may contain spoilers.

    • [Old] Mothers + smartphones = normal birth weight? | Stop at Zona-M

      Does this picture change when mother’s use of smartphone is considered?

    • Hardware

      • Ruben SchadeMy final Commodore 128 Retr0bright post

        Last year (wow, that felt weird to say) I retr0brighted my Commodore 64C with some Australian hair developer cream. The results were spectacular; all the yellow streaks were completely gone, and the clean keyboard matched beautifully.

      • AdafruitAre High Output Batteries Worth the Extra Money?

        Todd at Project Farm was curious to know if tool batteries sold as “high output” (said to have 50% more power and run cooler) actually live up to their claims and are worth the extra money.

        He tested high output vs. regular batteries and compared them for performance using various “high drain” power tools, including chainsaw, circular saw, shop vac, and a leaf blower.

    • Security

      • Wladimir PalantWladimir Palant: TouchEn nxKey: The keylogging anti-keylogger solution [Ed: Well, Microsoft Windows itself is typically a keylogger]

        I wrote about South Korea’s mandatory so-called security applications a week ago. My journey here started with TouchEn nxKey by RaonSecure which got my attention because the corresponding browser extension has more than 10 million users – the highest number Chrome Web Store will display. The real number of users is likely considerably higher, the software being installed on pretty much any computer in South Korea.

        That’s not because people like it so much: they outright hate it, resulting in an average rating of 1,3 out of 5 stars and lots of calls to abolish it. Yet using it is required if you want to do things like online banking in South Korea.

        The banks pushing for the software to be installed claim that it improves security. People call it “malware” and a “keylogger.” I spent some time analyzing the inner workings of the product and determined the latter to be far closer to the truth. The application indeed contains key logging functionality by design, and it fails to sufficiently restrict access to it. In addition, various bugs range from simple denial of service to facilitating remote code execution. Altogether I reported seven security vulnerabilities in the product.

    • Defence/Aggression

      • Michael West MediaThe tragic death of Joshua Gill a failure of the system - Michael West

        In the early hours August 15, 2021, a 14 year old boy Joshua Gill was burned alive in a car not far from his home on Sydney’s Northern Beaches.

        A preliminary Coroner’s Report found that Josh had tried to escape from the car as it burned but the child locks were activated and he was trapped inside. The Coroner has yet to advise the Gill family whether an Inquest will be held.

        The Serious Adverse Event schedule for the Northern Beaches Hospital records the tragedy: “On August 16 2021 at 0900 hours, Facility E was notified by the mother that the Young Person had died unexpectedly by suspected misadventure, with his body found in the backseat of an incinerated car a few hundred metres away from their residence on August 15 2021.

    • Environment

      • Energy/Transportation

        • Michael West MediaAnnastacia Palaszczuk leaves Perrottet and NSW in the dust on coal super profits - Michael West

          Can Dominic Perrottet and Chris Minns “do a Palaszczuk” and hike coal royalties on multinationals now reaping super-profits from the War in Ukraine, or are they too scared of a coal lobby backlash? Michael West reports on the Budget crisis facing NSW as voters head for an election in three months.

          NSW is about to go into election mode. The big day is March 25 and leadership contenders Dominic Perrottet and Labor’s Chris Minns have a dilemma. The fall in property prices and sales volume is about to hammer the state budget. NSW net debt is estimated to blow out from $53bn to $114bn over the forward estimates yet there are no new revenue ideas of any significance. In the face of a savage backlash from the Queensland coal lobby, Premier Annastacia Palaszczuk brought in a staggered regime for coal royalties, in the mode of a progressive tax system where the more you make the more tax you pay.

          Yet of course, royalties are not taxes, they are the payment a company makes to the state for digging the state’s resources out of the ground and exporting them. Coal royalties are tipped to deliver an extra $5bn for the Queensland coffers this year.

    • AstroTurf/Lobbying/Politics

      • Ruben SchadeBanning video apps

        There’s furore among American talking heads, and more broadly within Five Eyes countries and allies like Australia, over whether TikTok should be banned, based on it being foreign spyware full of tracking. It won’t be the last.

        This reaction is generally met with bemusement elsewhere. It might be a novel concept in the States, but the rest of us are used to foreign IT companies tracking us. For example, my card transactions go through American payment processors, I use American social networks with published ties to American intelligence, and my primary phone chat app is Japanese.

        [...]

        Democracies need to approach this issue by taking an uncompromising stance on digital privacy and human rights. Accepting anything less, and we invite the comparison; whether you think it’s fair or not.

  • Gemini* and Gopher

    • Technical

      • January

        I finally killed my Twitter account. Once the in the open nazis started coming back, the Musk shitshow stopped being fun. And while I miss having access to certain people, I haven't missed Twitter in the least.

      • CET 2023

        Games with amazing, strange or skilled sound design are rarer than I wish they would be, and there is no good way to find the games that could meet these criteria due to the lack of useful categorizations in the game space.

      • Ancient Domains Of Mystery (ADOM)

        I have two text UI games which I love. I had played them once, then I was playing them many times through time, and I can always play them again. It doesn't matter if I haven't played them for some time, because I'm feeling always like I am at home. One of that games I described almost a year ago in [Dwarf Fortress]. The second one is [ADOM].

        I don't remember how I started to play. ADOM is so old that in my memories it's convergent with the beginning of the PC's gaming era. I must read about it in one Roguelike-games article. Why did I start to play the text UI game? Probably because I'm writing many simple text games of life in BASIC. With colorful ASCII characters. So the ADOM must had been looking very familiar to me. But all of this is unclear now. Especially that there were many games, with hi-res graphics mode, which I also want to play then. For unknown reasons, however, I played in ADOM.

      • Internet/Gemini

        • Gemini mention, an update to the RFC (final, at least for now)

          Last post regarding gemini mention for a while (probably another year if like last time :p), but after reading constructive comments and remarks via gemlog responses, emails or the fediverse, I had a final thought about what /I/ want to implement on /my/ capsule at this stage. I'll let it run for the 2023 year and revisit.


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



Recent Techrights' Posts

Windows in Åland Islands: From 100% to Less Than Half
Åland Islands lost the sense of urgency to move to GNU/Linux
Not Just Slow News But Also Late News (Julian Assange Landing in Thailand)
Why did AP take so long (nearly a week) to release these?
[Meme] Smart Alec Poettering
How many Microsofters can the Debian Project withstand?
Getting Rid of Microsoft Does Not Go Far Enough
Microsoft already has many problems. One day Microsoft won't exist anymore. But that does not guarantee users' freedom.
Alyssa Rosenzweig's LibrePlanet Talk About Freeing the Apple GPU
Alyssa Rosenzweig is the graphics witch behind the reverse-engineered drivers for the Apple GPU. She previously led Panfrost, the free drivers for Arm Mali GPUs powering devices like the Pinebook Pro. She graduated in 2023 with a Computer Science degree from the University of Toronto and now writes free software full-time.
Links 30/06/2024: LLMs Under Fire and Dictatorship of the Old
Links for the day
[Meme] Walking Outside the Guardrails of the Walled Gardens Built by Monopolies
So-called "advertiser-unfriendly" material was never a problem for Wikileaks
 
Press Complicity and Public Apathy All Along Enabled 14 Years of Illegal, Arbitrary Detention and Coercion Into Plea Bargain of Julian Assange on Brink of Death
They basically blackmailed him into letting the US 'win' the argument
At the End Journalism a Crime (If It Involves Accessing or Gaining Access to Documents Marked "Confidential" or "Classified" by Those Looking to Hide Their Misconduct/Crimes)
At least in the US, especially where the imperialism is at stake
Links 30/06/2024: Tensions in Korea and Japan, Criminalisation of Sleeping Outdoors
Links for the day
100% Slop/Spam From linuxsecurity.com
This is the kind of stuff that's killing the Web faster
Gemini Links 30/06/2024: Murdoch and Ideal OS
Links for the day
In the First 6 Months of 2024 Thailand Moved to GNU/Linux, Not to Windows Vista 11
maybe users moved from Vista 10 and 11 to GNU/Linux, seeing where Microsoft was heading with forced hardware "upgrades"
Eko K. A. Owen, New Outreach and Communications Coordinator for the FSF
Nice to see many new additions to the FSF's team
Microsoft Has Slaves and Enablers, Not Partners
Obligatory meme too
Tobias Platen Covered Freedom-To-Play Games in LibrePlanet 2024
Freedom-To-Play games using Taler
[Meme] Opening a 'Webapp' With 'Only' 4 GB of RAM
Until 2020 none of my PCs ever had more than 2 GB of RAM
Destination 'Five Percent'
We reckon GNU/Linux can break the 5% barrier some time by the end of this year, even without counting Chromebooks
A Crisis of Online Journalism
Almost a week ago a journalist was forced to plead guilty for an act of journalism
Germany One of Many Countries Where Microsoft's Bing Lost Market Share After All That LLM Nonsense (Bing Chat and Further Rebrands/Renames)
openai.com traffic plunged 60% last month
Microsoft’s Latest Antitrust Scrutiny
4 new stories
Microsoft Layoffs, Mass Plagiarism, and More
outrage included
GNU/Linux Climbed 0.25% This Month (in statCounter)
Around midday on Tuesday we'll start seeing preliminary data for July
Ilya Gulko Introduces Pollyanna
"Pollyanna is a web framework that makes it easy to create your own libre social space, such as a social network or blog."
'FSFE': Underage Labour, GAFAM Fronting, and Identity Theft to Undermine the FSF's Current Fundraiser
looking to raise funds at the same time as the FSF
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Saturday, June 29, 2024
IRC logs for Saturday, June 29, 2024
Links 29/06/2024: Astronauts at Risk, Ukraine Updates
Links for the day
Fedora and Red Hat Leftovers
mostly redhat.com
Microsoft is Now Googlebombing or Spamming 'Open Source' and 'Linux' to Promote Proprietary Surveillance, Azure
Notice the title and the image, what's being promoted etc.
Seychelles: GNU/Linux Doing OK
Seychelles cannot be considered poor
This War Crime Footage, Nothing Political Per Se, Is What They Made Julian Assange Plead Guilty To (War Criminals Not Convicted, Only Those Who Expose Them)
Wikileaks' Julian Assange: Exposing the US Military Crimes
Gemini Protocol Isn't Even Remotely "Dead"
"Lupa knows of 505,000 (half a million!) working Gemini URLs at present, up from about 425,000 this time last year"
About 10 New Free Software Foundation (FSF) Members Per Day
The total changed from 46 to 47 while typing the article
20 Years Passed, Let's Go Even Faster Now
We are hoping to bring more original stories
Vista 11 Adoption Unusually Low in Germany and It's Going Down, Not Up
This is not happening only in Germany
Kevin Korte on Computers Being Allowed to Make Decisions Based on Cryptic Algorithms and Proprietary/Secret Data
It uses buzzwords where none are needed
[Meme] Garbage In, Garbage Out (linuxsecurity.com)
It is neither Linux nor security, just chatbot-generated slop
Microsoft-Invaded CISA Spreads Anti-Free Software FUD (as If Proprietary Software Has No Memory Safety Issues), Brittany Day Uses Chatbots to Amplify and Permutate the Microsoft FUD
linuxsecurity.com became an anti-Linux spam site
Microsoft Laying Off Staff in an Act of Retaliation and Union-Busting
retaliatory layoffs at Microsoft
Gemini Links 29/06/2024: Content Drowning in 'Goo' and LLM Slop
Links for the day
Windows Lost Almost 92% Market Share in Egypt
From over 99% to just over 7%
In Ecuador, GNU/Linux Adoption Surged From Under 1% to Over 4% in About 3 Years
Not even counting Chromebooks
LibrePlanet: Cultivating Backups (of Recordings)
an appeal to recover some of these talks
Microsoft/Windows Machines Are Turned Off (or Windows Deleted/Decommissioned) in Web Servers, as the "Market Share" Collapse Continues
Taking full history into account, this is a decrease of over 90% in some cases
Corwin Brust Hosting Freedom: A Behind-the-scenes Tour With the GNU Savannah Hackers
"the "smiling faces" behind it."
Android at 90% or More in Chad
Windows below 2%
David Wilson: Cultivating a Welcoming Free Software Community That Lasts
"a feeling of shared ownership for all users."
Julian Assange Might Continue Wikileaks, But Certainly Not Yet (Recovery Time Needed)
And probably at a symbolic capacity only
Bringing in 12 Santas and Taking 13 Out (Old Interview With Julian Assange)
Julian Assange's life inside the Ecuadorian embassy
Neil Plotnick on GNU/Linux in the High School Classroom
uploaded to the LibrePlanet instance of MediaGoblin
Asia Appears to be Fastest to Adopt GNU/Linux
the home of a considerable majority of the world's population
Alexandre Oliva's LibrePlanet 2024 Talk About "Software Enshittification"
in spite of technical difficulties encountered while recording
What They Used to Do With Mono They Now Do With Systemd (Lower and Deeper Down Than Userspace)
Now we have a project started primarily by Red Hat (and managed by Microsoft GitHub, which is proprietary) being managed by Microsoft and primarily serving Microsoft and IBM
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Friday, June 28, 2024
IRC logs for Friday, June 28, 2024
Links 28/06/2024: Kangaroo Courts and Patents Spam, EFF Still Fighting for CPC's TikTok (a Digital Weapon)
Links for the day
Links 28/06/2024: Overton window and Polarization
Links for the day
[Meme] In 50 Years...
Microsoft's Vista 11 will take 50 years to be fully adopted
Only About 1 in 8 Russian Windows Users is Using Vista 11
it looks like over the past 12 months Vista 11 hardly grew and it remains very low at around 12% of Windows usage in Russia
Links 28/06/2024: More Attacks on the Press, More Censorship in Russia
Links for the day
Gemini Links 28/06/2024: Christmas Prematurely, Self-hosting
Links for the day
IBM: So Long, Suckers. Your Free OS is Now Proprietary. Pay IBM or Else.
almost exactly a year after turning RHEL into proprietary software
Vista 11 is Doomed and Despite Lack of Adoption Microsoft Already Speaks of Vapourware ("12")
"Microsoft has pulled a Windows 11 update after users reported boot loops and startup failures."
ChromeOS Reaches Highest Share in Years at the World's Most Populous Nation, Windows Now at All-Time Low of 13%
We're talking about India today
[Video] "It Is Incredible That Julian Assange Survives"
There was a positive and mutual relationship between Wikileaks and Dr Jill Stein
Never Assume That Because the Law Exists the Powerful Will Follow the Law
Who's going to hold them accountable now?
Nearly a Month Has Passed and Nobody at the Debian Project Even Attempted to Explain What Seems Like Back-dooring of Debian (and Hundreds of Distros That Are Debian-Derived)
I can cynically guess that only matters when a user with a Chinese name does it
[Video] Julian Assange Explains Wikileaks' Logistics
predating indefinite detention
IBM Was Never the "Good Guy", Just a Self-Serving and Opportunistic Money- and Power-Hungry Monopolist, Living Off of Taxpayers' Money (Government Contracts)
The Nazi Party of Germany was its second-biggest client at one point and now it's looking to profit from the work of slaves
"I Hated Working at IBM. They Were the Most Unfriendly People."
Don't forget what Watson the son did to a poor woman on a plane
State of the News (and Depletion of Journalism Online, Not Just Offline)
Newspapers are not coming back and the Web is not coming back either
GNU/Linux Consolidates in North America
Android rising a lot this year, too
[Meme] More Monopolies Granted While Patent Examiners Die (Overworking for Less Compensation)
Work more; Get less
Staff Union of the EPO (SUEPO) is Taking the New Pension Scheme (NPS) to an International Tribunal (ILOAT)
SUEPO wants more EPO staff to participate in collective action
Stella Assange and the Legal Team Speak to the Media a Day After WikiLeaks Founder Julian Assange Arrives in Australia
Published yesterday by a number of mainstream publishers
Over at Tux Machines...
GNU/Linux news for the past day
IRC Proceedings: Thursday, June 27, 2024
IRC logs for Thursday, June 27, 2024
RIP Daniel Bristot de Oliveira, Red Hat death
Reprinted with permission from Daniel Pocock