Bonum Certa Men Certa

Links 25/07/2022: NuTyX 22.07.0 and Last RC for Upcoming Linux Release



  • GNU/Linux

    • Linux Made SimpleLinux Weekly Roundup #192

      Welcome to this week's Linux Weekly Roundup.

      We have a good week in the world of Linux releases with Garuda Linux 220717 and Pardus 21.3.

      I hope you have a wonderful week and a lovely summer!

    • Audiocasts/Shows

      • GNU World Order (Audio Show)GNU World Order 470

        **kdiamond** , **kdnssd** , **kdoctools** , **keditbookmarks** , **kemoticons** , **kfilemetadata** , **kfind** , **kfloppy** , **kfourinline** from Slackware set **kde**.

      • VideoHow to install Krita on Pop!_OS 22.04 - Invidious

        In this video, we are looking at how to install Krita on Pop!_OS 22.04.

      • Open Source Security (Audio Show)Episode 333 – Open Source is unfair

        Josh and Kurt talk about Microsoft creating a policy of not allowing anyone to charge for open source in their app store. This policy was walked back quickly, but it raises some questions about how fair or unfair open source really is. It’s mostly unfair to developers if you look at the big picture.

      • E43: Building Supabase, the Open Source Firebase Alternative

        Paul Copplestone is Co-Founder & CEO of Supabase the open source Backend-as-a-Service company that provides storage, authentication, edge functions, and a postgres database to users.

        Supabase's project, also called supabase, has 36K stars on GitHub and is positioned as the "open source Firebase alternative".

      • VideoWhy Wayland Merges Compositing & Window Managers - Invidious

        One of the interesting changes between Wayland and Xorg is how Wayland decided to merge compositing and window management into 1 component, but why is that?

    • Kernel Space

      • LKML: Linus Torvalds: Linux 5.19-rc8
        As already mentioned last week, this release is one of those "extra
        week of rc" ones, and here we are, with release candidate #8.
        
        

        There's nothing really surprising in here - a few smaller fixups for the retbleed mess as expected, and the usual random one-liners elsewhere.

        The diffstat shows mainly some documentation updates and a couple of drivers with bigger fixes (eg the i916 GuC firmware thing), and the networking sysctl data-race annotations.

        So it all just makes me go "yeah, I'm happy to have done another rc, but there is nothing particularly interesting here". Which is all fine. Shortlog appended for the curious among you.

        We'll let this simmer for another week, and please do give it another round of testing to make this last week count, ok?

        Linus
      • LWNKernel prepatch 5.19-rc8

        The 5.19-rc8 kernel prepatch is out for testing. "There's nothing really surprising in here - a few smaller fixups for the retbleed mess as expected, and the usual random one-liners elsewhere."

    • Applications

      • Ubuntu HandbookunlockR – Stupid Simple App to Remove PDF Password in Linux & Windows | UbuntuHandbook

        For those want to unlock / decrypt PDF files, there’s now a stupid simple graphical tool to do the job in Linux.

        It’s easy to encrypt you PDF files in Ubuntu Linux since the built-in LibreOffice office suite has the option on ‘Export as PDF’ dialog. However, there seems no easy way to remove password for PDF file, other than using qpdf command:

        qpdf --decrypt --password=<PASSWORD> input.pdf output.pdf unlockR is a new GTK4 application that use Libadwaita to provide a modern simple user interface to decrypt your PDF files.

      • Make Use OfThe 4 Best MP3 Tag and Metadata Editors for Linux

        Streaming music online may have become the primary way many people listen to music, but MP3 files haven't gone away. It's still easy to purchase and download most songs, DRM-free, to your computer. From there, you can listen to them on just about any device with storage space and a speaker.

    • Instructionals/Technical

      • Make Use OfHow to Switch From Debian Stable to Debian Testing

        While Debian is stable by default, it gets this stability by relying on older versions of software packages. There are times when you might want newer software. Fortunately, it's easy to switch from Debian Stable to Testing to get the latest versions of software on your system.

      • AddictiveTipsHow to convert Apple HEIC images on Linux

        Apple’s iPhone and iPad use the HEIC image format to compress high-quality images. Unfortunately, many apps and computer operating systems don’t support this format. As a result, many people convert HEIC files to JPG and PNG. Here’s how to do it on Linux.

        [...]

        An image converter is the best way to convert Apple‘s HEIC images (High Efficiency Image Format) on Linux. The best converter tool to use on Linux is Converseen. It has support for dozens of codecs, including HEIC/HEIF.

        Converseen isn’t installed on any Linux operating systems by default, so you’ll have to set it up yourself. To install Converseen on Linux, open up a terminal window. Once open, follow the installation instructions below to get Converseen working.

      • uni TorontoWe won't be sending systemd logs to Grafana Loki in JSON format

        In yesterday's entry on a Grafana Loki cardinality issue with the metadata you can harvest from systemd log messages, I said that I thought we'd wind up dealing with the issue by sending systemd journal messages to Loki in the journal's JSON format. This JSON format preserves all of the available fields and Loki can process it to extract them when you access the logs. Having actually tried doing this, I've now given up on the idea.

        In theory, sending JSON to Loki is the correct approach. JSON is the standard modern way to send a collection of information together, such as a log message and the metadata associated with it, and Loki has tools for parsing JSON, extracting the fields, and so on. In a perfect world we'd ship JSON and everything would work nicely.

        In practice, trying to use JSON formatted systemd logs today with Loki and Grafana gave me a succession of papercuts and irritations. I'm currently mostly using Grafana's Explore feature to poke through Loki logs, and this had various issues. For example, Explore gets unhappy if there are errors in the log processing, such as if you have a mixture of JSON and non-JSON log lines so that JSON decoding fails some of the time. Explore has a handy 'show context' feature that shows you related log lines around the selected log, but when you have JSON logs these are in JSON because that's the native log message. Naturally, JSON blobs are harder to skim (and take up more screen space) than the actual log messages.

      • Data SwampHow to account systemd services bandwidth usage on NixOS

        Did you ever wonder how many bytes a system service is daily receiving from the network? Thanks to systemd, we can easily account this.

        This guide targets NixOS, but the idea could be applied on any Linux system using systemd.

      • Data SwampMake nix flakes commands using the same nixpkgs as NixOS does

        This article will explain how to make the flakes enabled nix commands reusing the nixpkgs repository used as input to build your NixOS system. This will regularly save you time and bandwidth.

      • Data SwampThe Old Computer Challenge V2: done!

        The Old Computer Challenge V2 is over! What a week! It was even more than a week, as it was from 10th to 17th july included, that was 8 days.

      • Data SwampHow to use Docker from a Linux host system to escalate to root

        It's often said Docker is not very good with regard to security, let me illustrate a simple way to get root access to your Linux system through a docker container. This may be useful for people who would have docker available to their user, but whose company doesn't give them root access.

        This is not a Docker vulnerability being exploited, just plain Docker by design. It is not a way to become root from *within* the container, you need to be able to run docker on the host system.

        If you use this to break against your employer internal rules, this is your problem, not mine. I do write this to raise awareness about why Docker for systems users could be dangerous.

      • Linux Made SimpleHow to install MCreator 2022.1 on a Chromebook

        Today we are looking at how to install MCreator 2022.1 on a Chromebook. Please follow the video/audio guide as a tutorial where we explain the process step by step and use the commands below.

    • Desktop Environments/WMs

      • K Desktop Environment/KDE SC/Qt

        • Kate 22.08 - Kate

          22.08 will be no revolutionary jump for Kate, more a nice incremental update containing a lot of small improvements and bug fixes compared to 22.04.

          If you want to dive in more deep, we have a nice list of all merge requests that give you a proper overview about the larger development tasks that did take place.

          Naturally, there are some user visible top level changes to Kate. Per default, we now have some text free left & right border with just a bit larger icons. One can naturally switch back to the old style and adjust the icon size there. The bottom status/tool button/… border got fine tuned, too.

        • Swapping ten’s complements: Week 6 & 7

          The second sub-activity of the first activity is swapping the number cards to make consecutive cards 10’s complements of each other. As of now (while writing the blog), there are two levels to this. The first of them consists of the four numbers to swap, and the second level consists of the five numbers to swap. Currently, in this activity, the pupil can swap two numbers by clicking on the first number and then second click on the number with whom they wish to swap. The selected card is a bit enlarged compared to others to provide click feedback and the assurance that this number is assigned. The answer is checked by whether the first pair (first and second card), second pair (third and fourth number card ), and third pair (fifth and sixth number card), if available, are 10’s complements of each other or not. If the pupil can successfully swap the numbers, they proceed to the next sub-level. Now the question arises, “WHAT IS SUB-LEVEL”?. A single level may consist of sub-levels. One has to answer all the sub-level correctly if they wish to proceed to the next level. After reading the “swap” term this many times, it is relatively indicative that the name for this must contain the word “swap.” The name for sub-activity-2 is “Swapping Ten’s Complements.”

        • I’m going to Akademy 2022

          Akademy 2022 is almost around the corner, and I’m excited to be able to travel again after almost 3 years of Covid, lockdowns and more.

          I hope to meet all my KDE friends at the beautiful Spanish city of Barcelona, and remove the dust of my C++/QML coding skills. I do hope to be able to start a new interface for Atelier using QML, I already have most of the boilerplate from previous works, but now I want to keep it simple and clean.

  • Distributions and Operating Systems

    • Linuxiac5 Best Proven Systemd-Free Linux Distributions You Can Rely On

      This article will explore the five best Linux distributions that do not use systemd on which you can rely in your daily job.

      Systemd has long divided the Linux community, polarizing it at both extremes – from widespread acceptance to complete denial. While both sides have valid arguments for their pros and cons, this article will look at five Linux distributions whose developers have chosen a side of not using systemd.

      But, before we get into the article’s meat, let’s briefly explain what systemd is and what it is used for.

      In Linux, there is a special process known as ID 1. It is the init process essentially in charge of starting and stopping the system. It got this ID due to being the first process to run on the system when it booted up.

      The systemd service is the process with process ID 1. It is started directly by the kernel, whereas all other services are started by systemd or one of its child processes. In short, systemd is responsible for the fundamental task of properly running your Linux system.

      Now that we’ve explained systemd and what it’s in charge of, let’s look at why it’s so controversial in the Linux community. First, we clarify that the topic is rather broad and that covering it in depth will necessitate a separate article, which we promise to deliver to our readers soon.

      So, the reasons for some people’s dislike of systemd can be divided into ideological and technical.

    • HaikuOS XFS : Project Update

      When the number of entries are small enough we can store all the metadata information in inode core data itself, we call it shortform directories. My first task was to test V4 support for shortform directories aggressively, since implementation was correct and simple enough it passed all my tests. Then I tried to read V5 shortform directories and ofcourse it failed and the reason was inode core size. Xfs V4 has 256 bytes while V5 has 512 bytes inode, so the offset at which metadata is stored is different for both the versions. I implemented some helper functions to give us the correct data fork pointer based on the version of xfs and soon we were able to read V5 shortform entries, Later I did some testing and it passed all my tests.

      After that I began my work for block directory, ofcourse the number of entries would increase and we will no longer be able to store all metadata in inode itself so we use block directory and the format is changed to extents. Now things started to become interesting, there were new fields introduced in V5 block headers and I needed to elegantly handle it with V4 headers as well. PulkoMandy suggested I have two options for this: either go with virtual class or templates. I decided we will be using virtual class as it will be more consistent with our xfs code and implement as many methods as we need along with function to create class instance as per version of xfs mounted. Since now we have virtual class with vPtrs we need to be very careful with class and its on-disk structure, for example we now can’t use sizeof() operator on virtual class to match with data stored on disk, I added warnings on code about this on function which should be used instead of sizeof() operator.

      As the roadmap on how to handle both versions was clear to me I extended V5 read support for leaf, node, B+tree based directory and files as well.

    • Reviews

      • Distro WatchReview: EndeavourOS 22.6

        The EndeavourOS distribution is a member of the Arch Linux family. Endeavour is a rolling release platform which strives to be easy to set up and run as a desktop operating system. The project puts a strong focus on initial customization, providing the ability to choose our desktop environment (and various extras) at install time.

        I previously reviewed EndeavourOS just over a year ago and the distribution was one of a handful which made my list of remarkably good distributions of 2021. As you might imagine, I was eager to try out the project's latest snapshot to see how it had evolved over the past year.

        Endeavour is available as a single 1.8GB download for 64-bit (x86_64) computers. Booting from the project's live media brings up a menu asking if we'd like to launch the distribution normally, run the live media with improved NVIDIA video support, or launch in fallback mode. The normal method worked well for me and the live media quickly loaded the Xfce desktop. The Xfce interface is arranged with a panel across the bottom of the screen. This panel holds the application menu, quick-launch icons, task switcher, and system tray.

    • New Releases

      • NuTyX 22.07.0 available with cards 2.5.4

        The NuTyX team is happy to announce the new version of NuTyX 22.07.0 and cards 2.5.4.

        New toolchain gcc 12.1.0, glibc 2.35 and binutils 2.38.

        The xorg-server graphics server version 21.1.3, the Mesa 3D library in 22.1.4, Gtk4 4.6.6 and Qt 6.3.0.

        The python interpreters are en 3.10.5 et 2.7.18.

        The XFCE desktop environment is updated to version 4.16.0.

        The MATE desktop environment is a 1.26.0 version .

        The GNOME desktop environment is also updated to version 42.3

        The KDE desktop environment is available in Plasma 5.25.3, Framework 5.96.0 and applications in 22.04.3.

        Available browsers are: Firefox 102.0.1, Chromium 103.0.5060.134, Epiphany 42.3, etc

        Many desktop applications have been updated as well like Telegram-desktop 3.7.3, Thunderbird 102.0.3, Scribus 1.5.8, Libreoffice 7.3.4.2, Gimp 2.10.32, etc.

        Core NuTyX ships with Long Term Support (LTS) kernels: 4.14.288, 4.19.252, 5.4.206, 5.10.131 and 5.15.57 and the latest stable version 5.18.14 .

    • Debian Family

      • URGENT: debian.community domain seized, use new feed URLs, 7000 new leaked emails

        Please update your browser home page, bookmarks and links from any pages you control.

        Use the new URL https://Suicide.FYI where we are continuing to document the Debian / Ubuntu culture and related suicides

        You can find the new RSS and Atom feed URLs on the same page. As the debian.community domain has been stolen, we can not rely on a redirect.

      • DebConf22 closes in Prizren and DebConf23 dates announced

        Today, Sunday 24 July 2022, the annual Debian Developers and Contributors Conference came to a close. Hosting more than 210 attendees from 38 different countries over a combined 91 event talks, discussion sessions, Birds of a Feather (BoF) gatherings, workshops, and activities, DebConf22 was a large success.

        The conference was preceded by the annual DebCamp held 10 July to 16 July which focused on individual work and team sprints for in-person collaboration towards developing Debian. In particular, this year there have been sprints to advance development of Mobian/Debian on mobile, reproducible builds and Python in Debian, and a BootCamp for newcomers, to get introduced to Debian and have some hands-on experience with using it and contributing to the community.

    • Mobile Systems/Mobile Applications

  • Free, Libre, and Open Source Software

    • Programming/Development

      • EarthlyTerraform Import - Leaving Click Opps Behind

        Previously I built a REST API, deployed it into a container and got it all running on AWS as a Lambda. But setting this up involved just clicking around in AWS and occasionally using the AWS CLI.

        Today, I’m going to port that whole setup to Terraform so that its easier to manage, reproduce, and make changes to. ( These are the purported benefits of Terraform, or so my coworker Corey tells me. I’ve never used it before so I’ll be learning as I go. )

        Read this to learn about Terraform from a noob’s perspective. The specifics of my infrastructure import may not be relevant to you, but hopefully my thinking process and take-aways will be.

        Ok, follow along with me as import my infrastructure into Terraform.

      • peppe8oGetting Started with WiFi on Raspberry PI Pico W and MicroPython

        The Raspberry PI Pico W added a WiFi connection to the microcontroller from RPI Foundation, enabling our projects to connect to the internet world

        This tutorial will show you how to use WiFi with Raspberry PI Pico.

        With the release of Raspberry PI Pico W, adding the Infineon CYW4343 module to the RP2040-based microcontroller enabled us to get connected to 2.4GHz WiFi networks. It has been a big step, as before this evolution only a few microcontrollers were able to get connected with a WiFi connection and this makes the Pico usable in smart things projects.

      • Didier StevensUpdate: sortcanon Version 0.0.2
      • Didier StevensUpdate: base64dump.py Version 0.0.23
  • Leftovers

    • On Sarcasm - boz.com

      I first discovered sarcasm as a freshman in college, which I realize makes me a bit of a late bloomer as far as teenagers go. There were certain classmates who seemed to always come across as clever and funny no matter the topic. Over time I noticed there was a simple formula to their contributions and it was pretty easy to mimic. It could be as simple as responding with the opposite emotion as one might expect, feigning joy at bad news and heartbreak at good. On more complex topics it could be as simple as just repeating something someone else said but in a sarcastic tone.

      I decided to give it a shot.

      At first being sarcastic was incredibly satisfying. Whereas previously I might have made an earnest argument or asked a question, I now seemed to be able to jump right to the part where the group appreciated me and my contribution. What is even more impressive is it required very little thought to execute. I could often get a positive reaction even on topics I knew almost nothing about.

    • Jim NielsenThere Is No Bar — But Having One is Good Too - Jim Nielsen’s Blog

      As it relates to blogging, I’ve seen encouragement to Just Publish It™️. Matt says just put stuff out there while Chris adds that there is no bar for the quality of a blog post.

      I agree. I enjoy Matt’s and Chris’ approaches to blogging and I subscribe to and read both.

      But, I have an itching asterisk I want to attach to my agreement. I can’t quite put my finger on what it is. It has a personal bent to it, like “I like that generally, but not for myself specifically” kind of thing.

      Personally I tend towards the “don’t publish it, it’s not good enough” end of the spectrum. For example, I currently have fifty — that’s right 50 — blog post drafts. Some are quite long, full of disjointed thoughts and commentary in need of an edit. Others are quite short, containing a punchy thought in need of expansion and nuance. And if I have to guess how many of those posts will publish, I would say maybe ten at most.

      Why? I don’t think they’re good enough. I’m not sure what I mean by “good enough”, hence this post. I think what I mean is: they’re thoughts that don’t go anywhere and I don’t know where to take them. Some run in circles, seeking to go somewhere but never going anywhere. Others run contrary to some prevailing wisdom, then stop, offering no alternative suggestion or an accompanying rationale.

    • Science

      • IEEEThe Webb Space Telescope’s Profound Data Challenges - IEEE Spectrum

        When the James Webb Space Telescope (JWST) reveals its first images on 12 July, they will be the by-product of carefully crafted mirrors and scientific instruments. But all of its data-collecting prowess would be moot without the spacecraft’s communications subsystem.

        The Webb’s comms aren’t flashy. Rather, the data and communication systems are designed to be incredibly, unquestionably dependable and reliable. And while some aspects of them are relatively new—it’s the first mission to use Ka-band frequencies for such high data rates so far from Earth, for example—above all else, JWST’s comms provide the foundation upon which JWST’s scientific endeavors sit.

        As previous articles in this series have noted, JWST is parked at Lagrange point L2. It’s a point of gravitational equilibrium located about 1.5 million kilometers beyond Earth on a straight line between the planet and the sun. It’s an ideal location for JWST to observe the universe without obstruction and with minimal orbital adjustments.

      • TechXploreDo AI systems really have their own secret language?

        A new generation of artificial intelligence (AI) models can produce "creative" images on-demand based on a text prompt. The likes of Imagen, MidJourney, and DALL-E 2 are beginning to change the way creative content is made with implications for copyright and intellectual property.

        While the output of these models is often striking, it's hard to know exactly how they produce their results. Last week, researchers in the US made the intriguing claim that the DALL-E 2 model might have invented its own secret language to talk about objects.

    • Hardware

      • Stacy on IoTQualcomm launches wearable chips that may finally meet the moment

        Qualcomm has redesigned its silicon designed for wearable devices such as smart watches and activity trackers to launch what it’s calling the Snapdragon W5+ wearable platform. These designs are completely new and hopefully will help the makers of every other smart watch that isn’t an Apple Watch finally compete against the Cupertino-designed device.

        The new Qualcomm silicon embraces the concept of an ambient mode, offloading several sensing and other processes to co-processors that save on power without sacrificing performance. The design takes sensors such as heart rate and microphones for voice activation and embeds them on an always-on microprocessor. Qualcomm has also put a smaller GPU on this always-on chip so the screen gets cool visuals in ambient mode. Finally, it has put notifications and audio playback on this lower performance, low-power always-on processor to save on battery life.

    • Health/Nutrition/Agriculture

      • DaemonFC (Ryan Farmer)Thoughts on Monkeypox as “experts” recommend vaccination to gay men first. Plus: Why Monkeypox is in the media in the first place.

        Thoughts on the “gay community” and Monkeypox as “experts” recommend vaccination to gay men first.

        WARNING: This post will be controversial and likely offensive to LGBT people. I’m gay myself, and I don’t like what I’m seeing, and I really wish I didn’t feel compelled to talk about this.

        I consider myself to be the product of when we could still sit down and watch hard-hitting fact-based journalism, and talk about things like adults, without a total media circus, or worry that someone will take offense to facts.

        George Carlin warned about “soft language” in a video from a long time ago that I believe everyone should watch. It hasn’t gotten any better.

        So, I’ve sat down and thought a little bit about Monkeypox and how it spreads. I’ve decided that I won’t be getting my vaccine in the foreseeable future.

    • Security

      • Privacy/Surveillance

        • ACMRaising the Voices of the Dead [Ed: How Amazon et al will be selling listening devices to people]

          Artificial intelligence experts and ethicists are urging caution about potential adverse effects of using the latest generation of artificial intelligence (AI) agents to simulate the expressions of people who have died. The issue is gaining attention after recent demonstrations of text- and voice-based machine learning models built on natural language processing. Like the use of deepfakes in online videos, the trend presents a minefield of moral quandaries.

    • AstroTurf/Lobbying/Politics

      • Michael West MediaPoor sports: how Morrison put a shark bite on the taxpayer - Michael West

        Speculation surrounding Scott Morrison’s post-parliamentary ambitions includes the possibility of a job with the Australian Rugby League. His involvement with the sport poses plenty of questions, including the grants largesse that defined his time as PM. Investigation by #Mate.

        Scott Morrison went to the footy the day after his ”miracle” election win in 2019. The image of a triumphant Coalition prime minister waving his blue Cronulla Sharks cap to the home crowd at Shark Park in Woolooware jarred with everyone who had expected the election to send a dysfunctional government packing.

        Morrison’s indulgence of the Cronulla Sharks was deft. It certainly fitted his well-crafted image, the private schoolboy from Sydney’s eastern suburbs presented as the daggy dad from middle-class Australian heartland. That image was cultivated, but not necessarily any more insincere than the Aussie-battler image cultivated by the Labor leaders who hobnob with the captains of business and other plutocrats.

      • Thomas McGarity on Trump and the Fall of Law and Order for Corporations

        Koch Industries spent $3.1 million in the first three months of the Trump administration, largely to ensure confirmation of Scott Pruitt as head of the Environmental Protection Agency (EPA).

    • Civil Rights/Policing

      • Students, Campuses and Dominant Corporate Power - Ralph Nader

        When it comes to corporate power and control over their lives, now and into the future, today’s college students are perilously dormant. When it comes to putting pressure on Congress to counter the various dictates of corporatism, there is little activity other than some stalwarts contacting their lawmakers on climate violence.

        Much of campus activity these days focuses on diversity, tuition, student loans, “politically correct” speech demands and conforming conduct.

    • Internet Policy/Net Neutrality

  • Gemini* and Gopher

    • Personal

      • I wrote a new track... Finally!



        I sometimes write music, and today I finished writing some music, so I wanted to share. Whenever someone listens to stuff I create, it gives me additional happiness points! Who knows, maybe one day I will level up to craete a whole album.

        [...]

        Thank you, team Ardour, I really love this DAW.

        (Compiling it required a dirty hack. If you try to compile version 6.9.0 and it fails, let me know, I will share my dirty hack.)

      • Win thrown away in France?

        The best car setup is a compromise. You want grip for the twisty parts and speed for the straights, but more of one gives you less of the other. Ferrari went with grip, and Red Bull went with speed. It seemed like Verstappen would be easily able to pass Leclerc on the long French straights. But that didn't happen. Verstappen could stay with Leclerc, but never looked like passing. So Red Bull stopped Verstappen early. Fresh tyres should have got them an advantage, and it seemed like it was working. Leclerc would come out of his pit stop behind. Then we'd have had another race where Leclerc needed to overtake on track for the win. But instead he spun into the tyre barrier and Verstappen had an easy win. Leclerc said "I was thinking too much and I lost the rear." Ouch.

    • Technical

      • SVT vs cloud

        Gov’t pushing for BankID completely unquestioned. Everyone needs a Google account to be a citizen, is where we’re headed.


* 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
 
200 This Week
Monday started with 40 articles/pages and this is #200
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