Skip to content

Instantly share code, notes, and snippets.

View artizirk's full-sized avatar

Arti Zirk artizirk

View GitHub Profile
@artizirk
artizirk / fix_maildir_mail_mtime.py
Created April 23, 2019 15:30
This script is useful for setting fallback mtime for isync/mbsync CopyArrivalDate option
#!/usr/bin/env python3
# This script is useful for setting fallback mtime for isync/mbsync CopyArrivalDate option
# If you use notmuch then you could do something like this to fix mtime on new mail
# notmuch search --output=files tag:new | xargs -P0 -i ~/code/mailutils/fix_maildir_mtime.py {}
import email
import sys
import os
from email.utils import parsedate_tz, mktime_tz
@artizirk
artizirk / fastmail.user.js
Created April 18, 2019 11:50
Fastmail monospace mail font
// ==UserScript==
// @name fastmail monospace
// @namespace http://zirk.me/userscript
// @version 0.1
// @description try to take over the world!
// @author Arti
// @match https://www.fastmail.com/mail/*
// @grant none
// ==/UserScript==
@artizirk
artizirk / evdev_input_absinfo_ioctl.py
Last active February 14, 2022 11:27
Pure python way of getting and setting input_absinfo in linux kernel evdev devices https://python-evdev.readthedocs.io/en/latest/apidoc.html#evdev.device.InputDevice.absinfo
from ctypes import *
from fcntl import ioctl
# See ioctl.h of your architecture for appropriate constants here.
# This has been tested only on x86
_IOC_NRBITS = 8
_IOC_TYPEBITS = 8
_IOC_NRSHIFT = 0
_IOC_TYPESHIFT = _IOC_NRSHIFT + _IOC_NRBITS
@artizirk
artizirk / gnupg_scdaemon.md
Last active March 4, 2025 10:54
OpenPGP SSH access with Yubikey and GnuPG

NB: This document describles a 'Old-School' way of using Yubikey with SSH

Modern OpenSSH has native support for FIDO Authentication. Its much simpler and should also be more stable with less moving parts. OpenSSH also now has support for signing arbitary files witch can be used as replacement of gnupg. Git also supports signing commits/tags with ssh keys.

Pros of FIDO

  • Simpler stack / less moving parts
  • Works directly with ssh, ssh-add and ssh-keygen on most computers
  • Simpler
  • Private key can never leave the FIDO device

Cons of FIDO

@artizirk
artizirk / alternate_tab_gnome_332.sh
Created March 19, 2019 18:44
AlternateTab extention replacement for Gnome Shell 3.32
#!/bin/sh
# Those options are also available in the settings app but aint nobody got time for that
dconf write /org/gnome/desktop/wm/keybindings/switch-applications "['<Super>Tab']"
dconf write /org/gnome/desktop/wm/keybindings/switch-applications-backward "['<Shift><Super>Tab']"
dconf write /org/gnome/desktop/wm/keybindings/switch-windows "['<Alt>Tab']"
dconf write /org/gnome/desktop/wm/keybindings/switch-windows-backward "['<Shift><Alt>Tab']"
@artizirk
artizirk / disable-c6.service
Created February 25, 2019 18:58
Disable 1st gen Ryzen unstable C6 powersave state
# https://github.com/r4m0n/ZenStates-Linux
# https://www.reddit.com/r/Amd/comments/7tkigu/automating_disabling_of_c6_states_in_arch_linux/
[Unit]
Description=Disable C6 on boot
After=default.target
[Service]
Type=oneshot
ExecStart=/usr/bin/zenstates --c6-disable
@artizirk
artizirk / nginx.conf
Created February 15, 2019 15:12
Minimal nginx webdav server
worker_processes 1;
error_log stderr;
daemon off;
pid /tmp/nginx/nginx.pid;
load_module /usr/lib/nginx/modules/ngx_http_dav_ext_module.so;
events {
worker_connections 1024;
}
@artizirk
artizirk / git-instaweb.sh
Created January 22, 2019 18:57
git-instaweb with python simplehttpserver support
#!/bin/sh
#
# Copyright (c) 2006 Eric Wong
#
PERL='/usr/bin/perl'
OPTIONS_KEEPDASHDASH=
OPTIONS_STUCKLONG=
OPTIONS_SPEC="\
git instaweb [options] (--start | --stop | --restart)
@artizirk
artizirk / libvirt net-dumpxmp default
Last active December 11, 2018 15:12
libvirt bridge config
# restore with virsh net-define default.xml
<network connections='4'>
<name>default</name>
<uuid>e682f99d-8e87-44e7-bd02-0b8d5ad59b37</uuid>
<forward mode='bridge'/>
<bridge name='br0'/>
</network>
@artizirk
artizirk / mpv_deinterlace.txt
Created November 19, 2018 17:36
mpv deinterlace bottom field first
mpv "--vf=lavfi=[yadif=parity=1]" video.mp4