Skip to content

Instantly share code, notes, and snippets.

View harry1989's full-sized avatar

Sriharsha Sistalam harry1989

View GitHub Profile
Map<Positon, Long> positionProb;
List<Position> finalReachableCells;
List<Position> visitedCells;
/**
* Class to represent the positon
*/
class Positon {
int x;
int y;
@harry1989
harry1989 / README.md
Created May 26, 2012 06:31 — forked from harry1989/birth_day_thank_you.py
Thanking friends who wishes for your birthday
@harry1989
harry1989 / Go merge alternate
Last active April 7, 2016 06:35
This program demonstrate how we can merge two channels alternatively
package main
import (
"fmt"
"sync")
func printEvenNumbers(ch chan int){
for i:=2; i<=45; i=i+2 {
ch<-i;
}
@harry1989
harry1989 / html5-apis.txt
Created January 15, 2014 05:17
HTML5 APIs
HTML5 has growing base of ~30 APIs of which below are very important and widely actively within the community.
Application cache
History API
FullScreen API
Page visibility API
WebRTC
Media API
Drag and Drop
User Interaction
@harry1989
harry1989 / gist:8422384
Last active January 3, 2016 06:28
Binding this in javascript.
When we have any asynchronus code that tries to access the object patterns, we run into issues with javascript `this` issue.
Ex:
var harry = { 'name': 'harry',
'greet' : function(){console.log('Hello ' + this.name)},
'print' : function(){
// using setTimeout, it can be any async function
setTimeout(this.greet, 1000); // this will fail!
}
/**
* This is a script to solve Yahoo bingo problem through
* websockets. http://yahoobingo.herokuapp.com/
*
* @author harry_sistalam
*/
var YAHOO_BINGO_URL = 'ws://yahoobingo.herokuapp.com';
var user_obj = {name : 'harry_sistalam',
email : 'sriharsha.sm@gmail.com',
@harry1989
harry1989 / Gender pronoun git hook
Last active October 13, 2015 09:13
This git hook checks for the existence of gender pronouns in the commit message and aborts the commit if it finds one
#!/bin/env node
/**
* This scripts check of the existence of gender pronouns
* and aborts the commit if any of them are found
*
* Don't consider it as silly, because its really 'NOT!'.
* One of the core contributor of libuv had to depart since didn't
* accept a PR related to gender pronoun fix, so think
* carefully before using gender pronouns
@harry1989
harry1989 / birth_day_thank_you.py
Created May 25, 2012 13:03
Thanking people who wished for your birthday
# these needs to be entered
oath_token=''
birth_date=''
birth_day_messages = ["happy", "b'day","birthday", "bday"]
from facepy import GraphAPI
javascript:(function() {
if(!window.your_bookmarklet) {
var doc = document,
js = doc.createElement('script');
js.type = 'text/javascript';
js.src = 'loader.js';
js.async = true;
@harry1989
harry1989 / twitter-REPL
Created January 28, 2015 18:49
Twitter REPL
Description
This will be a REPL where user can query for twitter content within node REPL.
End result will be like this..
node twitter-repl
# Will get into REPL