- github.com/andxyz/dream-of-electric-bulls
- github.com/andxyz/bull-nightmare
I’m enjoying reading neuromancer again.
“You Know that Dixie Flatline’s dead?”
He nodded. “Heart, I heard.”
“You’ll be working with his construct.” She smiled. “Taught you the ropes, huh? Him and Quine. I know Quine, by the way. Real asshole.”
I ended up using http://wp-cli.org to make my life easier
wp search-replace 'community.mydomain.com' 'community.mydomain.dev' --network --dry-run
add urlize to my list of extensions for Markdown preview (when I use "Markdown Preview: Python Markdown: Preview in Browser")
curl follows the redirect and saves the file to the current folder
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/Markdown\ Preview/markdown/extensions
curl -L https://github.com/r0wb0t/markdown-urlize/blob/master/urlize.py?raw=true -o ./urlize.py
sudo python2.6 -m compileall .
curl https://raw.github.com/r0wb0t/markdown-urlize/master/urlize.py > ~/Desktop/urlize.py mv ~/Desktop/urlize.py ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Markdown\ Preview/markdown/extensions/urlize.py
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Markdown\ Preview/markdown/extensions
sudo which python2.7
-m compileall .
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>background</key> | |
<data> | |
BAtzdHJlYW10eXBlZIHoA4QBQISEhAdOU0NvbG9yAISECE5TT2JqZWN0AIWEAWMChARm | |
ZmZmAQEBg0jhej+G | |
</data> | |
<key>border</key> |
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |
module SearchApp | |
class ElasticSearchClient | |
def self.production_client | |
Elasticsearch::Client.new | |
end | |
def self.debug_client | |
@client = Elasticsearch::Client.new log: true | |
@client.transport.logger = Logger.new($stdout) |
#!/usr/bin/env bash | |
curl -s -H 'Accept: application/vnd.github.drax-preview+json' \ | |
https://api.github.com/orgs/scoremedia/repos?per_page=100 | \ | |
grep -A1 '"license"' | grep '"key"' | cut -d'"' -f4 | \ | |
sort | uniq -c | |
# 5 apache-2.0 | |
# 1 bsd-3-clause | |
# 2 cc0-1.0 |
#!/usr/bin/env ruby | |
# Shows the jira tickets and their summary for git branches | |
# see http://cl.ly/image/0v3I3A3D1W3P/Image%202015-09-21%20at%202.26.13%20PM.png | |
# | |
# example usage: | |
# ruby -W0 jira-sickness.rb | |
# or | |
# ./jira-sickness.rb | |
## Make sure to export these variables in the shell for yourself |