Looking after your flatpaks
Do you have many flatpaks? From various remotes added over time? Several themes installed? Disk space is starting to run out? Read on for some tips! ...
Do you have many flatpaks? From various remotes added over time? Several themes installed? Disk space is starting to run out? Read on for some tips! ...
As you may or may not know libzypp is what powers zypper and YaST, which are the packaging frontends on openSUSE. Chances are, you’ve used both. But have you ever tried a development version or enabled unstable features? ...
After dipping my toes into Rust and preparing the boilerplate I’m going to explain what my first project is and how to use it! ...
openQA is a test framework that works with many operating systems. openSUSE, Fedora, Debian and others are using it to ensure the quality of releases. Writing tests with it is easier than you might think. And you can use Python to do it! ...
Not long ago I wrote about dipping my toes into Rust where I discussed what Rust is and why I’m interested to learn it. Now I feel like I need to try my hands on a real project which scratches an itch of mine and at the same time allows me to exercise what I learned. ...
openQA allows for a few different workflows. The main entry point is the web UI if you’re wanting to look at builds, relevant jobs, test results and of course to investigate down to the level of the bare logs if all else fails. Eventually there’s a point where you run into limitations of what’s exposed through the browser. Let’s take a look at what openQA has to offer on the command line! ...
Download audio Homeoffice is awesome for so many reasons I’ve worked remotely for more than a decade. Actually all of my software development career has been one where going to the office was the exception. Something I do occasionally to meet some of my colleagues. Actually when I see my colleagues it’s more typically at software conferences rather than company headquearters. Benefits that come with homeoffice are numerous: On paper I’ve got a 9-5 job I don’t need to move to do my job1 I can adjust to the demands of my personal life I can adjust to make my colleague’s life easier Drawbacks that come with homeoffice are numerous:...
Download audio Do you like vanilla ice cream like everyone else? Think of ice cream for a moment. Do you like chocolate? Do you like vanilla? Nobody can tell from looking at you what kind of flavor you like. People might assume that you like vanilla like everyone else. But maybe you don’t like vanilla ice cream? What if you prefer strawberry? What if you don’t like ice cream at all and everyone is having ice cream?...
Download audio What is Rust and why would I wanna learn it? Rust is a relatively new language, conceived 2010 which makes it a good 10 years old. Poised as a memory-safe alternative to C++ with no runtime overhead, there’s no garbage collection unlike Go or Python and ownership is predicted at compile-time by default. The biggest downside I was prepared for is one of the steepest learning curves for a newcomer to a programming language....
Download audio There is this Perl module on CPAN that looks really handy So, I want to use Devel::Cover::Report::Codecovbash which is a Perl module. To test out how it works of course I can simply install it off CPAN: cpanm -nq 'Devel::Cover::Report::Codecovbash' I can use it just fine like this. To be sure, installing modules as a user $PERL5LIB needs to be set accordingly. Say I spent some time trying this out and decided that I want to depend on this package....