Note: Run this script as the root
user (no sudo calls are used in the script).
You will need the curl package installed, though I would have no idea why it wouldn't be installed by default:
zypper --non-interactive install curl
def ccexp?(s);m,y=s.split "/";y.to_i<10?true:(y.to_i==10?m.to_i<=6:false);end |
def fibsum(n);def f(i);i<2?i:f(i-1)+f(i-2);end;s=0;1.upto(n){|j|s+=f(j)};s;end |
def morse(s);m='.-,-...,-.-.,-..,.,..-.,--.,....,..,.---,-.-,.-..,--,-.,---,.--.,--.-,.-.,...,-,..-,...-,.--,-..-,-.--,--..'.split(',');b='';s.upcase.split('').each{|c|a=c[0]-65;b<<(a==-33?' ':m[a])};b;end |
// 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 -- |
# 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 |
# ============================= | |
# 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 |
# 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" |
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.
<html> | |
<head> | |
<script> | |
function check_cc() { | |
var r = document.getElementById("results"); | |
var elem = document.getElementById("ccnum"); | |
r.innerHTML = "Checking CC: " + elem.value + "<br>"; |