These services are used to control network resources
IAM - Manages multiple users across one AWS account
Direct Connect – Connects AWS to Data Centers
Storage Gateway - Provides direct access to storage systems
<?php | |
do { | |
_logt("Start Filter Tag: $tag"); | |
_logup(); | |
$t_count = 1; | |
foreach ( (array) current($wp_filter[$tag]) as $the_ ) { | |
//$func = $the_['function']; | |
//if (is_string($func)) _log(" " . $func); | |
//else _log(' *** ' . get_class($func[0]) . ' ' . $func[1]); | |
} |
<?php | |
do { | |
_logt("Start Action Tag: $tag"); | |
_logup(); | |
$t_count = 1; | |
foreach ( (array) current($wp_filter[$tag]) as $the_ ) { | |
//$func = $the_['function']; | |
//if (is_string($func)) _log(" " . $func); | |
//else _log(' *** ' . get_class($func[0]) . ' ' . $func[1]); | |
} |
require 'pry' | |
File.open("out") do |file| | |
cur_file = nil | |
diff_files = [] | |
only_files = [] | |
bleh = [] | |
file.each_line do |line| | |
wtf = nil | |
begin |
state = :init | |
n = 0 | |
STDIN.each_line do |line| | |
n += 1 | |
if state == :init | |
if line =~ /Creating default object from empty value/ | |
state = :stack | |
next | |
end | |
elsif state == :stack |
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'slim' | |
require 'slim/command' | |
require 'pry' | |
def dust(tag, tag_end = nil) | |
ret = "{##{tag}}" | |
ret += yield |
require 'httpclient' | |
cln = HTTPClient.new | |
cln.get_content('http://ipv4.download.thinkbroadband.com/5MB.zip') do |s| | |
puts 1 | |
end | |
=begin | |
# Staging Module | |
Allows for the configuration of execution stages, and provides code to be executed in | |
that stage. Node, code is executed in the current context. | |
This is particularly useful for tasks that need to be performed at specific spots in | |
the loading process. May also be useful for cleanup code. | |
## Usage | |
binding.stage :name do |
Lex Config for C - http://www.quut.com/c/ANSI-C-grammar-l.html | |
Bison Config for C - http://www.quut.com/c/ANSI-C-grammar-y.html | |
ECMA Spec - http://www.ecma-international.org/ecma-262/5.1/#contents | |
# Organization | |
# Statements (Executes an operation) | |
# Expressions (Evaluates to a value) | |
js = <<js | |
function hello() { |
# Extracts the SourceElementsNode within the function bodyof the | |
def extract_context() | |
@parser.extract({ | |
get: :value, | |
type: Array, | |
call: { | |
get: :first, | |
type: ExpressionStatementNode, | |
call: { | |
get: :value, |