Skip to content

Instantly share code, notes, and snippets.

View harry1989's full-sized avatar

Sriharsha Sistalam harry1989

View GitHub Profile
@harry1989
harry1989 / proxy function
Last active August 29, 2015 14:11
HTML5 Instrumented code with Proxies and the navigation timing API
function getInstrumentedFn(fn){
return new Proxy(fn, {
apply: function(target, that, args){
//get the function name
var fName = fn.name || ('random function_' + parseInt(Math.random() * 1000));
//mark the starting of function.
performance.mark(fName + '_start');
var returnValue = fn.apply(that, args);
@harry1989
harry1989 / gist:3e810d60789f8023fc91
Created October 21, 2014 19:53
Custom select dropdown
<span class="custom-select">
<span class="header">Recipient:</span>
<span class="option" data-option="normal">Normal</span>
<ul class="dropdown">
<li data-option="all">All: Email everyone</li>
<li data-option="normal">Normal: Everyone except pre-existing low traffic subscribers</li>
<li data-option="none">None: Do not email anyone</li>
@harry1989
harry1989 / gist:70e6133f77d25d09a4f5
Last active August 29, 2015 14:01
Angular links
http://yearofmoo.com
http://thinkster.io
http://egghead.io
http://scotch.io/tag/angular-js
https://github.com/jmcunningham/AngularJS-Learning
@harry1989
harry1989 / ngHyd
Last active August 29, 2015 13:57
ngHyderabad meetup 20140308
Agenda for the ngHyderabad meetup on 20140308
================================================
1. Introduction to modern web applications
* Current web stacks (ASP/JSP/Servlet)
* Bottleneck and scaling concerns with the existing stack
2. Overview of components of MEAN stack
* Explanation of each component of MEAN
* Advantages of having a single language stack
* Need for the API only servers