Skip to content

Instantly share code, notes, and snippets.

@Lammerink
Lammerink / gist:3925132
Last active September 2, 2016 11:36
PHP : Generated in X Seconds
<?php
//Generated in X Seconds Helper
//Put this at the top of the script
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
?>
@Lammerink
Lammerink / gist:3925106
Created October 20, 2012 22:49
PHP : Image Resize and Crop Using ImageMagick
<?php
// Image Resize and Crop using ImageMagick
// the Function
//imageresize to Thumb
function imageresize($src,$dest,$size=75){
list($w,$h) = getimagesize($src);
if($w > $h){
@Lammerink
Lammerink / style.css
Last active October 11, 2015 21:57
CSS : Starting Template
@charset "UTF-8";
/* CSS Document */
@Lammerink
Lammerink / gist:3925083
Created October 20, 2012 22:43
HTML : Starting template
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
@Lammerink
Lammerink / reset.css
Last active October 11, 2015 21:57 — forked from danilowm/gist:1070332
CSS : CSS Reset
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,