dotfiles/dot_zsh_functions

207 lines
6.3 KiB
Plaintext
Raw Normal View History

2019-03-01 08:17:42 +00:00
function google() {
open -na "Google Chrome" --args "https://www.google.com/search?q=$*"
}
function stackoverflow() {
open -na "Google Chrome" --args "https://www.google.com/search?q=site:stackoverflow.com $*"
}
function github() {
open -na "Google Chrome" --args "https://github.com/search?q=$*"
}
function hacker() {
open -na "Google Chrome" --args "https://hn.algolia.com/?sort=byDate&query=$*"
}
function gmail() {
open -na "Google Chrome" --args "https://mail.google.com/mail/u/0"
}
function gmail2() {
open -na "Google Chrome" --args "https://mail.google.com/mail/u/1"
}
function cicd() {
open -na "Google Chrome" --args "https://issues.collibra.com/secure/RapidBoard.jspa?rapidView=457&view=planning.nodetail"
2019-03-01 08:17:42 +00:00
}
function issues() {
jira issue jql "status = Open AND text ~ \"$*\" ORDER BY Created DESC"
2019-03-01 08:17:42 +00:00
}
2019-03-01 08:28:18 +00:00
function calendar() {
open -na "Google Chrome" --args "https://calendar.google.com/calendar/r?tab=mc"
}
2019-03-01 08:51:19 +00:00
function asana() {
open -na "Google Chrome" --args "https://app.asana.com"
}
2019-07-18 10:03:52 +00:00
function bookmarks() {
open -na "Google Chrome" --args "https://github.com/MorganGeek/bookmarks/blob/master/README.md"
}
function spotify() {
open -na "Google Chrome" --args "https://open.spotify.com/search/results/$*"
}
function lob() {
open -na "Google Chrome" --args "https://lobste.rs"
}
2019-07-22 16:27:08 +00:00
function logtalk() {
path_swilgt=$(find /usr/local/Cellar/logtalk -name "*swilgt.sh" 2>/dev/null)
sh "$path_swilgt"
}
2019-07-23 12:29:00 +00:00
function archive() {
open -na "Google Chrome" --args "https://web.archive.org/web/*/$*"
}
2019-07-25 06:10:40 +00:00
function git_listobjectsbysize() {
tempFile=$(mktemp)
IFS=$'\n'
for commitSHA1 in $(git rev-list --all); do
2019-10-13 11:24:34 +00:00
git ls-tree -r --long "$commitSHA1" >>"$tempFile"
2019-07-25 06:10:40 +00:00
done
# sort files by SHA1, de-dupe list and finally re-sort by filesize
sort --key 3 "$tempFile" | \
2019-10-13 11:24:34 +00:00
uniq | \
sort --key 4 --numeric-sort --reverse
2019-07-25 06:10:40 +00:00
# remove temp file
rm -f "$tempFile"
}
function top_commands() {
2019-07-25 07:20:12 +00:00
history | cat | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a; }' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n50
2019-07-25 06:10:40 +00:00
}
function top_commands_full() {
2019-07-25 07:20:12 +00:00
history | cat | sed 's/^[0-9 TAB]*//g' | awk '{CMD[$0]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "%\t" a; }' | sort -nr | nl | head -n50
2019-07-25 06:10:40 +00:00
}
2019-07-31 11:28:08 +00:00
function istherenewissues() {
LASTISSUE=$(newissues | sed $'s,\x1b\\[[0-9;]*[a-zA-Z],,g' | awk 'FNR==2{print $2}')
2019-07-31 11:28:08 +00:00
if [[ -f ".newjiraissue" ]]
then
2019-10-13 11:24:34 +00:00
previous_jira_issue=$(cat ".newjiraissue" | sed $'s,\x1b\\[[0-9;]*[a-zA-Z],,g') # the sed part is for removing output colors
if [ "$LASTISSUE" != "$previous_jira_issue" ]; then
newissues
else
echo "no new issue"
fi
2019-07-31 11:28:08 +00:00
fi
echo "$LASTISSUE" > .newjiraissue
}
function aboutpage() {
year=$(echo "$*" | egrep -Eo '\b[[:digit:]]{4}\b' | head -n1)
2019-08-05 10:56:04 +00:00
if [ -z "$year" ]
then
2019-10-13 11:24:34 +00:00
year=$(curl -sSL "$*" | tr '<' '\r' | \egrep -i "date|datetime" -A 1 | \grep -Eo '\b[[:digit:]]{4}\b' | head -n1)
2019-08-05 10:56:04 +00:00
fi
2019-10-12 14:19:10 +00:00
author=$(curl -sSL "$*" | tr '<' '\r' | \egrep -i "author" -A 1 | \grep -Eo '([A-Z][A-Za-z]+\s([A-Za-z ]+)*)' | head -n1)
title=$(curl -sSL "$*" | tr '<' '<\n' | \grep title -A 1 | head -n1 | sed -E 's/.*<title>(.*)<\/title>.*/\1/' | sed "s/ [^[:alnum:]]*$author//")
yearint=$(($year + 0))
currentyear=$(echo `date +"%Y"`)
if [ ! -z "$author" ]
then
2019-10-13 11:24:34 +00:00
echo "by $author"
fi
if [ ! -z "$title" ]
then
2019-10-13 11:24:34 +00:00
echo "-> $title"
fi
if [[ $yearint -ge 1970 && $yearint -le $currentyear ]]
then
2019-10-13 11:24:34 +00:00
echo "$yearint"
fi
if [ ! -z "$title" ] && [ ! -z "$author" ] && [[ $yearint -ge 1970 && $yearint -le $currentyear ]]; then
2019-10-13 11:24:34 +00:00
echo "[$author]($*) - ($yearint) $title"
fi
}
# Extract a column from a tabular output
# via https://blog.developer.atlassian.com/ten-tips-for-wonderful-bash-productivity/
function col() {
awk -v col=$1 '{print $col}'
}
# Skip first x words in line
# via https://blog.developer.atlassian.com/ten-tips-for-wonderful-bash-productivity/
function skip {
n=$(($1 + 1))
cut -d' ' -f$n-
}
2019-08-08 12:35:18 +00:00
2019-09-13 13:42:35 +00:00
# Unique lines of code
# Via https://text.causal.agency/004-uloc.txt
function uloc {
find . -type f \( \
2019-10-13 11:24:34 +00:00
-name '*.py' \
-o -name '*.rb' \
-o -name '*.go' \
-o -name '*.java' \
-o -name '*.c' -o -name '*.h' \
-o -name '*.js' \
\) -exec \cat \{\} \; | sed -e 's/^[ \t]*//;s/[ \t]*$//' | sort -u | wc -l
2019-09-13 13:42:35 +00:00
}
2019-08-08 12:35:18 +00:00
# Find files bigger than X size and sort them by size
function biggerthan() {
find . -size "+$*" -type f -print0 | xargs -0 ls -Ssh | sort -z
}
2019-08-08 18:11:20 +00:00
# To automatically ls when changing directory
function cd() {
2019-10-13 11:24:34 +00:00
builtin cd "$@" && ls -latr
2019-08-08 18:11:20 +00:00
}
2019-08-16 12:52:59 +00:00
function mouse() {
2019-10-13 11:24:34 +00:00
case "$(uname -s)" in
Darwin)
sh ~/.scripts/mouse_bluetooth.sh
;;
esac
2019-08-16 12:52:59 +00:00
}
function meteo() {
curl "fr.wttr.in/$*"
}
function how_in() {
2019-10-13 11:24:34 +00:00
where="$1"; shift
IFS=+ curl "cht.sh/${where}/$*"
}
function rate() {
curl "http://rate.sx/$*"
}
2019-09-02 14:35:59 +00:00
transfer() {
# check arguments
if [ $# -eq 0 ];
then
echo "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"
return 1
fi
# get temporarily filename, output is written to this file show progress can be showed
tmpfile=$( mktemp -t transferXXX )
# upload stdin or file
file=$1
if tty -s;
then
basefile=$(basename "$file" | sed -e 's/[^a-zA-Z0-9._-]/-/g')
if [ ! -e $file ];
then
echo "File $file doesn't exists."
return 1
fi
2019-09-02 14:35:59 +00:00
if [ -d $file ];
then
# zip directory and transfer
zipfile=$( mktemp -t transferXXX.zip )
cd $(dirname $file) && zip -r -q - $(basename $file) >> $zipfile
curl --progress-bar --upload-file "$zipfile" "https://transfer.sh/$basefile.zip" >> $tmpfile
rm -f $zipfile
else
# transfer file
curl --progress-bar --upload-file "$file" "https://transfer.sh/$basefile" >> $tmpfile
fi
else
# transfer pipe
curl --progress-bar --upload-file "-" "https://transfer.sh/$file" >> $tmpfile
fi
# cat output link
cat $tmpfile
# cleanup
rm -f $tmpfile
}
2019-09-30 11:21:18 +00:00
# Where is a function defined?
function whichfunc() {
2019-10-13 11:24:34 +00:00
whence -v $1
type -a $1
2019-09-30 11:21:18 +00:00
}