Skip to content

Instantly share code, notes, and snippets.

@souparno
souparno / mysql relation
Created August 4, 2014 15:44
mysql relation
ALTER TABLE user
ADD CONSTRAINT fk_Pin
FOREIGN KEY (pin_no)
REFERENCES pin(pin_no)
ON DELETE CASCADE
ON UPDATE CASCADE
@souparno
souparno / linked list
Created October 29, 2014 04:18
linkedlist
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;
@souparno
souparno / getApp.js
Last active August 29, 2015 14:11 — forked from marcusoftnet/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;
@souparno
souparno / building cordova with ant
Created July 12, 2015 07:53
building cordova with ant
cordova build android -- --ant
@souparno
souparno / gist:f077cb03f0339514bbcc
Created November 28, 2015 05:20 — forked from zachstronaut/gist:1184900
Stretch HTML5 canvas to fill window, preserving aspect ratio
/**
* fullscreenify()
* Stretch canvas to size of window.
*
* Zachary Johnson
* http://www.zachstronaut.com/
*
* See also: https://gist.github.com/1178522
*/
@souparno
souparno / .bshrc
Created January 1, 2016 12:13
my .bashrc
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
@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 / .conf
Created June 19, 2015 18:43
.conf file to create virtual host
<VirtualHost *:80>
ServerName Bonfire.local
DocumentRoot /var/www/Bonfire.local
<Directory /var/www/Bonfire.local>
Options FollowSymLinks
AllowOverride All
</Directory>
</VirtualHost>
@souparno
souparno / virtualhost.conf
Created March 13, 2017 16:27
apache configuration for node.js proxy
<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>