Skip to content

Instantly share code, notes, and snippets.

#####Messaging System or Queues#####

This concept is especially useful in web applications where it's impossible to handle a complex task during a short HTTP request window. Reference about different queueing tools : http://queues.io/


#####Key Value Database####


@mdsaleemj
mdsaleemj / 01-intro.md
Created November 4, 2015 09:03 — forked from dwayne/01-intro.md
My notes from the book "ng-book: The Complete Book on AngularJS by Ari Lerner".

Introduction

Author: Ari Lerner.

AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides:

  • Module support
  • DOM manipulation
  • Animations
  • Templating
@mdsaleemj
mdsaleemj / Install_Oracle_JDK_in_Ubuntu_12.04
Created October 14, 2015 13:29
Installing JDK in Ubuntu 12.04
Hi,
I wanted to install the Oracle JDK in my ubuntu which already contains OpenJDK. Oracle doesn't official supports any repoistory
for ubuntu.
There are two possible ways now
1. Download and install JDK/JRE from Oracle manually.
2. Use PPA(Personal Package Archives) - This is not official and maintained by community and people say it as insecure.
So , for time being i chose to install via PPA
@mdsaleemj
mdsaleemj / prototypes.js
Last active September 11, 2015 13:47 — forked from torgeir/prototypes.js
javascript's __proto__ and prototype explained
/**
* __proto__ and prototype
* - the __proto__ property the instance's 'parent' up the prototype chain
* - the prototype property refers what new instances of the type will have their __proto__ set to, i.e. what will be the new instance's 'parent' up the prototype chain
*/
/* Given */
function Object () {}
Object.prototype = {
__proto__: null
@mdsaleemj
mdsaleemj / modules.md
Last active August 29, 2015 14:27 — forked from aubinlrx/modules.md
Node modules