Content for https://github.com/gumatias/google-docs-table-factory
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
; Didn't looking on how to run it standalone, so it needs to run inside a REPL! | |
(defn repl [] | |
(let [result (eval (read-string (read-line)))] | |
(println result) | |
(recur))) |
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 ruby | |
def repl | |
input = gets.chomp | |
result = eval input | |
puts result | |
repl | |
end | |
repl |
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
find . -type f -name '*.js.coffee' -exec sed -i '' s#find#replace#g {} + |
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
// This is my task requested by mom every time we would go grocery shopping | |
function checkCookiePrice() { | |
var defer = $q.defer(); | |
setTimeout(function () { | |
// very random. I could only believe in God back then... | |
var random = Math.floor(Math.random() * 3); | |
if (random == 0) | |
// YES! |
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
PR_JIRA_ISSUE=`g s | cut -d '/' -f 2` | |
BRANCH_DESCRIPTION=`g s | cut -d '/' -f 3` | |
PR_TITLE="${BRANCH_DESCRIPTION//-/ }" | |
g pull-request -r "viewthespace/convertibles" -l "qa" -m "[$PR_JIRA_ISSUE] $PR_TITLE This PR will... @viewthespace/convertibles" -e |
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
alertWhenDone = function() { if($('.summary-message.running').length === 0) alert('Build is done') } | |
setInterval(alertWhenDone, 20*1000) |
Public content for La Cucaracha
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 zsh | |
################################################################################################################ | |
# | |
# This script will quickly set you up with Github Pages and jrnl to get you up and running journaling online for | |
# whatever your purpose is. | |
# | |
# How to run: `source one-step-to-journal.sh && bootstrap_github_journal_page` | |
# | |
# A few things to note: |
OlderNewer