This file contains hidden or 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
| #!/usr/bin/env bash | |
| TCPDUMP_PID="" | |
| SOCAT_PID="" | |
| OUTPUT_FILE="" | |
| PORT=12345 | |
| TMPDIR="." | |
| TCPDUMP_PATH="/data/local/tmp/xbin/tcpdump" | |
| NETCAT_PATH="/data/local/tmp/nc" | |
| HOST_INTERFACE="en0" |
This file contains hidden or 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
| c:\Windows\System32\certutil.exe -hashfile c:\full\path\to\file [HASH_ALGORITHM] | |
| Supported HASH_ALGORITHMs are: MD2, MD4, MD5, SHA1, SHA256, SHA384, SHA512 |
This file contains hidden or 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
| # Show message box popup. | |
| Add-Type -AssemblyName System.Windows.Forms | |
| $result = [System.Windows.Forms.MessageBox]::Show("My message", "Window Title", [System.Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::None) | |
| # Show input box popup. | |
| Add-Type -AssemblyName Microsoft.VisualBasic | |
| $inputText = [Microsoft.VisualBasic.Interaction]::InputBox("Enter some value:", "Window Title", "Default value") | |
| # Show an Open File Dialog and return the file selected by the user. | |
| function Read-OpenFileDialog([string]$InitialDirectory, [switch]$AllowMultiSelect) |
This file contains hidden or 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
| package main | |
| import ( | |
| "net/http" | |
| ) | |
| func main() { | |
| http.Handle("/", http.FileServer(http.Dir("."))) | |
| http.ListenAndServe(":8080", nil) | |
| } |
This file contains hidden or 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
| // ==UserScript== | |
| // @name google search url cleaner | |
| // @author blinksmith | |
| // @version 0.1 | |
| // @namespace https://gist.github.com/713fa531972fab77e5ad | |
| // @description google search url cleaner | |
| // @include https://encrypted.google.com/?* | |
| // @include http://www.google.*/search?* | |
| // @include https://www.google.*/search?* | |
| // @grant none |
This file contains hidden or 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
| <NotepadPlus> | |
| <UserLang name="Golang" ext="go" udlVersion="2.1"> | |
| <!-- | |
| NPP Syntax Highlight for Go | |
| using most used color in NPP for Golang. | |
| Author: blinksmith Version: 0.1.2 | |
| Last tested in Notepad++ v6.9 | |
| Easy Install : | |
| Go to [Language] -> [Define your language...] -> [Import]. Import this file and restart NPP. |
This file contains hidden or 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
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
This file contains hidden or 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
| INFO amd64-host : Portage 2.1.12.2 (releases/10.0, gcc-4.6.3, glibc-2.15-r3, 3.10.11-stable x86_64) | |
| INFO amd64-host : ================================================================= | |
| INFO amd64-host : System uname: Linux-3.10.11-stable-x86_64-Intel-R-_Core-TM-_i7-3770_CPU_@_3.40GHz-with-gentoo-73.0.0 | |
| INFO amd64-host : KiB Swap: 7842812 total, 7842812 free | |
| INFO amd64-host : Timestamp of tree: Unknown | |
| INFO amd64-host : ld GNU ld (GNU Binutils) 2.23.1 | |
| INFO amd64-host : ccache version 3.1.6 [disabled] | |
| INFO amd64-host : app-shells/bash: 4.2_p20 | |
| INFO amd64-host : dev-lang/python: 2.7.5-r2::coreos | |
| INFO amd64-host : dev-util/ccache: 3.1.6 |
This file contains hidden or 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 | |
| mkdir /tmp/curl-ca-bundle | |
| cd /tmp/curl-ca-bundle | |
| wget http://curl.haxx.se/download/curl-7.22.0.tar.bz2 | |
| tar xzf curl-7.22.0.tar.bz2 | |
| cd curl-7.22.0/lib/ | |
| ./mk-ca-bundle.pl | |
| if [ ! -d /usr/share/curl/ ]; then | |
| sudo mkdir -p /usr/share/curl/ | |
| else |
This file contains hidden or 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
| [alias] | |
| co = checkout | |
| ci = commit | |
| st = status | |
| br = branch | |
| cp = cherry-pick | |
| hist = log --pretty=format:\"%Cblue%h%Creset %ad %Cgreen%s %Cred%an%n%d\" --graph --date=rfc | |
| glog = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
| ref = log -n 1 --pretty=format:%h -- |
NewerOlder