Skip to content

Instantly share code, notes, and snippets.

View premasagar's full-sized avatar

Prem Rose premasagar

View GitHub Profile
@premasagar
premasagar / async-speakers.md
Last active December 16, 2015 20:09
Async Show and Tell

[Async's][async] [3rd Birthday Show n' Tell][event]

Thursday 23rd May, 2013

☞ [Full info on the Async website][event]
✈ Sign up to attend [on the event's Lanyrd page][event-lanyrd].

Speakers gist

Would you like to speak on the night? You’ll have five minutes, that’s 300 seconds, to tell us about something… a project, a library, a technique, a story, or anything else on JavaScript and its techy friends (HTML, CSS, SVG, animated GIFs), or the wider world of web.

@premasagar
premasagar / speakers.md
Last active December 21, 2015 07:09
Async Show and Tell speaker's list

[Async's][async] [2013 International Show n' Tell][event]

Thursday 7th November, 2013

☞ [Full info on the Async website][event]
✈ Sign up to attend [on the event's Lanyrd page][event-lanyrd].

Speakers gist

Would you like to speak on the night? You’ll have five minutes to tell us about something… a project, a library, a technique, a story, or anything else about JavaScript, related tech (HTML, CSS, SVG, etc), or the wider world of web.

Pablo.load('example.svg', function(){
this.children().each(function(el){
console.log(el.nodeName, Pablo(el).attr());
});
})
@premasagar
premasagar / strictify.sh
Last active August 29, 2015 14:27
prepend "use strict"
FILE=path/to/file.js && echo '"use strict";\n' | cat - $FILE > /tmp/out && mv /tmp/out $FILE