Put flip
somewhere in your $PATH
and chmod a+x
it.
Copy fuck
into ~/.bashrc
.
<<>> DiG 9.9.2-P2 <<>> blackarch.org | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 46325 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1 | |
;; OPT PSEUDOSECTION: | |
; EDNS: version: 0, flags:; udp: 4000 | |
;; QUESTION SECTION: | |
;blackarch.org. IN A |
for i in `cat tmp`; do | |
git submodule add https://github.com/$i bundle/$(echo $i | cut -d "/" -f2); | |
git submodule init; | |
git submodule update; | |
cd bundle/$(echo $i | cut -d "/" -f2); | |
git checkout master; | |
git pull master; | |
cd ../..; | |
git add bundle/$(echo $i | cut -d "/" -f2); | |
git commit -m "Added submodule: $(echo $i | cut -d "/" -f2)"; |
for i in `cat tmp`; do | |
PKGNAME=$(echo $i | cut -d "/" -f2) | |
mkdir -p bundle/$PKGNAME | |
wget -q https://github.com/$i/archive/master.zip -O $PKGNAME.zip >/dev/null | |
unzip -qq $PKGNAME.zip -d bundle/$PKGNAME | |
mv bundle/$PKGNAME/*/* bundle/$PKGNAME | |
done | |
find . -type d -empty -exec rmdir {} \; |
grep "NeoBundle '" .vimrc | awk '{print $2}' | sed -e "s/'//g" -e "s/,//g" > tmp |
" Pinkie saver | |
map ; : | |
map : ; | |
" Misc | |
set nohud | |
set nosmoothscroll | |
set typelinkhints | |
let defaultengine = "duckduckgo" | |
let barposition = "bottom" | |
let locale = "uk" |
I hereby claim:
To claim this, I am signing this object:
orig = "These are the items you will lose in the trade."; | |
var total = 0; | |
document.querySelector(".offerheader").childNodes.item(4).data = orig + " Total: " + total; | |
var observer = new MutationObserver(function(mutations) { | |
mutations.forEach(function(mutation) { | |
var url = document.querySelector(".nextTarget").childNodes.item(1).innerHTML.split(" ").slice(2); | |
if (url.length != 0) { | |
total = Number(document.querySelector(".nextTarget").id.split("_").slice(2)) + 1; | |
document.querySelector(".offerheader").childNodes.item(4).data = orig + " Total: " + total; | |
} |
sed -i 's/.*\/.*/[&](http:\/\/github.com\/&)/g' README.md |
#!/bin/bash | |
# git pre-commit hook that runs an clang-format stylecheck. | |
# Features: | |
# - abort commit when commit does not comply with the style guidelines | |
# - create a patch of the proposed style changes | |
# modifications for clang-format by [email protected] | |
# This file is part of a set of unofficial pre-commit hooks available | |
# at github. |