As configured in my dotfiles.
start new:
tmux
start new with session name:
| This is a Python script to extract GNOME/GTK's color scheme and apply it to Wine, so that the themes (approximately) match. | |
| Instructions: | |
| 1. Set your Gnome theme as you would like it | |
| 2. Run with a command like "python wine_colors_from_gtk.py" | |
| 3. Restart any apps running in Wine. They should match the Gnome theme colors now. | |
| Better description with screenshots here: http://www.endolith.com/wordpress/2008/08/03/wine-colors/ | |
| This is also stored on https://code.launchpad.net/~endolith/+junk/wine-color-scraper |
| #!/bin/bash | |
| # Install Monaco font in Linux | |
| # Version from nullvideo https://gist.github.com/rogerleite/99819#gistcomment-2799386 | |
| sudo mkdir -p /usr/share/fonts/truetype/ttf-monaco && \ | |
| sudo wget https://gist.github.com/rogerleite/b50866eb7f7b5950da01ae8927c5bd61/raw/862b6c9437f534d5899e4e68d60f9bf22f356312/mfont.ttf -O - > \ | |
| /usr/share/fonts/truetype/ttf-monaco/Monaco_Linux.ttf && \ | |
| sudo fc-cache |
| // | |
| // Regular Expression for URL validation | |
| // | |
| // Author: Diego Perini | |
| // Created: 2010/12/05 | |
| // Updated: 2018/09/12 | |
| // License: MIT | |
| // | |
| // Copyright (c) 2010-2018 Diego Perini (http://www.iport.it) | |
| // |
| #!/bin/sh | |
| # Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the | |
| # CREATE block and create them in separate commands _after_ all the INSERTs. | |
| # Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk. | |
| # The mysqldump file is traversed only once. | |
| # Usage: $ ./mysql2sqlite mysqldump-opts db-name | sqlite3 database.sqlite | |
| # Example: $ ./mysql2sqlite --no-data -u root -pMySecretPassWord myDbase | sqlite3 database.sqlite |
| trait Functor[T[_]]{ | |
| def fmap[A,B](f:A=>B)(ta:T[A]):T[B] | |
| } | |
| trait Applicative[T[_]] extends Functor[T]{ | |
| def pure[A](a:A):T[A] | |
| def <*>[A,B](tf:T[A=>B])(ta:T[A]):T[B] | |
| } | |
| trait Monad[M[_]] extends Applicative[M]{ |
| /**********************************************/ | |
| /* | |
| /* IR_Black Skin by Ben Truyman - 2011 | |
| /* | |
| /* Based on Todd Werth's IR_Black: | |
| /* http://blog.toddwerth.com/entries/2 | |
| /* | |
| /* Inspired by Darcy Clarke's blog post: | |
| /* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| /* |
As configured in my dotfiles.
start new:
tmux
start new with session name:
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)That's it!
| """ | |
| Created on June 19th, 2013. via. Sublime Text 2 | |
| @author: lurker | |
| """ | |
| #!/usr/bin/env python | |
| # -*- coding: utf8 -*- | |
| import urllib2,httplib |