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
[2014-11-30 04:31:35 UTC] DEBUG: https://api.forecast.io/forecast/5537a6b7a8e2936dc7ced091b999d60a/40.5825021,-75.61498929999999 | |
[2014-11-30 04:31:36 UTC] ERROR: Lita::Handlers::ForecastIo crashed. The exception was: | |
Caught Encoding::CompatibilityError at '{"latitude":40.58250': incompatible encoding regexp match (ASCII-8BIT regexp with UTF-8 string) | |
Full backtrace: | |
/usr/share/ruby/gems/2.1/gems/json-1.8.1/lib/json/pure/parser.rb:242:in `rescue in parse_string' | |
/usr/share/ruby/gems/2.1/gems/json-1.8.1/lib/json/pure/parser.rb:213:in `parse_string' | |
/usr/share/ruby/gems/2.1/gems/json-1.8.1/lib/json/pure/parser.rb:257:in `parse_value' | |
/usr/share/ruby/gems/2.1/gems/json-1.8.1/lib/json/pure/parser.rb:121:in `parse' | |
/usr/share/ruby/gems/2.1/gems/json-1.8.1/lib/json/common.rb:155:in `parse' | |
/usr/share/ruby/gems/2.1/gems/json-1.8.1/lib/json/common.rb:334:in `load' |
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
{ | |
"kind"=>"youtube#searchListResponse", | |
"etag"=>"\"F9iA7pnxqNgrkOutjQAa9F2k8HY/oH7nBvh_m1zBgQ7egIpt7DYg4LM\"", | |
"nextPageToken"=>"CBkQAA", | |
"pageInfo"=>{ | |
"totalResults"=>1000000, | |
"resultsPerPage"=>25 | |
}, | |
"items"=>[ | |
{ |
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
fn main() { | |
struct Inches(i32); | |
let length = Inches(10); | |
let Inches(integer_length) = length; | |
println!("length is {} inches", integer_length); | |
} |
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
[ | |
{ | |
"timestamp": 1430179200, | |
"localTimestamp": 1430179200, | |
"issueTimestamp": 1430179200, | |
"fadedRating": 1, | |
"solidRating": 0, | |
"swell": { | |
"minBreakingHeight": 3, | |
"absMinBreakingHeight": 2.98, |
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
[12:19:39] c:/~ 👍 brew list | xargs brew info | grep '/usr/local/Cellar' | awk '{ print $4 }' | tr -d ')' | |
Error: No available formula for ponysay-tool | |
188K | |
132M | |
6.1M | |
5.8M | |
75M | |
7.0M | |
3.7M | |
3.1M |
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
ec2 = get_ec2(settings.aws_region, settings.aws_access_key, settings.aws_secret) | |
instances = ec2.describe_instances().data | |
instances.reservations.each do |reservation| | |
reservation.instances.each do |instance| | |
puts instance.instance_id | |
end | |
end |
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
docker-machine env dev | |
set -x DOCKER_TLS_VERIFY "1"; | |
set -x DOCKER_HOST "tcp://192.168.99.100:2376"; | |
set -x DOCKER_CERT_PATH "/Users/akreps/.docker/machine/machines/dev"; | |
set -x DOCKER_MACHINE_NAME "dev"; | |
# Run this command to configure your shell: | |
# eval (docker-machine env dev) |
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
│ Total items: 53852759size: 11.7 TiB │ |
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
checking for AOLserver support... no |
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/local/var/rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/lita-4.6.1/templates/plugin/gemspec.tt | |
Gem::Specification.new do |spec| | |
spec.name = '<%= config[:gem_name] %>' | |
spec.version = '0.0.0' | |
spec.authors = ['<%= config[:author] %>'] | |
spec.email = ['<%= config[:email] %>'] | |
spec.description = '' | |
spec.summary = '' | |
spec.homepage = 'https://github.com/onewheelskyward/lita-onewheel-' | |
spec.license = 'MIT' |