Skip to content

Instantly share code, notes, and snippets.

@PascalKremp
PascalKremp / snippets.json
Created March 1, 2013 10:38
Emmet Shortcuts
{
"variables": {
"lang": "en",
"locale": "en-US",
"charset": "UTF-8",
"indentation": "\t",
"newline": "\n"
},
"css": {
@PascalKremp
PascalKremp / gist:4188708
Created December 2, 2012 13:36
Select box with days (with zero)
<?php
function zeroise($number, $threshold) {
return sprintf('%0'.$threshold.'s', $number);
}
?>
<!DOCTYPE html>
<meta charset="utf-8">
<select name="d" id="d">
<?php for ($i=1; $i < 32; $i++): ?>