Skip to content

Instantly share code, notes, and snippets.

View fwilhe's full-sized avatar
🐧
Working on Project "Garden Linux"

Florian Wilhelm fwilhe

🐧
Working on Project "Garden Linux"
  • @SAP SE
  • Potsdam
  • 19:36 (UTC +02:00)
View GitHub Profile

The following packages have been upgraded, to address the mentioned CVEs:

  • upgrade 'jinja2' from 3.1.3-1 to 3.1.5-1gl0
    • CVE-2024-56326
    • CVE-2024-34064
    • CVE-2024-56201
  • upgrade 'linux' from 6.6.63-0gl0~bp1592 to 6.6.71-0gl0~bp1592
    • CVE-2025-21630
    • CVE-2024-57937
  • upgrade 'python3.12' from 3.12.7-1gl1~bp1592 to 3.12.8-5gl0~bp1592
  • CVE-2024-12254
@fwilhe
fwilhe / gl.diff
Last active August 23, 2024 09:23
--- 1592.0
+++ 1592.1
@@ -1,56 +1,49 @@
-python3.11-full 3.11.9-1gardenlinux0
-libpython3.11-dev 3.11.9-1gardenlinux0
-linux-headers-6.6.44-cloud-amd64 6.6.44-0gardenlinux0
-linux-image-6.6.44-firecracker-amd64-dbgsym 6.6.44-0gardenlinux0
-linux-headers-firecracker-amd64 6.6.44-0gardenlinux0
-linux-kbuild-6.6.44 6.6.44-0gardenlinux0
-bpftool 7.3.0+6.6.44-0gardenlinux0
# .github/workflows/ci.yaml
name: CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
@fwilhe
fwilhe / run.sh
Created March 25, 2020 13:59
show java system properties
echo 'class Test { public static void main( String[] args ) { System.out.println( System.getProperties() ); } }' > Test.java; javac Test.java; java Test
@fwilhe
fwilhe / package-list.txt
Created December 27, 2018 21:46
Fedora Silverblue Package List
vim zsh htop mc autojump autojump-zsh httpie the_silver_searcher jq git make direnv thunderbird keepassxc java-11-openjdk
@fwilhe
fwilhe / index.adoc
Created August 1, 2016 11:08
CSS Cheat Sheet

CSS Cheat Sheet

Language Syntax

Class

.myclass

Id

#myId

@fwilhe
fwilhe / gnome-custom-keybinding.sh
Last active November 16, 2019 15:20
Create custom key binding for GNOME to start an application
# Set Keybinding for GNOME Terminal in Slot 0
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ name "GNOME Terminal"
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ command "gnome-terminal --maximize"
gsettings set org.gnome.settings-daemon.plugins.media-keys.custom-keybinding:/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/ binding "<Primary><Alt>t"
gsettings set org.gnome.settings-daemon.plugins.media-keys custom-keybindings "['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/']"
# Print out all Slots
for i in `seq 0 9`;
do
image: rochdev/alpine-asciidoctor:micro
pages:
stage: deploy
script:
- asciidoctor *.adoc
- mkdir .public
- cp -r *.html .public
- mv .public public
artifacts:
paths:
@fwilhe
fwilhe / colorchannels.sh
Last active June 16, 2016 18:20
Experimentation with Color Channels
#!/bin/bash
# picture licence: cc-by-sa Nakiel
wget https://upload.wikimedia.org/wikipedia/commons/e/e2/1213303317_gal_dsc_4158_02.jpg -O natur.jpg
convert natur.jpg natur.png
rm natur.jpg
# create separate pictures for each chanel in RGB, CMY and CMYK models.
convert natur.png -separate natur_RGB_%d.png
convert natur.png -colorspace CMY -separate natur_CMY_%d.png
@fwilhe
fwilhe / xforwarding.adoc
Created May 9, 2016 08:25
Enable X Forwarding for Vagrant Boxes

Create or change the file ~/.ssh/config and add the following lines:

Host 127.0.0.1
    ForwardX11 yes