Skip to content

Instantly share code, notes, and snippets.

View rezigned's full-sized avatar

rezigned rezigned

View GitHub Profile
@rezigned
rezigned / greyscale.css
Created June 6, 2012 07:30
Apply greyscale to an image
/* http://snipplr.com/view/63328/
*
* First create a file filters.svg with the following contents
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" baseProfile="full" xmlns="http://www.w3.org/2000/svg">
<filter id="grayscale">
<feColorMatrix type="matrix" values="0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"/>
</filter>
<?php
namespace Money;
class Bitcoin {
#const BITCOIN_NODE = '173.224.125.222'; // w001.mo.us temporary
const BITCOIN_NODE = '50.97.137.37';
static private $pending = array();
public static function update() {
@rezigned
rezigned / gist:2469020
Created April 23, 2012 05:50
Regex for password validation
((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%]).{7,20})
( # Start of group
(?=.*\d) # must contains one digit from 0-9
(?=.*[a-z]) # must contains one lowercase characters
(?=.*[A-Z]) # must contains one uppercase characters
(?=.*[@#$%]) # must contains one special symbols in the list "@#$%"
. # match anything with previous condition checking
{7,20} # length at least 7 characters and maximum of 20
@rezigned
rezigned / shell-options.sh
Created April 2, 2012 17:11
Shell options reference
# Expressions
-a # file exists
-f # file exists and is a regular file
-h # file exists and is a symbolic link
-r # file exists and is readable
-w # ... and is writable
-x # ... and is executable
-S # ... and is a socket
# Special Vars