This file contains 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
Verifying my Blockstack ID is secured with the address 1KQSNyBarB9X9t71mQNqg3QYfvA7ZjBni6 https://explorer.blockstack.org/address/1KQSNyBarB9X9t71mQNqg3QYfvA7ZjBni6 |
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": "ec2:DescribeInstances", | |
"Resource": "*" | |
}, | |
{ | |
"Effect": "Allow", |
This file contains 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 'net/http' | |
require 'uri' | |
require 'json' | |
url = URI.parse("http://www.letsrevolutionizetesting.com/challenge") | |
for i in 1..100 | |
http = Net::HTTP.new(url.host, url.port) | |
req = Net::HTTP::Get.new(url.request_uri, {'Accept' => 'application/json'}) | |
response = http.request(req) | |
puts "Response #{response.code} #{response.message}: #{response.body}" |
This file contains 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
class barley_amount(Union): | |
pass | |
barley_amount._fields_ = [ | |
("barley_long", c_long), | |
("barley_int", c_int), |
This file contains 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
from ctypes import * | |
class barley_amount(Union): | |
_fields_ = [ | |
("barley_long", c_long), | |
("barley_int", c_int), |