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
git config --global alias.standup 'log --pretty="%ad %s" --since=yesterday --date="format:%m/%d %a %T%t" --author="Your Name"' |
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 | |
find node_modules/ -iname "package.json" -exec grep '"preinstall"\|"install"\|"postinstall"' {} \; -exec echo 'From: {}' \; -exec echo \; |
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
PS1="\[\e[30;43m\][\[\e[m\]\[\e[30;43m\]\T\[\e[m\]\[\e[30;43m\]]\[\e[m\]\[\e[30;42m\] \[\e[m\]\[\e[30;42m\]\u\[\e[m\]\[\e[30;42m\] \[\e[m\]\[\e[44m\]\w\[\e[m\]\[\e[41m\]\\$\[\e[m\] " |
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 | |
# Validate argument exists | |
if [ -z "$1" ] | |
then | |
echo "No command specified." | |
echo "Usage: loop-command (command)" | |
exit 1 | |
fi | |
# Get command from first argument |
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
.Text--debug { | |
padding: 5px; | |
color: #000 !important; | |
border: 1px dashed #000 !important; | |
background-color: #FC0 !important; | |
white-space: pre-line !important; | |
} |
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
BYxFgqWBwcM | |
BYxGykLF_y9 | |
iRyPdJSm-Z | |
zHuFCVIOsO | |
ilU45YSm1V |
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
/* | |
TITLE: | |
Them.js | |
VERSION: | |
0.1.0 (released 2017-10-03) | |
PURPOSE: | |
Replace gendered pronouns on web-pages with non-gendered versions in a non-intrusive way. | |
Not only do gendered pronouns subtly reinforce sexism and gender bias, I personally find that |
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
|| | |
2017-10-07 Heuristic, ordinary A* was far more effective than my sophisticated, physical, pathfinding algorithm. | |
2017-10-17 Unity3D: Flipper component with an "Exception list" was simple and way better than separating out components with a "Semantic Parent" component |
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
@keyframes seizure { | |
from {box-shadow: 0 0 0 4px #fd4b77,0 0 0 8px #fdf04b,0 0 0 12px #4bfdd0; } | |
20% {box-shadow: 0 0 0 4px #ffbd79,0 0 0 8px #fd4b77,0 0 0 12px #fdf04b; } | |
40% {box-shadow: 0 0 0 4px #514bfd,0 0 0 8px #ffbd79,0 0 0 12px #fd4b77; } | |
60% {box-shadow: 0 0 0 4px #f44bfd,0 0 0 8px #514bfd,0 0 0 12px #ffbd79; } | |
80% {box-shadow: 0 0 0 4px #4bfdd0,0 0 0 8px #f44bfd,0 0 0 12px #514bfd; } | |
to {box-shadow: 0 0 0 4px #fdf04b,0 0 0 8px #4bfdd0,0 0 0 12px #f44bfd; } | |
} | |
@keyframes throb { |
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
#!/usr/bin/env node | |
/* TV Renamer | |
Purpose: Rename files in a folder to the format of S01E01, S01E02, etc. | |
So that parsers like Sonarr can correctly identify them. The Episode number | |
is based on a natural sort of the files in the current directory. | |
Usage: tv-renamer | |
No parameters. The user is prompted for Season # and asked to confirm before | |
any files are renamed. |