View mysql relation
ALTER TABLE user | |
ADD CONSTRAINT fk_Pin | |
FOREIGN KEY (pin_no) | |
REFERENCES pin(pin_no) | |
ON DELETE CASCADE | |
ON UPDATE CASCADE |
View linked list
import java.io.*; | |
class LinkedList { | |
Node last = null; | |
// function to create the link list | |
public void createList(int n) { | |
Node node = new Node(); | |
node.value = n; |
View getApp.js
var app = require("express")(); | |
app.get('/user', function(req, res){ | |
res.send(200, { name: 'marcus' }); | |
}); | |
// In order to reach the app from other modules | |
// we need to export the express application | |
module.exports.getApp = app; |
View building cordova with ant
cordova build android -- --ant |
View gist:f077cb03f0339514bbcc
/** | |
* fullscreenify() | |
* Stretch canvas to size of window. | |
* | |
* Zachary Johnson | |
* http://www.zachstronaut.com/ | |
* | |
* See also: https://gist.github.com/1178522 | |
*/ |
View .bshrc
export ANDROID_HOME=/home/bonnie/Android/Sdk | |
export PATH=${ANDROID_HOME}/tools:${PATH} | |
export PATH=${ANDROID_HOME}/platform-tools:${PATH} | |
export PATH=${ANDROID_HOME}/build-toold:${PATH} | |
export PATH=${ANDROID_HOME}/../android-ndk-r10e:${PATH} | |
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64 | |
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 .conf
<VirtualHost *:80> | |
ServerName Bonfire.local | |
DocumentRoot /var/www/Bonfire.local | |
<Directory /var/www/Bonfire.local> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> | |
</VirtualHost> |
View virtualhost.conf
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName cuboid.io | |
ServerAlias www.cuboid.io | |
DocumentRoot /var/www/cuboidio | |
<Directory /> | |
Options -Indexes +FollowSymLinks | |
AllowOverride None | |
Require all granted | |
</Directory> |