Skip to content

Instantly share code, notes, and snippets.

View make-github-pseudonymous-again's full-sized avatar

Notas Hellout make-github-pseudonymous-again

  • Joined on Sep 24, 2012
View GitHub Profile
@make-github-pseudonymous-again
make-github-pseudonymous-again / PKGBUILD
Last active January 30, 2016 11:55
astroid with maildir flags synchronization
pkgname=astroid
pkgver=v0.4.r236.g68dd9ba
pkgrel=1
epoch=
pkgdesc="a graphical threads-with-tags style, lightweight and fast, email client for notmuch, inspired by sup and others"
arch=('x86_64' 'i686')
url="https://github.com/ff2000/astroid"
license=('GPL')
groups=()
depends=('notmuch' 'boost' 'boost-libs' 'gmime' 'gtkmm3' 'webkitgtk' 'gvim' 'libsass')
@make-github-pseudonymous-again
make-github-pseudonymous-again / sort.py
Last active June 29, 2016 17:21
Sort images based on ratio for printing
import os
import sys
import shutil
from PIL import Image
os.makedirs( '3_2' , exist_ok = True )
os.makedirs( '4_3' , exist_ok = True )
os.makedirs( 'unk' , exist_ok = True )
@make-github-pseudonymous-again
make-github-pseudonymous-again / apt-get.sh
Last active August 31, 2016 11:37
Software for Ubuntu
#!/usr/bin/env sh
# UPDATE
apt-get update -y
apt-get upgrade -y
# PACKAGES
@make-github-pseudonymous-again
make-github-pseudonymous-again / mirrorlist
Created January 30, 2017 10:15
Mirror list for Brussels
# Server list generated by rankmirrors on 2016-01-19
Server = http://mir.archlinux.fr/$repo/os/$arch
Server = https://mirror.pseudoform.org/$repo/os/$arch
Server = https://mirror.f4st.host/archlinux/$repo/os/$arch
Server = https://arch.jensgutermuth.de/$repo/os/$arch
Server = https://k42.ch/mirror/archlinux/$repo/os/$arch
Server = https://mirror.compojoom.com/archlinux/$repo/os/$arch
Server = https://mirror.fluxent.de/archlinux/$repo/os/$arch
Server = https://mirror.js-webcoding.de/pub/archlinux/$repo/os/$arch
Server = https://mirror.bitjungle.info/archlinux/$repo/os/$arch
@make-github-pseudonymous-again
make-github-pseudonymous-again / postsynchook
Created May 14, 2017 20:33
OfflineIMAP hooks for abunchoftags
#!/usr/bin/env sh
ALLMAILQUERY='( is:spam OR NOT is:spam ) AND ( is:deleted OR NOT is:deleted ) AND ( is:muted OR NOT is:muted )'
CACHE="$HOME/.cache/keywsync"
BEFORE="$CACHE/before"
STATE="$CACHE/state"
state=$(cat $STATE)
# Run notmuch new to detect any new or deleted files, or and renames.
@make-github-pseudonymous-again
make-github-pseudonymous-again / config.json
Last active November 10, 2017 13:55
vim-vixen config file
{
"keymaps": {
"0": { "type": "scroll.home" },
":": { "type": "command.show" },
"o": { "type": "command.show.open", "alter": false },
"O": { "type": "command.show.open", "alter": true },
"t": { "type": "command.show.tabopen", "alter": false },
"T": { "type": "command.show.tabopen", "alter": true },
"w": { "type": "command.show.winopen", "alter": false },
"W": { "type": "command.show.winopen", "alter": true },
{
"state": {
"mode": "normal",
"last_ex_str": "",
"cmdHistory": []
},
"userconfig": {
"searchurls": {
"g": "https://google.com/search?q=",
"w": "https://en.wikipedia.org/w/index.php?search=",
@make-github-pseudonymous-again
make-github-pseudonymous-again / .bash_aliases
Created January 20, 2019 11:19
vacuum command for apt
alias vacuum='sudo apt autoremove --purge'
@make-github-pseudonymous-again
make-github-pseudonymous-again / gist:2c67b28ebec7fc66a0690b7862e8b700
Last active January 28, 2019 18:04
Stack Exchangle ublock Origin blocklist
! SE
###hot-network-questions
###chat-feature
###newsletter-ad
##.community-bulletin.module
##.js-secondary-topbar-links
###announcement-banner
@make-github-pseudonymous-again
make-github-pseudonymous-again / ap.service
Created May 20, 2019 22:15
Service to create an access point
# /etc/systemd/system/ap.service
[Unit]
Description=Access point daemon
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/create_ap --config /etc/create_ap.conf
KillSignal=SIGINT