Skip to content

Instantly share code, notes, and snippets.

View jasdeepkhalsa's full-sized avatar

Jasdeep Khalsa jasdeepkhalsa

View GitHub Profile
@jasdeepkhalsa
jasdeepkhalsa / cookie.js
Created January 28, 2013 09:26
A complete cookies reader/writer framework with full unicode support by Mozilla
@jasdeepkhalsa
jasdeepkhalsa / date.format.js
Created February 1, 2013 11:23
JavaScript Date Format by Steven Levithan
/*
* Date Format 1.2.3
* (c) 2007-2009 Steven Levithan <stevenlevithan.com>
* MIT license
*
* Includes enhancements by Scott Trenda <scott.trenda.net>
* and Kris Kowal <cixar.com/~kris.kowal/>
*
* Accepts a date, a mask, or a date and a mask.
* Returns a formatted version of the given date.
@jasdeepkhalsa
jasdeepkhalsa / fif.js
Created March 12, 2013 09:59
Friendly iFrames (FIF) - Loading JavaScript Asynchronously Without Blocking window.onload by Stoyan Stefanov. Designed for loading third party scripts only (for first party scripts this script may have a negative performance impact, as tested by Yahoo)
// Documented by Stoyan Stefanov: https://www.facebook.com/note.php?note_id=10151176218703920
(function() {
var url = 'http://example.org/js.js';
var iframe = document.createElement('iframe');
(iframe.frameElement || iframe).style.cssText =
"width: 0; height: 0; border: 0";
iframe.src = "javascript:false";
var where = document.getElementsByTagName('script')[0];
where.parentNode.insertBefore(iframe, where);
var doc = iframe.contentWindow.document;
@jasdeepkhalsa
jasdeepkhalsa / reset-meyer.css
Created March 12, 2013 10:03
CSS Resets by Yahoo (v. 2.9.0) and Eric Meyer (v. 2.0)
/* 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,
b, u, i, center,
@jasdeepkhalsa
jasdeepkhalsa / dedupe.js
Created March 23, 2013 13:54
De-duplicate an array in JavaScript
var arr = [1,1,2];
var arr = arr.filter(function (v, i, a) { return a.indexOf (v) == i }); // dedupe array
@jasdeepkhalsa
jasdeepkhalsa / bind.js
Created March 28, 2013 14:40
Creating a bounded wrapper by AListApart and bind function by Mozilla (ECMA-262, 5th edition)
// From: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Function/bind
if (!Function.prototype.bind) {
Function.prototype.bind = function (oThis) {
if (typeof this !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
}
var aArgs = Array.prototype.slice.call(arguments, 1),
@jasdeepkhalsa
jasdeepkhalsa / fetch.php
Created March 28, 2013 17:09
Return MySQL Data as an Associative Array
<?php
function mysql_fetch_all($result) {
while($row=mysql_fetch_assoc($result)) {
$return[] = $row;
}
return $return;
}
>?
@jasdeepkhalsa
jasdeepkhalsa / get-current-dir.php
Last active January 25, 2016 14:44
Get the current file's public directory path (URL) in PHP
<?php
function get_current_dir(){
$file = realpath(dirname(__FILE__)); // Current file path
$patt = '/\/path\/to\/public\/directory/'; // Regex pattern for all non-public directories
$url = preg_replace($patt,'', $file); // Take out those non-public directories
return $url . '/'; // Return the URL with a trailing slash
}
/**
* This function may be useful for occasions where you need to call a file in PHP included in the same directory
@jasdeepkhalsa
jasdeepkhalsa / sort-array.php
Last active December 15, 2015 13:09
Sort array with a compare function in PHP (cycles through each element of an array and compares it)
<?php
/*
[0] => stdClass Object
(
[ID] => 1
[name] => Mary Jane
[count] => 420
)
[1] => stdClass Object
@jasdeepkhalsa
jasdeepkhalsa / scout.js
Created March 28, 2013 21:11
Scouting file by Alex Sexton
// From: http://alexsexton.com/blog/2013/03/deploying-javascript-applications/
// Simplified example of a scout file
(function () {
// Feature test some stuff
var features = {
svg: Modernizr.svg,
touch: Modernizr.touch
};
// The async script injection fanfare