View Javascript Inheritence
/* 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(){}; |
View Combination Constructor & Prototype Pattern
/** | |
* Combination Constructor/Prototype Pattern | |
*/ | |
//constructor | |
function Something(name){ | |
//properties | |
this.name = name; | |
} | |
//prototype |
View 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. |
View gist:9286665
http://opentechschool.github.io/python-flask/core/setup.html |
View Git Command tutorial
https://www.atlassian.com/git |
View IIFE(IMIDIATELY INVOKED FUNCTIOIN EXPRESSION)
http://benalman.com/news/2010/11/immediately-invoked-function-expression/ |
View 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; |
View 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. |
View router.html
<!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: |
View 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)) |
OlderNewer