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:
<? | |
$content = 'content before'; | |
function block($tpl){ | |
ob_start(); | |
return function() use ($tpl){ | |
$content = ob_get_clean(); | |
include('templates/' . $tpl . '.php'); |
$ashamed: true; | |
@mixin ashamed { | |
@if $ashamed == true{ | |
@content; | |
} | |
} | |
body { | |
background: blue; |
#!/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 |
@import "breakpoint"; | |
body { | |
@include breakpoint(large){ | |
background: red; | |
} | |
@include breakpoint(normal){ | |
background: green; |
m[gt4T667F8M4r4]2/#U8i^%(6^b?( |
I hereby claim:
To claim this, I am signing this object:
@function colour($name){ | |
@return map-get($colours, $name); | |
} | |
@function colour-darken($name, $percentage){ | |
@return darken( map-get($colours, $name), $percentage ); | |
} | |
@function colour-lighten($name, $percentage){ | |
@return lighten( map-get($colours, $name), $percentage ); |
@function default-map-value($map, $key, $value){ | |
@if map-has-key($map, $key) { | |
// Does sass have a falsey lookup? if !map-has-key()? | |
} | |
@else { | |
map-merge($map, ($key, $value)); | |
} | |
} |
<div class="box___blue">Blue</div> | |
<div class="box___red">Red</div> | |
<div class="box___green">Green</div> | |
<div class="box___indigo">Indigo</div> | |
<div class="box___teal">Teal</div> | |
<div class="box___yellow">Yellow</div> | |
<button class="make-me___green">Call me hulk!</button> | |
<h1 class="___light-blue">I want to be blue, light blue!</h1> |
<div class="blue">Blue</div> | |
<div class="red">Red</div> | |
<div class="green">Green</div> | |
<div class="indigo">Indigo</div> | |
<div class="teal">Teal</div> | |
<div class="yellow">Yellow</div> | |
<button class="green">Call me hulk!</button> | |
<h1 class="light-blue">I want to be blue, light blue!</h1> |