- https://unito.io/
- “That's all you do? I'll write it myself in a weekend hack”
- 2-way-sync, corner cases, formatting, webhooks, ratelimits, multisyncs, .......
- At it for soon a decade 🚜
I hereby claim:
- I am ronjouch on github.
- I am ronjouch (https://keybase.io/ronjouch) on keybase.
- I have a public key ASBSTADMazSbdVcXMDYpTtusuvDeqVzKlgNS7HzK5tpLSAo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano /usr/share/X11/xkb/symbols/us && sudo nano /usr/share/X11/xkb/rules/evdev.xml && sudo nano /usr/share/X11/xkb/rules/evdev.lst && setxkbmap -layout us -variant ronj | |
// ====================== /usr/share/X11/xkb/symbols/us ========================== | |
// us-ronj modifs | |
partial alphanumeric_keys | |
xkb_symbols "ronj" { | |
name[Group1]= "USA - ronj"; |

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# AUTHOR: Ronan Jouchet <[email protected]>, based on another author-less Nautilus script | |
# VERSION: 1.0 | |
# LICENSE: MIT | |
# REQUIRES: - | |
# NAME: PNGQuanter | |
# DESCRIPTION: Reduce size with a call to pngquant | |
# INSTALL: Put script in ~/.local/share/nautilus/scripts and ensure it's executable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Variables definition | |
; ----------------------------------------------------------------------------- | |
EnvGet, userProfile, USERPROFILE | |
Software := userProfile . "\Dropbox\software\" | |
; Launch or toggle program, http://lifehacker.com/5468862/create-a-shortcut-key-for-restoring-a-specific-window | |
; ----------------------------------------------------------------------------- | |
ToggleWinMinimize(WindowTitle) | |
{ | |
SetTitleMatchMode,2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
#!/usr/bin/env python | |
import sys | |
import os | |
import re | |
import yaml | |
import urllib | |
import codecs | |
from datetime import datetime | |
from BeautifulSoup import BeautifulStoneSoup, Comment |