I hereby claim:
- I am masih on github.
- I am masiih (https://keybase.io/masiih) on keybase.
- I have a public key ASCpO8NVqr4LoRPcL0vzkP_YYucLV_EE8LyHg4E3ZIaKdwo
To claim this, I am signing this object:
#!/bin/bash | |
set -e | |
go list -json -m all | jq -r 'select(.Indirect != true and .Main != true) | "\(.Path)@latest"' | while read -r pkg; do | |
go get "$pkg" | |
done | |
go mod tidy |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Script for installing xclip on systems without root access. | |
# xclip will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
XCLIP_VERSION=0.12 |
#!/usr/local/bin/fontforge | |
# Quick and dirty hack: converts a font to truetype (.ttf) | |
# Usage: | |
# for i in *.XXX; do fontforge -script tottf.sh $i; done | |
Print("Opening "+$1); | |
Open($1); | |
Print("Saving "+$1:r+".ttf"); | |
Generate($1:r+".ttf"); | |
Quit(0); |
#!/bin/bash | |
# Script for installing Fish Shell on systems without root access. | |
# Fish Shell will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
FISH_SHELL_VERSION=2.1.1 |
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.8 |
#!/bin/sh | |
M2_REPO=${HOME}/.m2 | |
OLDFILES=/tmp/deleted_artifacts.txt | |
AGE=195 | |
echo "==== To be Deleted Jars ====" >> ${OLDFILES} | |
find "${M2_REPO}" -path '*SNAPSHOT*' -name '*jar' -type f -atime +${AGE} >> ${OLDFILES} | |
echo "==== To be Deleted Wars/Ears ====" >> ${OLDFILES} |