I hereby claim:
- I am adrigrillo on github.
- I am adrigrillo (https://keybase.io/adrigrillo) on keybase.
- I have a public key ASBE2EEnM4w4-0Kl471X2nvy9qs6IvHfeCs56F7u0URPNQo
To claim this, I am signing this object:
swipe: | |
3: | |
left: | |
command: "xdotool key alt+Right" # History forward | |
right: | |
command: "xdotool key alt+Left" # History back | |
up: | |
command: "xdotool key super" # Activity | |
down: | |
command: "xdotool key alt+Tab" # Next Activity |
for file in *.heic | |
do | |
heif-convert $file ${file/%.heic/.jpg} | |
done | |
for file in *.HEIC | |
do | |
heif-convert $file ${file/%.HEIC/.jpg} | |
done |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# | |
# Check if port is available | |
get_available_port() { | |
max_port=${2} | |
for (( port=${1} ; port <= max_port; port++ )); do | |
netstat -tulan | grep ${port} >> /dev/null | |
if [[ ${?} -gt 0 ]]; then | |
export PORT=${port} |
find . -type d | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/" | |
# If you want to print all the folders and files, use this command: | |
# find | sed 's|[^/]*/|- |g' |