I hereby claim:
- I am CrowderSoup on github.
- I am crowdersoup (https://keybase.io/crowdersoup) on keybase.
- I have a public key whose fingerprint is CF37 B14A 2FB4 F73B FFD5 8C01 680E C0CD 3F2D 62A0
To claim this, I am signing this object:
from PIL import Image | |
# 8 Inches | |
basewidth = 768 | |
# This is the size of the image I was working with... this line will supress warnings about the image being too big | |
Image.MAX_IMAGE_PIXELS = 556631040 | |
# Open the image | |
img = Image.open("original.png") |
I hereby claim:
To claim this, I am signing this object:
/** | |
* This is the most simple 3-col CSS grid I could imagine. It supports 3 columns of equal size with 10px margins. Feel free to modify this as | |
* you need. | |
*/ | |
/** | |
* The row | |
*/ | |
.row { clear: both; overflow: hidden; margin: 0 0 10px 0; } |
<?php | |
function get_rand_str($length) | |
{ | |
$chars = array_merge(range('a','z'), range('A','Z'), array('!','@','#','$','%','&','*')); | |
$length = intval($length) > 0 ? intval($length) : 16; | |
$max = count($chars) - 1; | |
$str = ""; | |
while($length--) { | |
shuffle($chars); |
function PrintArray($aVals) | |
{ | |
echo "<ul>"; | |
foreach($aVals as $key => $val) | |
{ | |
if(is_array($val)) | |
{ | |
echo "<li><strong>{$key}</strong>"; | |
PrintArray($val); | |
echo "</li>"; |
function cancelForm(formName) { | |
$("#" + formName)[0].reset(); | |
} |
<?php | |
$stuff = array('Bean', 'Apple', 'Tree'); | |
$stuff = array_map('strtolower', $stuff); | |
var_dump($stuff); | |
?> |
<?php | |
require_once('../includes/utils.php'); | |
/** | |
* minify | |
* | |
* Class that handles the minification of all required CSS files | |
*/ | |
class minify |
var game = function () { | |
setBackground("random"); | |
setMap("random"); | |
setDroid("R2-D2"); | |
setDroidSpeed("normal"); | |
playSound("R2-D2random"); | |
var moved = false; | |
var points = 0; |