{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Events API Schema",
"definitions": {
"event_collection": {
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 'openssl' | |
=begin | |
Most plaintext must be fed as a string or a binary object to be encrypted. | |
However, it's often possible to mis-decode the plaintext before encrypting it. | |
i.e. If it's received as a string in JSON, you often don't know if the string | |
is an encoded representation (e.g. plain, hex encoded, base64 encoded, etc) |
I hereby claim:
- I am drewblas on github.
- I am drewblas (https://keybase.io/drewblas) on keybase.
- I have a public key whose fingerprint is 3EDF C403 0683 9E45 F58E 7036 6619 71D9 1784 3713
To claim this, I am signing this object:
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
<html> | |
<head> | |
<script> | |
function check_cc() { | |
var r = document.getElementById("results"); | |
var elem = document.getElementById("ccnum"); | |
r.innerHTML = "Checking CC: " + elem.value + "<br>"; |
Disclaimer: In the coder spirit, I've forked Mark's gist. I do this not to take his words, but rather to echo his sentiments, reinforce his approach, and add my voice to his in a fashion I hope will help keep this discussion alive. I invite others to do the same.
Original:
I'm writing in response to events that have recently come to light involving a sexual assault at a tech conference. Background information can be found [here][1], [here][2], and [here][3] as well as on twitter and google.
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
# Launch an instance with a specific root disk size instead of the default | |
UBUNTU_EBS_IMAGE=ami-d0f89fb9 | |
# New volume size in GB | |
VOLUME_SIZE=30 | |
SNAPSHOT_ID=`ec2-describe-images $UBUNTU_EBS_IMAGE | egrep "^BLOCKDEVICEMAPPING" | cut -f4` | |
ec2-run-instances $UBUNTU_EBS_IMAGE \ # Don't forget all your other normal parameters | |
--block-device-mapping "/dev/sda1=$SNAPSHOT_ID:$VOLUME_SIZE:true:standard" |
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
# ============================= | |
# Test case showing what we expect to happen | |
a1 = 'z' | |
b1 = 'z' | |
a = [a1] | |
b = [b1] | |
a1 == b1 # true | |
a1.eql? b1 # true | |
a1.equal? b1 # false different object_ids, as expected |
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
# Copyright 2010 Drew Blas <[email protected]> | |
# From: http://drewblas.com/2010/07/15/an-analysis-of-gpled-code-in-thesis | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
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: http://drewblas.com/2010/07/15/an-analysis-of-gpled-code-in-thesis | |
// PARTIAL RESULTS of comparison of Wordpress 2.0 & Thesis 1.7 | |
//-- Match from <wordpress/wp-includes/comment-template.php>:1428 to <thesis_17/lib/classes/comments.php>:182 -- | |
$r['per_page'] = get_query_var('comments_per_page'); | |
//-- Match from <wordpress/wp-includes/comment-template.php>:1430 to <thesis_17/lib/classes/comments.php>:183 -- | |
if (empty($r['per_page'])) { | |
//-- Match from <wordpress/wp-includes/comment.php>:724 to <thesis_17/lib/classes/comments.php>:189 -- |
NewerOlder