changed stuff
This commit is contained in:
parent
dfa1a7a28b
commit
61693e1c41
5 changed files with 1 additions and 140 deletions
24
bin/caniuse
24
bin/caniuse
|
@ -1,24 +0,0 @@
|
||||||
# CanIUse.com Command Line Search Utility
|
|
||||||
# Michael Wales, http://github.com/walesmd
|
|
||||||
#
|
|
||||||
# A very basic bash function that quickly searches http://caniuse.com/
|
|
||||||
#
|
|
||||||
# Examples:
|
|
||||||
# caniuse
|
|
||||||
# caniuse border-radius
|
|
||||||
# caniuse "alpha transparency" counters "canvas drawings" html svg
|
|
||||||
|
|
||||||
caniuse() {
|
|
||||||
local domain="http://caniuse.com/"
|
|
||||||
local query
|
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
|
||||||
open ${domain}
|
|
||||||
else
|
|
||||||
for term in "$@"; do
|
|
||||||
query=$(python -c "import sys, urllib as ul; print ul.quote('${term}');")
|
|
||||||
open "${domain}#search=${query}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
32
bin/license
32
bin/license
|
@ -1,32 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# Usage: license
|
|
||||||
# Prints an MIT license appropriate for totin' around.
|
|
||||||
#
|
|
||||||
# $ license > COPYING
|
|
||||||
#
|
|
||||||
# Original version by Chris Wanstrath:
|
|
||||||
# http://gist.github.com/287717
|
|
||||||
exec sh -c "tail -n +$(($LINENO + 2)) < $0 | sed s/DATE/$(date +%Y)/"
|
|
||||||
|
|
||||||
Copyright (c) DATE Nikolas Weger <http://eeleater.org>
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person ob-
|
|
||||||
taining a copy of this software and associated documentation
|
|
||||||
files (the "Software"), to deal in the Software without restric-
|
|
||||||
tion, including without limitation the rights to use, copy, modi-
|
|
||||||
fy, merge, publish, distribute, sublicense, and/or sell copies of
|
|
||||||
the Software, and to permit persons to whom the Software is fur-
|
|
||||||
nished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
||||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONIN-
|
|
||||||
FRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
||||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
||||||
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|
52
bin/mancx
52
bin/mancx
|
@ -1,52 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#/ Usage: man.cx [<section>] <topic>...
|
|
||||||
#/ Open manpage <topic> on http://man.cx. When <section> is given, it
|
|
||||||
#/ must start with a numeric. Multiple <topic>s may be specified.
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Open the cowsay(1) and wall(1) manpages:
|
|
||||||
# $ man.cx cowsay wall
|
|
||||||
#
|
|
||||||
# Open the 1posix section sh, command, and type manpages:
|
|
||||||
# $ man.cx 1posix sh command type
|
|
||||||
|
|
||||||
# Command to use when opening URLs. Use the first one found on
|
|
||||||
# PATH, unless the BROWSER environment variable is already set.
|
|
||||||
: ${BROWSER:=$(
|
|
||||||
for c in xdg-open open firefox
|
|
||||||
do command -v $c && break
|
|
||||||
done
|
|
||||||
)}
|
|
||||||
|
|
||||||
# The man.cx root URL
|
|
||||||
MANCX_URL="http://man.cx"
|
|
||||||
|
|
||||||
# Write usage and bail out with no args or with --help.
|
|
||||||
test $# -eq 0 -o $(expr "$*" : ".*--help") -ne 0 && {
|
|
||||||
grep ^#/ < $0 |
|
|
||||||
cut -c4-
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
|
|
||||||
# Bail out if we couldn't find a browser.
|
|
||||||
test -z "$BROWSER" && {
|
|
||||||
echo "$(basename $0): BROWSER not set and no opening program found" 2>&1
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# When the first arg starts with a numeric, its the <section>.
|
|
||||||
section=
|
|
||||||
case "$1" in [0-9]*)
|
|
||||||
section="($1)"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Run over remaining arguments and open in BROWSER.
|
|
||||||
for page in "$@"
|
|
||||||
do $BROWSER "${MANCX_URL}/${page}${section}"
|
|
||||||
done
|
|
||||||
|
|
||||||
# Copyright (c) 2010 by Ryan Tomayko <http://tomayko.com/about>
|
|
||||||
# This is Free Software distributed under the terms of the MIT license
|
|
||||||
|
|
26
bin/send
26
bin/send
|
@ -1,26 +0,0 @@
|
||||||
pull() {
|
|
||||||
if [ $# -eq 2 ]; then
|
|
||||||
git pull --rebase -q $2 `git rev-parse --abbrev-ref HEAD`
|
|
||||||
else
|
|
||||||
git pull --rebase -q origin `git rev-parse --abbrev-ref HEAD`
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
push() {
|
|
||||||
if [ $# -eq 2 ]; then
|
|
||||||
git push -q $2 `git rev-parse --abbrev-ref HEAD`
|
|
||||||
else
|
|
||||||
git push -q origin `git rev-parse --abbrev-ref HEAD`
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
send() {
|
|
||||||
git add "$(git rev-parse --show-toplevel)"
|
|
||||||
if [ $# -eq 1 ]; then
|
|
||||||
git commit -a -m "$1"
|
|
||||||
else
|
|
||||||
git commit -a -m "Updated Stuff"
|
|
||||||
fi
|
|
||||||
pull
|
|
||||||
push
|
|
||||||
}
|
|
|
@ -1,14 +1,9 @@
|
||||||
- clean: ['~']
|
- clean: ['~']
|
||||||
|
|
||||||
- link:
|
- link:
|
||||||
~/bin: bin
|
~/bin: sysadmin-util
|
||||||
~/utils: sysadmin-util
|
|
||||||
~/.fzf: lib/fzf
|
~/.fzf: lib/fzf
|
||||||
~/.nano: lib/nano/syntax
|
~/.nano: lib/nano/syntax
|
||||||
~/.nanorc: lib/nano/syntax/nanorc
|
~/.nanorc: lib/nano/syntax/nanorc
|
||||||
~/.gitconfig: git/gitconfig
|
~/.gitconfig: git/gitconfig
|
||||||
~/.zshrc: zsh/zshrc
|
~/.zshrc: zsh/zshrc
|
||||||
|
|
||||||
- shell:
|
|
||||||
- git update-submodules # after linking ~/.gitconfig
|
|
||||||
- ~/.fzf/install # install fzf
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue