- we destabilize ecosystems
- open areas for new growth
- like phosphorous plankton
- also talk about resources that we use that cannot be put back into the environment
- talk about our population's growing capacity
- water found on mars
| #!/bin/bash | |
| #one hour (in seconds) | |
| wait=$((60 * 60)) | |
| while true | |
| do | |
| dns=$(dig andykais.com +nostats +nocomments +nocmd) | |
| if [[ $dns == *"github"* ]] | |
| then |
| #!/bin/sh | |
| FORMAT=$(echo -e "\033[1;33m%w%f\033[0m written at $(date +'%r')") | |
| clear | |
| while true | |
| do | |
| clear\ | |
| && echo "[Running \"$@\" on files changes in $(pwd) at $(date +'%r')]"\ | |
| && echo ""\ | |
| && echo "$@" > /home/andrew/bin/data/lastroc.sh\ | |
| && bash /home/andrew/bin/data/lastroc.sh 0>/dev/null \ |
| #!/bin/bash | |
| comicdir=$1 | |
| if [ -d "$comicdir" ] | |
| then | |
| outname=$(echo $comicdir | sed -e 's/\///') | |
| outname=$(echo $outname | sed -e 's/\ /_/g') |
| #!/bin/bash | |
| case "$1" in | |
| "on") | |
| xset -dpms | |
| xset s noblank | |
| xset s off | |
| ;; | |
| "off") |
(essential are in bold)
Pick an area with as little light pollution as possible, including light you can see over the horizon from neighboring civilization.
| #blacklist top level folder | |
| /* | |
| #whitelist files & folders | |
| !.gitignore | |
| !README.md | |
| !.i3/ | |
| !.i3status.conf |
I hereby claim:
To claim this, I am signing this object:
| merge(A, []) -> {A, 0}; | |
| merge([], B) -> {B, 0}; | |
| merge([Ha|Ta], [Hb|Tb]) -> | |
| if | |
| Ha < Hb -> {MergedList, N}=merge(Ta, [Hb|Tb]), | |
| {[Ha | MergedList], N}; | |
| true -> {MergedList, N}=merge([Ha|Ta], Tb), | |
| {[Hb | MergedList], N + 1} | |
| end. |