As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| # | |
| # Startup script for the Supervisor server | |
| # | |
| # Tested with Red Hat Enterprise Linux Server release 5.5 | |
| # | |
| # chkconfig: 2345 85 15 | |
| # description: Supervisor is a client/server system that allows its users to \ | |
| # monitor and control a number of processes on UNIX-like \ | |
| # operating systems. |
| #!/bin/sh | |
| # Hurricane Electric IPv6 Tunnel Broker script for Ubuntu | |
| # /etc/network/if-up.d/he-ipv6.sh | |
| # Written by Jesse B. Hannah (http://jbhannah.net) <[email protected]> | |
| # Based on instructions provided by Hurricane Electric (http://tunnelbroker.net) | |
| ### | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # file: merger.py | |
| # based off: http://cmikavac.net/2011/07/09/merging-multiple-nessus-scans-python-script/ | |
| # by: mastahyeti | |
| import xml.etree.ElementTree as etree | |
| import shutil | |
| import os | |
| first = 1 | |
| for fileName in os.listdir("."): |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |
| @namespace url(http://www.w3.org/1999/xhtml); | |
| /*屏蔽没兴趣的功能*/ | |
| @-moz-document domain("tieba.baidu.com"){ | |
| /*字体锁定*/ | |
| *{ | |
| font-family:Myriad Web Pro,"微软雅黑" !important; | |
| } | |
| /*签名*/ | |
| .d_sign_split,.j_user_sign,.d_sign_spacer{ |
| var str =prompt('输入要回复的蓝字'); | |
| function UniCode(str){ | |
| str = str.replace(/<\/?a[^>]*>/gi, ""); | |
| var temps = new Array(); | |
| var i = 0; | |
| while (/<[^>]*>| |@\S*/.test(str)) { | |
| temps[i] = /<[^>]*>| |@\S*/.exec(str); | |
| str = str.replace(temps[i], "㊣"); | |
| i++; | |
| } |
| echo -n "That's the text"|openssl enc -e -aes-256-cbc -a | |
| Encrypt with interactive password. Encrypted message is base64-encoded afterwards. | |
| echo -n "That's the text"|openssl enc -e -aes-256-cbc -a -k "MySuperPassword" | |
| Encrypt with specified password. Encrypted message is base64-encoded afterwards. | |
| echo "GVkYiq1b4M/8ZansBC3Jwx/UtGZzlxJPpygyC"|openssl base64 -d|openssl enc -d -aes-256-cbc | |
| Base-64 decode and decrypt message with interactive password. | |
| echo "GVkYiq1b4M/8ZansBC3Jwx/UtGZzlxJPpygyC"|openssl base64 -d|openssl enc -d -aes-256-cbc -k "MySuperPassword" |