Skip to content

Instantly share code, notes, and snippets.

View ronjouch's full-sized avatar

Ronan Jouchet ronjouch

View GitHub Profile
@ronjouch
ronjouch / ts-mtl-2011-11-17-ronan.md
Last active November 18, 2022 19:16
TypeScript Montréal meetup, 2011-11-17: TS @ Unito, A potpourri of various cool Node & TS thingies

TS Montréal meetup, 2011-11-17: TS @ Unito, A potpourri of various cool Node & TS thingies

A quick word about Unito

  • 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 🚜

TypeScript at Unito!

Keybase proof

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:

@ronjouch
ronjouch / us-ronj_xkb-keyboard-layout.txt
Created August 29, 2017 04:07
US/ronj xkb keyboard layout
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";
@ronjouch
ronjouch / gmail-display-density.png
Last active March 9, 2016 19:30
gmail-display-density
gmail-display-density.png
@ronjouch
ronjouch / freezes.ods
Last active November 15, 2015 06:20
[JACK] Help with non-xrun-looking hangs on a FireWire setup
@ronjouch
ronjouch / PNGQuanter
Created August 17, 2013 20:47
PNGQuanter, Nautilus script that calls PNGQuant from Nautilus's 'script' menu
#!/bin/bash
# AUTHOR: Ronan Jouchet <ronan@jouchet.fr>, 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
@ronjouch
ronjouch / ronj-autohotkey.ahk
Created April 20, 2012 13:28
Collection of AutoHotkey scripts I use
; 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
@ronjouch
ronjouch / xml2markdown.py
Created April 15, 2012 19:02 — forked from Reiot/wordpress2octopress.py
Blogger xml ==> Chisel markdown migration script
# -*- 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