blob: 7dd4fa0a8a8ed533b008734bad1601866783b8a6 (
plain) (
tree)
|
|
export CT_ALLOW_BUILD_AS_ROOT_SURE=1
function register () {
n=`curl https://www.register.si | grep nonce | head -n 1 | cut -d\" -f8`
curl https://www.register.si/wp-admin/admin-ajax.php -X POST --data-raw "_ajax_nonce=$n&action=get_whois_data&domain=$1" 2> /dev/null | grep "<td>" | sed "s/^\s*//g" | cut -d\< -f2 | cut -d\> -f2 | grep "[[:print:]]"
}
alias r=R
alias R="R --quiet"
alias jupyter-server="jupyter-server --allow-root"
alias jupyter-notebook="jupyter-notebook --allow-root"
function kladivo () {
iptables -A INPUT -s $1 -j DROP
}
function c () {
gcc -g -Wall -Wextra -pedantic -Wformat -Wformat-security $@ -lm
}
alias pmbootstrap="pmbootstrap --as-root"
function upload () {
chmod 0664 "$1"
sftp -b- upload@4a.si <<< "put '$1' www/`[ '$2'x = x ] && echo $1 || echo $2`"
}
HISTCONTORL=ignoreboth
shopt -s histappend
HISTSIZE=100000000
HISTFILESIZE=1000000000
function upload () {
chmod 0644 "$1"
d=`[ '$2'x = x ] && echo $1 || echo $2`
sftp -b- upload@upload <<< "put '$1' www/$d"
echo https://upload.sijanec.eu./$d | xclip
}
function mcd () {
mkdir -p $@ && cd $@
}
function ocd () {
cd $OLDPWD
}
alias gdb="gdb -q"
alias x11vnc="x11vnc -repeat -multiptr"
alias digs="dig +nocomments +noquestion +nostats +norrcomments +nocmd"
alias nc="nc -v"
alias m=make
export EDITOR=/usr/bin/vim
ulimit -c unlimited # core dumps
|