- Storyboard creator: https://www.storyboardthat.com
- Date poll: https://doodle.com
- Random name picker: https://www.classtools.net/random-name-picker
- 6 thinking hats template: https://www.storyboardthat.com/storyboards/nathanael-okhuysen/thinking-hat-template/copy
- Planning poker: https://www.planningpoker.com
- Virtual generic post-it board: http://www.ideaboardz.com
This file contains hidden or 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 | |
# Site Data scraper script | |
# | |
# USAGE: sd www.example.com | |
# | |
if [ -z $1 ]; then | |
echo Usage: $(basename $0) www.example.com | |
exit 1; |
This file contains hidden or 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 | |
if [ -z $1 ] || [ "$1" == "-h" ] || [ "$1" == "--help" ]; then | |
echo "Usage: "$(basename $0)" <url>" | |
echo | |
echo "This script finds all external scripts referred by <script> tags" | |
exit 1 | |
fi | |
curl -L -s "$1" | tr '\r\n\t' ' ' | sed $'s/\(<\/[^>]*>\)/\\1\\\n/g' | sed 's/^ *//;s/ *$//' | grep "^<script" | grep --color=always "src=[\"'][^\"']\+[\"']" | while read i; do echo -e $i"\n"; done |
This file contains hidden or 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
<html> | |
<body> | |
<!-- See live at https://codepen.io/paulera/pen/BPwPNw --> | |
<p class="clock" timezone="+2"></p> | |
<p class="clock" timezone="+4"></p> | |
<p class="clock" timezone="-7"></p> | |
<script> |
This file contains hidden or 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 | |
# Opens google chrome for using a socks5 proxy | |
# Hoe to opem a SOCKS5 proxy: | |
# ssh -o ServerAliveInterval=30 -D 3123 [email protected] | |
CHROME_BIN="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" | |
PORT=3123 | |
TMP_PROFILE_DIR="/tmp/proxyed-chrome-profile" |
This file contains hidden or 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 | |
# | |
# Usage: gitall status | |
# gitall fetch | |
# gitall checkout master | |
# gitall ...git parameters... | |
# | |
if [[ "$OSTYPE" =~ "darwin" ]]; then | |
# MAC |
Create bookmarks as per below to automate scrolling
Name | URL |
---|---|
slower | javascript:if (typeof window.scrollLines === 'undefined') { window.scrollLines = 1; } if (typeof window.scrollInterval === 'undefined') { window.scrollInterval = 1; } ; if (window.scrollLines > 1) { window.scrollLines--; window.scrollInterval = 1; } else { window.scrollLines = 1; window.scrollInterval += 25; }; clearInterval(window.scrollHandler) ; window.scrollHandler = setInterval(function() { window.scrollBy(0, window.scrollLines); }, window.scrollInterval ); window.scrollLines; window.scrollInterval; |
pause | javascript:clearInterval(window.scrollHandler); |
play | `javascript: if (typeof window.scrollLines === 'undefined') { window.scrollLines = 1; } ; if (typeof window.scrollInterval === 'undefined') { window.scrollInterval = 1; } ; clearInterval(window.scrollHandler) ; window.scrollHandler = setInterval(function() { window.scrollBy(0, window.scrollLines); }, window.scrollInt |
This file contains hidden or 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 | |
git1() { | |
STASH="gimme-cmd-stash-"$(date +"%s")i | |
git stash save $STASH | |
STASH_REF="$(git stash list | grep "$STASH" | awk -F: '{ print $1 }')" | |
git fetch && git checkout $1 && git pull | |
if [ "$STASH_REF" != "" ]; then | |
git stash pop "$STASH_REF" | |
else |
This file contains hidden or 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
<html> | |
<!-- See live at https://codepen.io/paulera/pen/ejGKEr --> | |
<head> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script> | |
<script> | |
/** | |
* Sum elements of an array up to the index provided. | |
*/ |