Bonum Certa Men Certa

Links 11/04/2023: Budgie Desktop 10.7.x and Ubuntu Budgie 23.04



  • GNU/Linux

    • Server

      • Linux Links9 Best Free and Open Source PaaS Cloud Computing Stacks

        Platform as a Service (PaaS) is a category of cloud computing services which offers a way to support the complete lifecycle of delivering web applications and services via the cloud. Along with Software as a Service (SaaS) and Infrastructure as a Service (IaaS), PaaS is a service model of cloud computing.

        PaaS solution stacks offers a number of advantages. They provide significant benefits for the business with extensive savings in upfront cost of installing a development platform, improved productivity & profits, zero maintenance, decreased operational costs, global access to information using internet and many others. In essence, PaaS technologies enable creative developers to spend less time managing hardware and software.

        PaaS solution stacks provide all of the infrastructure to design or deploy general, business, social and enterprise level software applications without being concerned about the underlying infrastructure including networks, servers, operating systems, storage and all the programming tools & applications.

    • Instructionals/Technical

      • What is a Filesystem Mapping in Docker

        In Docker, a file system mapping refers to the process of associating a directory or a file from the host system with a directory or a file inside a Docker container.

      • What is a Port Mapping (Forwarding) in Docker

        In Docker, port mapping (also known as port forwarding) is the process of associating a port on the host system with a port on a Docker container, allowing network traffic to be directed to and from the container through the host system's network interface.

      • How to Create and Use a Private Docker Registry

        Using a private Docker registry offers several benefits: You can create a private Docker registry to host and distribute your own Docker container images within your organization or for specific projects.

      • What are Docker Networks

        Docker networks are virtual networks that provide communication channels for Docker containers to communicate with each other and with the host system, allowing containers to communicate securely and efficiently. Docker networks are used to isolate containers from the host system and from other containers, providing a controlled and secure environment for containerized applications.

      • What are Docker Volumes

        Docker volumes are a way to persist and manage data in Docker containers. A Docker volume is a directory or a named volume that is stored outside of the container’s file system and is used to store and share data between Docker containers and the host system.

      • What is Docker Compose

        Docker Compose is a tool that allows you to define, configure, and run multi-container Docker applications using a YAML file. It provides an easy way to define the services, networks, and volumes for your Docker containers in a single configuration file, which can be version-controlled and shared across teams.

      • What is Docker Swarm

        Docker Swarm is a native container orchestration solution provided by Docker for managing and scaling containerized applications across a swarm of Docker nodes.

      • What are Docker Image Registries

        Docker image registries are central repositories that store and distribute Docker container images. Docker container images are the building blocks of Docker containers, containing all the necessary files, libraries, and dependencies to run a containerized application.

    • Desktop Environments/WMs

      • K Desktop Environment/KDE SC/Qt

        • The road to KDE Connect 2.0

          KDE Connect was designed 10 years ago (!) with Android smartphones as one of our first supported platforms. Because of that, when designing the KDE Connect protocol we had to work around many technical limitations that Android had back in its infancy.

          This year I will be working on a project named “KDE Connect discovery and transport protocol improvements” that received a grant from the NLnet foundation as part of the NGI Assure fund. This grant will allow me to work full time in KDE Connect, with the goal of updating the protocol and apps to modern standards.

          Below are the 3 main areas that will improve thanks to this and become KDE Connect 2.0 (even though some changes will show up sooner, because we release early, release often).

          [...]

          Before Android 5, only TLSv1 and a limited set of cipher suites could be used. We always try to stay compatible with old devices and to fight the programmed obsolescence that plagues modern technology, but that meant keeping the KDE Connect protocol compatible with insecure encryption protocols.

          Starting with KDE Connect v1.22 for Android, we now require Android 5 or later so we can drop compatibility with insecure encryption in all the KDE Connect implementations (and not only Android). In addition to that, we are reviewing and updating the dependencies we bundle as part of the app to make sure we have the latest security patches.

          Later this year, and also thanks to NLnet, we will get a security audit by Radically Open Security. This will be the second time KDE Connect is audited, after the openSUSE security team did so in 2020.

  • Distributions and Operating Systems

    • LinuxiacRolling vs. Point Releases: Which Linux Distro is Right for You

      Thanks to its open-source nature and extensive community support, Linux is a powerful and versatile operating system that has gained immense popularity over the years. However, one of the key decisions that Linux users face is whether to opt for a rolling release or a point release distribution.

      Both have their pros and cons, and choosing the right one depends on various factors, such as your technical expertise, software needs, and personal preferences.

      So, if you are new to Linux or looking to switch to a different distribution, navigating through the plethora of options can be overwhelming. That’s where our comprehensive guide comes in. We’ve compiled all the information you need to decide on rolling vs. point releases on Linux.

  • Free, Libre, and Open Source Software

    • Web Browsers/Web Servers

    • Productivity Software/LibreOffice/Calligra

      • Report about policy related activities in the EU

        The Document Foundation, thanks to the widespread popularity of LibreOffice, is recognized as one of the largest FOSS organizations worldwide, and especially in Europe (where the project was born over 20 years ago).

    • Programming/Development

      • Linux GizmosNew ESP32 dev kit equipped with 6-axis IMU, 1.3” OLED and flexible wireless connectivity

        The SoftRF T-BeamSUPREME is a new small embedded device designed and produced by LILYGO and SoftRF. The new development board is compatible with U-blox MAX-M10S modules and Seemtech SX1262 LoRa modules.

      • UbuntuUbuntu Blog: Optimise your ROS snap – Part 2
        <img alt="" src="https://res.cloudinary.com/canonical/image/fetch/f_auto,q_auto,fl_sanitize,c_fill,w_720/https://ubuntu.com/wp-content/uploads/ac53/Snap-optimization-3.gif" width="720" />

        Welcome to Part 2 of the “optimise your ROS snap” blog series. Make sure to check Part 1 before reading this blog post. This second part is going to present initial optimisations already used in the Gazebo snap. We will present the benefit that they could bring to our ROS snaps as well as the performance results.

        Before its release, the Gazebo snap was using two optimisations that we need to cover first.

      • MedevelBest 15 Open Source React SaaS Templates and Next.js SaaS Starters For Startups

        React and Next.js!

        React is a popular free and open-source JavaScript framework for building enterprise-class web apps, reactive user-interface, and fast end-results.

      • C/C++

      • Python

        • Linux HintGet a Class Name in Python

          To Get the class name of an object/variable in Python, the user can use the type() method, the __class__ attribute, or the __class__.__name__ attribute.

        • Linux HintPython Object is Not Callable Error

          This error is caused by calling a variable with parenthesis when it is neither a module nor a function. Also, due to an invalid call to imported module’s method

        • Linux HintConvert a List of Tuples to a Dictionary in Python

          To convert a list of tuples into a dictionary in Python, use the dict() constructor with either the list comprehension approach or the map() method.

        • Linux HintPython String Decode Method

          The decode() method is used to decode an already encoded string. To do this, you need to specify the encoding format that was used on the original string.

        • Linux HintPython Count Duplicate in the List

          The user can use various approaches to find duplicates in a list including the conversion of a list into a set, the use of the count() or the if-not condition.

        • Linux HintPython Encrypt String

          To encrypt strings in Python, you can use the fernet module from the cryptography library. Otherwise, you can utilize the rsa library.

      • Rust

        • LWNA draft Rust trademark policy

          RS can be used freely and without permission to indicate that software or a project is derived from or based on Rust, compatible with Rust, inspired by Rust, or can be used for the same purpose as Rust. We recommend using RS instead of ‘Rust’ if you have any concerns about your use falling outside of this policy, for example, naming your crate foo-rs instead of rust-foo.

  • Leftovers

  • Gemini* and Gopher

    • Personal

      • 🔤SpellBinding: CDEGUOH Wordo: TRAIL
      • Malta day 5

        Well I survived the wind from last night! It was pretty xrazy until around 3am. Today was a shifting aite day so the morning was spent packing up and cleaning. We were invited to the Presidental summer palace, Verdala Palace. The scout group we firet stayed with in Zurrieq were having a camp there and arranged a tour for us. It is an impressive palace which was built as a fortress in the 1500s. The building has been lovingly restored after some inexcusable vandalism in the form of British diplomat wives wanting to redecorate. After the palace, we had to get shifting to Ghajn Tuffeia. I was part of the car party for this one. Loading and unloading bita of kit. I spent the afternoon catching up on past issues of Private Eye in the sun. Once more people started arriving, I finally got my feet in the sea. It was chuffing freezing. Might paddle some more tomorrow. I also had the pleasure of meeting a friend from previous Scout adventures in Poland. We had a nice long catch up and might be meeting up for some lunch tomorrow.

    • Politics

      • Going down

        I think people are starting to realize that the situation in the US and elsewhere is going to get a lot worse before it's going to get better.

        The Russian troll army and the social rage media like Facebook and Twitter are just exacerbating the entire thing. They exploit every weakness, every fracture, every divide. It doesn't actually matter what we're divided over, as long as there is division to exploit, as long as there is rage to cultivate. Like a poisonous plant, it is encouraged to grow in every crack we leave.

    • Technical

      • Hyprland Test Drive

        I've spent a week now with Hyprland and I've decided I'm going to continue with it instead of Sway. It's a little more beta compared to Sway which has been rock solid for a while, but here are some of the things that have made the switch worth it to me.

      • And now for my next trick

        As of now, all of my personal side projects that I've shared are basically complete (I just have to add query support to Cosmarmot). Lately I've been playing with writing GTK4 apps in Common Lisp, my reasons being that I really enjoy the look of a well-designed GTK/Libadwaita application, especially one that supports responsive design for narrow windows and mobile, and fits in well in my Gnome desktop, and because the Common Lisp bindings are so good thanks to the very good GObject introspection bindings. I've done enough to start to get comfortable with writing GUI code, something that has never been my forté. The last time I dipped my toes in desktop GUI programming was writing panel widgets for Gnome 1 (!) in Python. I do feel like writing something fun in it, though.

        I have two ideas, and I'm only probably going to work on one. Both of them are kind of unnecessary for their respective ecosystems, but each would add something that hasn't appeared or hasn't become common yet.

      • Recently-hyped technologies

        Currently GPT 4 is all over the Hacker News main page, and I keep peeking into the threads, just to find that there is nothing actually informative there (while the linked articles are dull, and seem to be there primarily to serve as a subject for chatter), though there are many excited people. Some suggest that GPT 4 is intelligent and capable of reasoning now, while GPT 3 was simply regurgitating things, but still providing no evidence. Though not a long time ago, when GPT 3 was released, people were almost panicking that it is too good to release, that it will distort the coverage of reality in the news (more than people do, apparently). I guess major changes/advancements like that do happen sometimes, but much more often there is just this annoying hype. To add to the annoyance, perhaps the major "AI" application people run into these days are broken chat bots serving as a moat on the way to get help from human operators (which is needed when other, less sophisticated stuff malfunctions). And perhaps video surveillance (though that likely depends on the jurisdiction).

      • Yretek - My microblog.sh micro-blogging script

        So, this one seems to work. It is meant to facilitate keeping a micro-blog of sorts in my own gemini capsule. I don't get to like it a lot because BASH is out of my comfort zone, and besides, I'm not too happy about the way BASH syntax works with variables, concatenation and all that. But it seems to work, and that's good enough to share. Perhaps it might help somebody who knows even less than me, or, hopefully somebody can catch a bug lurking in it, and/or improve it.


* 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