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
| ## How to change your handle in BlueSky on your PDS to match your domain | |
| # Instead of john.example.me you can have example.me | |
| # You must first create the john.example.me account to then update it's handle | |
| # | |
| # (I was having a lot of trouble doing this via the web UI) | |
| # | |
| # | |
| # Request a new session | |
| # Take note of accessJwt you'll need it for the next step |
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
| Find: enum (\w+): ({[^\}]*}) | |
| Replace: enum :$1, $2 |
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 phoozle on github. | |
| * I am phoozle (https://keybase.io/phoozle) on keybase. | |
| * I have a public key ASBtMGCqEFQGw9kKU8i9XxZjHOlgFzyPy-TVCVRPSZ6rEgo | |
| 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
| #!/usr/bin/env ruby | |
| require 'mechanize' | |
| require 'csv' | |
| require 'fileutils' | |
| google_allowing_us = true | |
| SOURCE_CSV = ARGV[0] || "./wineries.csv" | |
| def get_facebook(winery) |
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
| # /etc/bash_completion.d/unicorn_configs | |
| _unicorn_configs() { | |
| local prev cur | |
| cur="${COMP_WORDS[COMP_CWORD]}" | |
| prev="${COMP_WORDS[COMP_CWORD-1]}" | |
| configs=`ls /etc/unicorn | sed 's/.conf//g'` | |
| COMPREPLY=() | |
| cmds=(start stop restart) | |
| if [[ ${cmds[*]} =~ ${prev} ]]; then |