I hereby claim:
- I am rossdakin on github.
- I am rossdakin (https://keybase.io/rossdakin) on keybase.
- I have a public key ASD4998oY5elvj-DHgIi3vKMmQRV1Qs0bEHg15dn7R-KuQo
To claim this, I am signing this object:
| <script src="https://newjersey.github.io/mixitup/dist/mixitup.min.js"></script> | |
| <script src="https://newjersey.github.io/mixitup-multifilter/dist/mixitup-multifilter.min.js"></script> | |
| <script> | |
| (function() { | |
| function slugify(str) { | |
| return str.replace(/\W/g, ''); | |
| } | |
| function makeClassName(dimensionName, dimensionValue) { |
| const BASE_URL = 'https://arresttrends.vera.org/'; | |
| const MAX_DEPTH = 2; | |
| const PARAMS = { | |
| AMOUNT: { | |
| name: 'amount', | |
| values: ['some', 'all'] | |
| }, | |
| DATASET: { | |
| name: 'dataset', |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| function pageFunction(context) { | |
| // called on every page the crawler visits, use it to extract data from it | |
| var $ = context.jQuery; | |
| var alerts = $('.important-content-container').map(function(i, div) { | |
| var $div = $(div); | |
| return { | |
| title: $div.find('h2').html().trim(), | |
| body: $div.find('p').map(function(i, p) { return $(p).html() }).toArray().join(' ') | |
| }; |
| # include <stdio.h> | |
| # include <string.h> | |
| void action (void); | |
| int validate (void); | |
| int main (void){ | |
| system ("cls"); | |
| printf ("\n\n\n "); |
| @echo on | |
| rem -------------------------------------------------------- | |
| if "%1" == "ftp" goto VarFTP | |
| if "%1" == "disk" goto VarDisk | |
| cls | |
| @echo. | |
| @echo To use this program type "to disk" or "to ftp" | |
| @echo. | |
| @echo "to disk" stores information on this floppy disk | |
| @echo - best if computer is not connected to internet |
| default[:deliv_canary][:cron_name] = 'canary' | |
| default[:deliv_canary][:region] = 'us-east-1' | |
| default[:deliv_canary][:namespace] = 'Canary' | |
| default[:deliv_canary][:metric_name] = 'Chirps' | |
| default[:deliv_canary][:unit] = 'Count' | |
| default[:deliv_canary][:value] = 1 | |
| default[:deliv_canary][:dimensions] = { | |
| AZ: node[:opsworks][:instance][:availability_zone], | |
| Environment: node[:deliv_canary][:environment], | |
| VPC: node[:opsworks][:stack][:vpc_id], |
| #! /usr/bin/perl | |
| use strict; | |
| use LWP::UserAgent; | |
| my $ua = new LWP::UserAgent; | |
| $ua->timeout(120); | |
| my $url='http://www.skechers.com/style/62358/audience-intended/BLK'; | |
| my $request = new HTTP::Request('GET', $url); |
| # my_nat_cookbook/attributes/default.rb | |
| # specify your CIDR in custom JSON somewhere: { "my_nat_cookbook": { "source_cidr": "10.1.0.0/16" } } | |
| default[:deliv_nat][:source_cidr] = '0.0.0.0/0' | |
| default[:deliv_nat][:aws_region] = node[:opsworks][:instance][:region] | |
| default[:deliv_nat][:ec2_instance_id] = node[:opsworks][:instance][:aws_instance_id] |