Skip to content

Instantly share code, notes, and snippets.

@sagarsane
sagarsane / achievements_data.json
Last active October 11, 2015 02:08
Achievements, Hobbies - abetterportfolio Project
{
"achievements" : [{"pt" : "Secured first prize in the worldwide Hackathon organized by Microsoft (#Wowzapp) - for the windows 8 app : Github Archive Client"},{"pt" : "Deployed a mildly polished version of this Windows 8 app. You can search it as 'Github Archive Client for Windows 8 - Basic'"},{"pt" : "First in Mathematics in higher secondary education, Pune, Maharashtra, India"}, {"pt" : "Ranked 8th in University of Pune in the Third Year of Undergraduate Engineering in IT"}, {"pt": "Successfully completed Graduate Leadership Development Series program organized by Graduate School at N.C. State"}, {"pt" : "Successfully completed 5 exams of Tabla, the Indian musical instrument"}],
"hobbies" : [{"pt" : "Passionate about variety of music, musical instruments"}, {"pt" : "Loves to play cricket!"}, {"pt": "Avid follower of the popular Technology blogs for latest news/events"}, {"pt" : "Loves to view reviews of cars, gadgets, etc. on YouTube :)"}]
}
@sagarsane
sagarsane / contact_data.json
Last active October 11, 2015 02:07
Contact Card - abetterportfolio project
{
"name" : "Sagar Sane",
"email" : [{"email":"sagar2217@gmail.com"}, {"email":"sssane@ncsu.edu"}],
"phone" : ["-" , "-"],
"social" : [
{"link" : "https://twitter.com/sagarsane","text" : "Twitter: @sagarsane"} ,
{"link" : "https://www.facebook.com/sagar.sane","text" : "Facebook: sagar.sane"},
{"link" : "https://plus.google.com/106972855388032152907/posts","text" : "Google+: +Sagar"},
{"link" : "http://www.linkedin.com/profile/view?id=53367198","text" : "LinkedIn: Sagar Sane"},
{"link" : "https://github.com/sagarsane","text" : "Github: Sagar Sane"},
@sagarsane
sagarsane / education_data.json
Created September 17, 2012 03:26
Education - abetterportfolio project
{
"education" :
[
{
"name" : "North Carolina State University, Raleigh NC, USA (2010-2012)",
"description" : [{"pt" : "Masters in Computer Networking - CS"}, {"pt" : "GPA: 3.63/4.00"}],
"courses" : [{"pt" : "CSC501 - Operating Systems"},{"pt" : "CSC570 - Computer Networks"},{"pt" : "CSC579 - Computer Performance and Modeling"},{"pt" : "CSC541 - Advanced Data Structures"},{"pt" : "CSC591 - Networking Services"},{"pt" : "CSC591 - Mobile Graphics and Interfaces"},{"pt" : "CSC724 - Advanced Distributed Systems"},{"pt" : "CSC773 - Survivable Networks"},{"pt" : "MBA554 - Project Management"}]
},
{
"name" : "Pune Institute of Computer Technology, Pune, India (2006-2010)",
@sagarsane
sagarsane / experience_data.json
Last active October 10, 2015 18:57
Experience - abetterportfolio project
{
"experience" :
[
{
"name" : "I-Cubed",
"description" : [{"pt" : "Software Engineer/Consultant"}, {"pt" : "April 2013 - Current"}, {"pt" : "Groovy/Web Services/Apache Camel"}]
},
{
"name" : "Bank of America",
"description" : [{"pt" : "Technology Associate"}, {"pt" : "June 2012 - Current"}, {"pt" : " Java Servlets/AJAX/jQuery/MetaData"}]
@sagarsane
sagarsane / projects_data.json
Created September 17, 2012 00:05
Projects - abetterportfolio project
{
"projects" :
[
{
"name": "Diverse Routing Algorithms (2012)",
"category": [ "C", "Networking"],
"technology" : "C, Networking",
"about" : [
{"pt" : "Implemented two diverse routing algorithms:"},
{"pt" : "Shortest pair edge-disjoint algorithm"},
@sagarsane
sagarsane / selfcalling_setTimeout.js
Created September 10, 2012 02:25
Self calling functions + setTimeout instead of setInterval
/*
This is very useful and smoother (feels like at least) when you want to do something like live updates on the UI or something (thinking Windows 8 UI styling?)
*/
(function better(){
//logic here
setTimeout(better, 100);
})();