This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Requires jQuery. | |
Built, with love, by Joakim Hedlund <[email protected]> | |
*/ | |
jQuery.fn.lastLineWidth = function(text){ | |
var $this = jQuery(this), | |
$tmpHtml = jQuery('<span style="postion:absolute;width:auto;left:-9999px"></span>'); | |
var containerWidth = $this.width(), //width of the container (e.g. <h1>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="sv-SE"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Zoomable OTMap</title> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="sv-SE"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Klarna dynamic logos</title> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(".my-awesome-link-class").one('click', function(event){ | |
var $this = jQuery(this); | |
//no need to delay when the link opens in a new window | |
if (!$this.attr("target") && !event.ctrlKey && !event.shiftKey && !event.metaKey) { | |
event.preventDefault(); | |
var newHref = this.href; | |
//the below is pseudo-code | |
jQuery.ajax({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function validatePNumber($pnumber) { | |
// reference: http://en.wikipedia.org/wiki/National_identification_number#Finland | |
//initial format thingy | |
$pnumber = strtoupper($pnumber); | |
if(!preg_match('/^([0-9]{6})(\-|\+|A)?([0-9]{3})([0-9A-Y])$/', $pnumber, $matches)) return false; | |
//loop through each character of $matches[1].$matches[3] and sum them up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function correctYYMMDD($input){ | |
$input = substr($input, 0, 6); | |
//is it already in correct format? | |
if(preg_match('/[0-9][0-9](1[0-2]|0[1-9])([0-2][0-9]|3[01])/', $input)) return $input; | |
//let's reverse it. | |
$rev = array(); | |
$rev['yy'] = substr($input, 4, 2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
protected static function validatePNumber($pnumber) { | |
/* Check valid form (existing month and day) */ | |
if (!preg_match("/^[0-9]{2}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))[0-9]{4}$/", $pnumber)) return false; | |
/* Calculate check sum and check wether or not the control digit is correct */ | |
$sum = 0; | |
$x = 0; | |
for ($i = 0; $i < 10; $i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function a() { | |
var a, b; | |
Array.prototype.forEach.call(document.querySelectorAll("pre"), function (a) { | |
a.className = "prettyprint linenums" | |
}), a = document.createElement("script"), a.onload = function () { | |
prettyPrint() | |
}, a.src = "https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?skin=sunburst", document.body.appendChild(a) | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
document.body.appendChild(document.createElement('script')).src='http://premailer.dialect.ca/inc/bookmarklet-1.0.js'; | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
print '<meta charset="utf8" /><pre>'; | |
require_once('oauth.php'); | |
$settings = array( | |
'oauth_access_token' => "", | |
'oauth_access_token_secret' => "", | |
'consumer_key' => "", | |
'consumer_secret' => "" | |
); |
OlderNewer