Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
Python 2.x
$ python -m SimpleHTTPServer 8000
# Step 1: Set priveleges | |
$ sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -allowAccessFor -allUsers -privs -all | |
Starting... | |
Setting allow all users to YES. | |
Setting all users privileges to 1073742079. | |
Done. | |
# Step 2: Allow VNC clients |
#!/usr/bin/env bash | |
file=$1 | |
time1=$2 | |
time2=$3 | |
echo "Two commands" | |
time ffmpeg -v quiet -y -i ${file} -vcodec copy -acodec copy -ss 00:00:00 -t ${time1} -sn part_1_${file} | |
time ffmpeg -v quiet -y -i ${file} -vcodec copy -acodec copy -ss ${time1} -t ${time2} -sn part_2_${file} | |
# see https://stackoverflow.com/questions/5651654/ffmpeg-how-to-split-video-efficiently |
#!/usr/bin/env bash | |
if [[ -z "$1" || -z "$2" ]]; then | |
echo usage: | |
echo " git pushfull <remotename_orig> <remotename_dest>" | |
exit 1 | |
fi | |
git push "$2" refs/remotes/$1/*:refs/heads/* |
# List ignored files | |
git ls-files . --ignored --exclude-standard --others | |
# List untracked files | |
git ls-files . --exclude-standard --others | |
# https://stackoverflow.com/questions/3538144/how-do-you-git-show-untracked-files-that-do-not-exist-in-gitignore |
ssh -p33 -D8080 -q -C -N $1 | |
/opt/google/chrome/chrome --profile-directory=Profile 3 --proxy-server=socks5://localhost:8080 |
# curl -L https://bit.ly/2RiJ3j0 | bash -s 1.0.2g myfile.enc myfile | |
# available versions: https://cloud.docker.com/u/mauricioprado00/repository/docker/mauricioprado00/openssl | |
# 1.0.2g | |
# 1.1.0g | |
version=${1} | |
input=${2:-.} | |
output=${3:-.} | |
docker run --rm -ti \ |
# build docker images for all openssl "old" versions | |
# download all versions | |
x_subversions=$(curl https://www.openssl.org/source/old/ | egrep -A20 'entry-content' | grep '<li>' | awk -F '"' '{print $2}') | |
for x_subversion in $x_subversions; do | |
echo retrieving subversions $x_subversion | |
# x_subversion=1.0.2 | |
x_versions=$(curl https://www.openssl.org/source/old/${x_subversion}/ | grep tar.gz | awk -F '"' '{print $2}') | |
for x_version in $x_versions; do |
ifconfig eth0 | grep -v inet6 | grep inet | awk '{ print $2 }' | sed 's#addr:##g' |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
# obtains debian packages | |
# Examples: | |
# gimp on current directory from debian 6 | |
# curl -L https://goo.gl/jruRgy | bash -s gimp | |
# gimp on directory gimp-install-dir | |
# curl -L https://goo.gl/jruRgy | bash -s gimp gimp-install-dir | |
# only partial package of gimp (/usr/bin) |