Also on Reddit - Dive into anything
Ask me Anything
Also on Reddit - Dive into anything
Ask me Anything
Any suggestion for people who want to start on the development side?
Here are some previous answers. If these are not enough, you could ask for something more specific. Reddit - Dive into anything
Reddit - Dive into anything
Reddit - Dive into anything
I missed the AMA, but itās cool to know you were instrumental in the development of openQA. I have a lot on my plate for the foreseeable future, but once I have more time I would like to contribute to openQA recipes for Slowroll
@bmwiedemann Thank you for the work you are doing with Slowroll. I continue to enjoy using it and last night, additionally installed it to a USB thumb drive (with Xfce desktop). It runs well off the thumb drive.
1: What is your preferred desktop environment?
2: Why did you choose to get into openSUSE rather than another distro?
3: What did you do before working with SUSE?
4: What OS is your daily driver?
I appreciate the fine work there.
Question: what are the āfreak out or emergencyā events that stick out to you? Tell us about the time(s) some update went awry and everyone went into triage mode to fix and how it impacted your life. Comes to mind making a breaking update, or even the xz emergency. That kinda thing. Iām always curious about those software developer equivalent situations to the hardware guys āSo I was leaving the office and suddenly hear a bunch of alarms in the server rack, and two days later I went homeā¦ā
We once had a network outage that turned out to be caused by a software misconfiguration (Linux-VLAN-bridge-loop). I call it a āsoftware-defined network outageā (SDNO). It was really hard to debug for our IT team, because the involved machines noticed that network was broken and rebooted, which fixed it for a few minutes. And the expensive Cisco switches did not do well with these billions of packets that needed processing by their weak CPU.
Developers went home early that afternoon.
Another case was when the power went away for 3 minutes and we found out the hard way that our UPS for the server-room had not received maintenance for years. Bonus points, because the KVM-hosts were not designed to start without the services that ran as VMs on these very hosts (DNS, LDAP, DHCP). Many improvements were made after this incident.
The AMA is only over, if you guys stop asking new questions.
Iād appreciate your contribution towards Slowroll openQA testing. action #137189: [core][opensuse] Enable Slowroll tests - openQA Tests - openSUSE Project Management Tool has some details.
What language do you most often in your suse projects?
Personally, Iām a big fan of perl and bash. Sometimes I write 3 pages of code and it just works as intended (after adding a missing semicolon).
Both of them are pretty old and code remained working for 10+ years without having to port it to a new version, as happened with python and ruby.
In shared projects, I sometimes use python, because we have more devs that are able to maintain it. And in the case of obsbugzilla/opensuserabbit.py at master Ā· bmwiedemann/obsbugzilla Ā· GitHub it is, because there are better libraries+examples available.
If you were just starting to learn to code today what language do you think you would focus on?
If SUSE disappeared tomorrow, which distro would you switch to?
Iād probably start with a scripting language (e.g. python) because the fast experimentation helps learning. Or rust if I was more interested in embedded devices and system-level code.
Iād use Debian (āstableā for servers, ātestingā for desktop). It got solid tech and project governance.
Maybe Fedora would be interesting, too, because they use the more familiar directory layouts and rpm packages.
At some point, I thought it might be a worthy idea to create a Debian-based or Fedora-based openSUSE. It should take less effort than packaging everything from scratch. On the down side, it would then be harder to change things in the core OS.
Are there any features that you wanted to add to openSUSE that got rejected?
Certainly.
Apart from the āI have this idea, but someone else has to code itā-type, I also created some patches that were never accepted. Usually boring stuff, such as being able to override the build date in ghostscript-generated postscript files for reproducible-builds. Or allowing HTTP compression in zypper downloads (because only rpm payload is compressed).
Deviating from upstream has some cost in long-term maintenance. It might appear small for a single patch, but if you look at all the 15795 Tumbleweed packages, those have 12601 patches in openSUSE. That needs some effort to manage.
Dear Bernhard,
thank you for your effort on Slowroll!
My question: do you take any measures to harden an openSUSE standard install?
Like, what I have done or would like or one could doā¦
umask
(mine is 0077
)Thank you!
Another question:
which editor/notepad (maybe even IDE) do you use for daily āsimpleā tasks (i.e. note taking, drafts of texts or codes ā but not regular programming)? (I donāt use ā donāt even have them ā vi(m) or (x)emacs ā I used to use Geany, now itās VSCodium, on konsole itās nano.)
I mostly use vim
for everything. Sometimes gvim -p
for the tabs to edit multiple files. And occasionally gedit when I want to copy-paste large text to a browser window.