brew cask install boot2docker
boot2docker init
boot2docker up
boot2docker ssh
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
| input { | |
| syslog { | |
| } | |
| } | |
| output { | |
| stdout { | |
| codec => json | |
| } | |
| } |
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
| Ventrilo Public Server Software License, Version 3.0.0 | |
| THIS SOFTWARE LICENSE AGREEMENT (the "Agreement') is a legal agreement | |
| between you (either an individual or single entity) and Flagship Industries, Inc. | |
| ("Flagship") for the software identified above. By installing, copying, downloading, | |
| accessing or otherwise using the software or its documentation, you agree to be bound | |
| by the terms of this Agreement. If you do not agree to the terms of this Agreement, do | |
| not install or use the software or its documentation. | |
| COPYING OF THIS COMPUTER PROGRAM OR ITS DOCUMENTATION EXCEPT |
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
| $ LFM_ROOT=http://ws.audioscrobbler.com/2.0/ | |
| $ ARTIST="Rise Against" | |
| $ AGENT=ShaneSveller | |
| $ API_KEY=CHANGEME | |
| $ http GET $LFM_ROOT method==artist.getsimilar artist=="$ARTIST" api_key==$API_KEY format==json User-Agent:$AGENT | jq '.similarartists.artist[].name' |
I hereby claim:
- I am shanesveller on github.
- I am shanesveller (https://keybase.io/shanesveller) on keybase.
- I have a public key whose fingerprint is 13C3 4F6E BC0B 3DC9 014E CD93 50F5 1F9A EC10 6145
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
| require 'formula' | |
| class Serf < Formula | |
| homepage 'http://www.serfdom.io' | |
| version '0.5.0' | |
| depends_on :arch => :intel | |
| if Hardware.is_64_bit? | |
| url 'https://dl.bintray.com/mitchellh/serf/0.5.0_darwin_amd64.zip' |
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
| recipes: | |
| - core | |
| - init | |
| prefs: | |
| :database: postgresql | |
| :dev_webserver: webrick | |
| :prod_webserver: unicorn | |
| :templates: haml | |
| :unit_test: rspec |
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
| Noncombat logging enabled | |
| Basic globals: | |
| Development.Documentation | |
| Provide documentation on items in the addon environment. Called with no parameters, it returns a table listing all documentation. Can provide both human-readable and computer-readable documentation. | |
| documentables = Development.Documentation() -- table <- void | |
| documentation = Development.Documentation(item) -- string <- variant | |
| documentation = Development.Documentation(item, parseable = false) -- string <- variant, boolean | |
| documentationTable = Development.Documentation(item, parseable = true) -- table <- variant, boolean | |
| Parameters: | |
| parseable: Whether to return in a computer-readable format, as opposed to the normal human-readable format. |
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
| source 'http://rubygems.org' | |
| gem 'rails', '3.0.5' | |
| # Bundle edge Rails instead: | |
| # gem 'rails', :git => 'git://github.com/rails/rails.git' | |
| gem 'pg' | |
| # Use unicorn as the web server |
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
| -- Help me Obi-wan! | |
| -- Also, Notepad++ still sucks, but my Mac Mini is powered off while I get ready to raid tonight | |
| for bagId=1,NUM_BAG_SLOTS do | |
| -- items[bagId] = {} | |
| for slotId=1,GetContainerNumSlots(bagId) do | |
| local link = GetContainerItemLink(bagId, slotId) | |
| if link then | |
| local _, _, quality, itemLevel, _, itemType = GetItemInfo(link) | |
| -- link_FindSearchInTooltip was renamed in a recent push |