# ./config.yml
nodes:
zero:
neither: {}
one:
Sure, I could talk a bit about this city's history and their lovely people, but let's face it. If you're going to Oaxaca there should be only three things you have to focus on:
- Its sublime food,
- the availablity of extraordinary mezcal for way less than 7usd, and
- how marvelously easy it becomes to take in the true beauty of this place when you've had enough of both.
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
#!/usr/bin/env ruby | |
# git tag -l => 0.0.0 | |
# version.rb patch => 0.0.1 | |
# version.rb minor => 0.1.0 | |
# version.rb major => 1.0.0 | |
increments = [:major, :minor, :patch] | |
increment = ARGV[0].to_sym | |
raise ArgumentError.new(increments.join(' ')) unless increments.include? increment |
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
require 'csv' | |
require 'json' | |
if ARGV.count == 0 | |
puts <<-USAGE | |
Finds uber phantom charges on amex CSV's by comparing them to your manually-scraped uber trips | |
\e[1mUsage\e[0m: | |
ruby #{$0} CSV TXT |
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
### Keybase proof | |
I hereby claim: | |
* I am unrob on github. | |
* I am robertohidalgo (https://keybase.io/robertohidalgo) on keybase. | |
* I have a public key ASCjWSrIWpW3v55p-zKG0UZFs7p86P-gYG9heaH1CweV7go | |
To claim this, I am signing this object: |
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 | |
# mkdir -p bin/hooks | |
# curl -v -L https://gist.github.com/unRob/f74e6f0bd224d30033370854b515ddef/raw/install-hooks.sh > bin/install-hooks | |
# chmod +x bin/install-hooks | |
# curl -v -L https://gist.github.com/unRob/f74e6f0bd224d30033370854b515ddef/raw/pre-commit.sh > bin/hooks/pre-commit | |
# chmod +x bin/hooks | |
# bin/install-hooks | |
# echo "Remember to delete unused hooks (or to suggest a good way to do so automatically)" | |
# exit on error |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/sh | |
export LIST="https://www.registry.mx/report/domain_deleted_list.xml" | |
export DOMAIN="SOMEDOMAIN.mx" | |
export HOOK="https://hooks.slack.com/services/SOME/TOKENS" | |
export PAYLOAD='payload={"channel": "#CHANNEL", "username": "domainbot", "text": "@here SOMEDOMAIN.mx disponible en <https://akky.mx|el peor registrar de la historia>", "icon_emoji": ":ghost:"}' | |
echo "Buscando $(date '+%Y-%m-%d %H:%M:%S')" | |
curl --silent $LIST | grep $DOMAIN && curl -XPOST --data-urlencode $PAYLOAD $HOOK |
NewerOlder