Skip to content

Instantly share code, notes, and snippets.

View uwueviee's full-sized avatar

Evie Viau uwueviee

View GitHub Profile
@isomorphisms
isomorphisms / gist:3114ab86960656a729a6b4653001aae2
Created November 27, 2019 06:08
how to pull from docker hub using podman/buildah
On void linux.
Under `/etc/containers/` there is a file called `registries.conf`. It is complemented by `man 5 containers-registries.conf`.
Change (for me lines 11-12) which say
[registries.search]
registries = []
@hjertnes
hjertnes / doom.txt
Created April 6, 2018 08:28
Doom Emacs Cheatsheet
SPC
SPC: find file
, switch buffer
. browse files
: MX
; EX
< switch buffer
` eval
u universal arg
x pop up scratch
@AnderRasoVazquez
AnderRasoVazquez / redbluebuttons.py
Last active March 18, 2021 21:06
[Python Gtk red and blue button] How to use gtk styles to color buttons in GTK #GTK #Python
# blue button
button_equal = Gtk.Button()
button_equal.get_style_context().add_class(Gtk.STYLE_CLASS_SUGGESTED_ACTION)
# red button
button_clear = Gtk.Button()
button_clear.get_style_context().add_class(Gtk.STYLE_CLASS_DESTRUCTIVE_ACTION)
@gdamjan
gdamjan / arch-mirror.service
Last active March 21, 2025 17:47
script to rsync from an arch mirror
[Unit]
Description=Mirror arch linux
[Service]
Type=oneshot
ExecStart=/usr/local/bin/sync_arch_mirror.sh
User=arch
IPAccounting=yes
NoNewPrivileges=yes
PrivateTmp=yes