Skip to content

Instantly share code, notes, and snippets.

View harry1989's full-sized avatar

Sriharsha Sistalam harry1989

View GitHub Profile
@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 / 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 / README.md
Created May 26, 2012 06:31 — forked from harry1989/birth_day_thank_you.py
Thanking friends who wishes for your birthday
Map<Positon, Long> positionProb;
List<Position> finalReachableCells;
List<Position> visitedCells;
/**
* Class to represent the positon
*/
class Positon {
int x;
int y;