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
" unmap arrow keys | |
no <down> <Nop> | |
no <left> <Nop> | |
no <right> <Nop> | |
no <up> <Nop> | |
ino <down> <Nop> | |
ino <left> <Nop> | |
ino <right> <Nop> | |
ino <up> <Nop> |
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/sh | |
# | |
# ~/.xinitrc | |
# | |
# Fenster Manager | |
#===== keypress-repeat-rate =====# | |
xset r rate 400 28 | |
#================================# |
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
filetype off | |
set ruler laststatus=3 number title hlsearch | |
syntax on | |
set backspace=2 " make backspace work like most other apps | |
" verkuerzt die Breite von <Tab> auf 4 | |
set tabstop=4 |
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
@users = kroovy lenniwings edwarf floridori schokobaer norom noez git_noez master206 | |
repo gitolite-admin | |
RW+ = kroovy | |
repo priv/CREATOR/[a-z].* | |
C = @users | |
RW+ = CREATOR | |
repo pub/CREATOR/[a-z].* |
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
nc irc.hackint.org 6667 | |
USER foo bar foobar buz | |
NICK floridori2 | |
JOIN #jimileibniz | |
PRIVMSG #jimileibniz hallo_leute |
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
static MouseShortcut mshortcuts[] = { | |
/* button mask string */ | |
{ Button4, XK_ANY_MOD, "\031" }, | |
{ Button5, XK_ANY_MOD, "\005" }, | |
}; | |
/* Internal keyboard shortcuts. */ | |
#define MODKEY Mod1Mask | |
static Shortcut shortcuts[] = { |
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
nc irc.freenode.org 6667 | |
USER foo bar foobar buz | |
NICK norom2 | |
JOIN #jimileibniz | |
PRIVMSG #jimileibniz hallo_leute |
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 | |
## DEPENDENCIES | |
# | |
# * sudo apt-get install cryptsetup lvm2 | |
# | |
## PREPARATION | |
# | |
# * use "sudo vgscan" in order to find out volume group (eg. "x220-vg") |
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
[normal] | |
# Keybindings for normal mode. | |
set network proxy system socks://localhost:9050 | |
<ctrl-,> | |
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
/** | |
* download: http://central.maven.org/maven2/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar | |
* | |
* compile: javac -cp .:gson-2.8.0.jar Account.java | |
* run : java -cp .:gson-2.8.0.jar Account | |
*/ | |
import com.google.gson.Gson; | |
public class Account { |
NewerOlder