Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@souparno
souparno / Javascript Inheritence
Last active January 3, 2016 23:49
A number of references on the javascript Class Framework/Class Implementation
/* Simple JavaScript Inheritance
* By John Resig http://ejohn.org/
* MIT Licensed.
*/
// Inspired by base2 and Prototype
(function(){
var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;
// The base Class implementation (does nothing)
this.Class = function(){};
@souparno
souparno / Combination Constructor & Prototype Pattern
Last active January 4, 2016 11:19 — forked from zacksleo/JavaScript Class
Combination Constructor & Prototype Pattern
/**
* Combination Constructor/Prototype Pattern
*/
//constructor
function Something(name){
//properties
this.name = name;
}
//prototype
@souparno
souparno / Example of call and apply
Created January 31, 2014 20:57
Example of call and apply
Articles
Blog
About
Function.apply and Function.call in JavaScript
Thursday, July 5, 2007
24 comments
Tweet
In order to explain how the createDelegate function works in the last post, we have to understand JavaScript closures and Function.apply(). The apply() method is the easiest subject to tackle, so we'll start there and work up.
@souparno
souparno / gist:9286665
Created March 1, 2014 07:50
creating virtual directory though pip for python
http://opentechschool.github.io/python-flask/core/setup.html
@souparno
souparno / Git Command tutorial
Created March 15, 2014 09:33
Git Command tutorial
https://www.atlassian.com/git
@souparno
souparno / IIFE(IMIDIATELY INVOKED FUNCTIOIN EXPRESSION)
Created March 26, 2014 19:12
IIFE(IMIDIATELY INVOKED FUNCTIOIN EXPRESSION)
http://benalman.com/news/2010/11/immediately-invoked-function-expression/
@souparno
souparno / Function Encaptulation in php
Created April 24, 2014 00:14
Function Encaptulation in php
Encapsulation is just wrapping some data in an object. The term "encapsulation" is often used interchangeably with "information hiding". Wikipedia has a pretty through article.
Here's an example from the first link in a Google search for 'php encapsulation':
<?php
class App {
private static $_user;
@souparno
souparno / Toggling between nerdtree and edit
Created June 16, 2014 15:39
Toggling between nerdtree and edit
You can focus on a split window using # ctrl-ww.
for example, pressing:
1 ctrl-ww
would focus on the first window, usually being NERDTree.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Building a router</title>
<script>
// Put John's template engine code here...
(function () {
// A hash to store our routes:
@souparno
souparno / javascript url
Created July 10, 2014 09:37
javascript url
JavaScript provides you many methods to retrieve and change the current URL which is displayed in browser's address bar. All these methods uses the Location object, which is a property of the Window object. You can create a new Location object that has the current URL as follows:
var currentLocation = window.location;
Basic Structure of a URL
<protocol>//<hostname>:<port>/<pathname><search><hash>
enter image description here
Protocol -- Specifies the protocol name be used to access the resource on the Internet. (HTTP (without SSL) or HTTPS (with SSL))