I hereby claim:
- I am phunky on github.
- I am phunky (https://keybase.io/phunky) on keybase.
- I have a public key whose fingerprint is DB3E E2DB 3667 03E8 C9DB E771 D5AE A7E0 E779 B561
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
m[gt4T667F8M4r4]2/#U8i^%(6^b?( |
@import "breakpoint"; | |
body { | |
@include breakpoint(large){ | |
background: red; | |
} | |
@include breakpoint(normal){ | |
background: green; |
#!/bin/sh | |
# modified by jfro from http://www.cnysupport.com/index.php/linode-dynamic-dns-ddns-update-script | |
# Uses curl to be compatible with machines that don't have wget by default | |
LINODE_API_KEY= | |
DOMAIN_ID= | |
RESOURCE_ID= | |
WAN_IP=`curl -s http://icanhazip.com/` | |
if [ -f $HOME/.wan_ip.txt ]; then |
$ashamed: true; | |
@mixin ashamed { | |
@if $ashamed == true{ | |
@content; | |
} | |
} | |
body { | |
background: blue; |
<? | |
$content = 'content before'; | |
function block($tpl){ | |
ob_start(); | |
return function() use ($tpl){ | |
$content = ob_get_clean(); | |
include('templates/' . $tpl . '.php'); |