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
;; -*- mode: emacs-lisp; auto-compile-lisp: nil; -*- | |
;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Name/Email settings | |
;; | |
(setq user-full-name "Firstname Lastname") | |
(setq user-mail-address "[email protected]") | |
(setq message-alternative-emails (rx "[email protected]")) | |
(setq home-directory (getenv "HOME")) |
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
;;; Use smtp server for mail sending | |
(setq send-mail-function 'smtpmail-send-it) ; if you use `mail' | |
(setq message-send-mail-function 'message-smtpmail-send-it) ; if you use message/Gnus | |
(require 'smtpmail) | |
;; (setq smtpmail-default-smtp-server "smtp.vmware.com" | |
;; smtpmail-smtp-server "smtp.vmware.com" | |
;; smtpmail-smtp-service 25 | |
;; smtpmail-local-domain "vmware.com") |
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
keycode 0x12 = 9 bracketleft | |
keycode 0x13 = 0 bracketright | |
keycode 0x22 = parenleft braceleft | |
keycode 0x23 = parenright braceright | |
remove Lock = Caps_Lock | |
remove Control = Control_L | |
remove Control = Control_R | |
remove Mod2 = Num_Lock |
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
""" User configuration file for IPython """ | |
# Most of your config files and extensions will probably start with this import | |
import IPython.ipapi | |
ip = IPython.ipapi.get() | |
import ipy_defaults | |
import os |
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 | |
# this allows to dump clear-text form of the exchanges between SSL client and SSL server | |
# client-side verification has to be disabled of course | |
# anyway, useful for debugging | |
# to run this you'll need | |
# - a unix system | |
# - socat | |
# - ncat (part of nmap 5.0 suite) |
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
ifconfig eth0:fakenfs <dead nfs server> netmask 255.255.255.255 | |
umount -f /nfs/... | |
ifconfig eth0:fakenfs down |
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
from shove import Shove | |
class ShoveStore(Shove): | |
""" usage: Shove('shove://(shove://(sqlite://data.db file://data_files) memory://)', | |
'simple://', shove_params={'shove_params': {}}) | |
""" | |
def __init__(self, engine, **kw): | |
url = engine.partition('://')[2][1:-1] |
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
#compdef workon | |
_workon_envs () { | |
local expl devs | |
envs=( $(workon) ) | |
_wanted envs expl 'available envs' \ | |
compadd "$@" - "${(@)envs%%:*}" | |
} |
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
for proj in ~/Projects/*/*(/); do | |
hash -d ${proj##*/}=${proj} | |
done |
OlderNewer