This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created after reading http://xn--rpa.cc/irl/term.html | |
from time import sleep | |
def scroll( | |
width=20, | |
dots=5, | |
on_char="*", | |
off_char="-", | |
delay=0.05, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## tellme | |
# tellme displays a basic desktop notification using notify-send to be used when a long | |
# running task completes. It supports one optional argument, -l, which will show a "loud" | |
# notification. This depends on notify-send provided by libnotify. | |
# This script can be run to simply alert or to show the output of the commands: | |
# $ sleep 10 && tellme | |
# $ echo "I show on the notification" | tellme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
declare -a repo_names=("repo" "names" "here") | |
for r in ${repo_names[@]}; do | |
echo "-----------------------" | |
echo "$r:" | |
if [ ! -s $r ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### github_heatmap_writer.py | |
# | |
# Overview: | |
# This script will let you write short phrases on your Github contributions | |
# heatmap on your profile for a particular year. It does this by modifying the | |
# commit date/time. | |
# | |
# Usage: | |
# - Make a Github repo (public or private) and clone it locally. | |
# - Modify this script to specify what year you want to display on and what |