Skip to content

Instantly share code, notes, and snippets.

View jwdonley's full-sized avatar

Joe Donley jwdonley

View GitHub Profile
@jwdonley
jwdonley / vhost.xml
Created August 28, 2011 03:40
zend in net beans vhost sample
<VirtualHost *:80>
ServerName zf-test.com
DocumentRoot "C:webrootzf-testpublic"
SetEnv APPLICATION_ENV "development"
<Directory "C:webrootzf-testpublic">
DirectoryIndex index.php
AllowOverride All
Order allow,deny
@jwdonley
jwdonley / corestarter
Created August 28, 2011 02:41
posh git setup codez
[core]
autocrlf = true
editor = notepad.exe
@jwdonley
jwdonley / var hoisting blog post example 2.js
Created August 28, 2011 02:25
2nd var hoisting example from my blog post
y = 1;
alert(y); //alert 1
var x = function() {
var y; // < ----- var moved to top of function!
alert(y); //alert 2
y = 2;
alert(y); //alert 3
}
x();
@jwdonley
jwdonley / var hoisting blog post example 1
Created August 28, 2011 02:21
var hoisting example 1
y = 1;
alert(y); //alert 1
var x = function() {
alert(y); //alert 2
var y = 2;
alert(y); //alert 3
}
x();