Welcome to TiddlyWiki created by Jeremy Ruston; Copyright © 2004-2007 Jeremy Ruston, Copyright © 2007-2011 UnaMesa Association
[>img[Photo by Hongwei Zhang|vinayak_photo.jpg]]
He is an Assistant Professor at [[IIIT-D|http://www.iiitd.ac.in]]. He was a visiting faculty at [[Indian Institute of Science|http://www.iisc.ernet.in]] (~IISc) in [[Computer Science and Automation|http://www.csa.iisc.ernet.in]] (CSA) department during 2009. He was a postdoc for Deborah Estrin at [[UCLA|http://www.cs.ucla.edu]] from 2006-08.
Here are his CurrentCollaborators. His work has been transitioned into industry. The examples are ~ExScal project to Northrop Grumman and Samraksh, Saarthi project to DIMTS, and ~RighFare to Suruk.
''Full CV:'' [[pdf|http://www.iiitd.edu.in/~naik/cv_vinayak_naik.pdf]] (last updated on May 13, 2010)
''Education:''
*~PhD in Computer Science and Engineering, 2006 [[Ohio State University|http://www.osu.edu]]
*BE in Computer Science, 1999 [[VJTI|http://www.vjti.ac.in/]], India
''Research interests:'' Large scale wireless sensor networks. It encompasses Networks (both wired and wireless), Operating Systems, Sensor Networks, Distributed Systems, Real-time Systems, Signal Processing, and ~Simulations-Emulations.
''~PhD Students in MUC group:''
*[[Kuldeep Yadav|http://www.iiitd.edu.in/~kuldeep/]] working on Localization for Mobile Phones in Developing Countries (3rd year)
** He is a recipient of [[MSR India PhD Fellowship|http://research.microsoft.com/en-us/collaboration/global/india/phdfellowships.aspx]] in 2011
*Siddhartha Asthana working on ~IVR-based Systems (2nd year)
** He is a recipient of TCS ~PhD Fellowship in 2011
*Pandarasamy Arjunan working on Low-power and Low-cost System for Energy Conservation (2nd year)
*Madhur Hasija working on Mobile Healthcare (1st year)
''Alumni:''
*Anvesha Katti
*Anubhuti Roda (now Assistant Professor at Bharati Vidya Peeth's College of Engineering, Delhi)
''Honors :''
*Rajiv Gandhi Excellence Award from India International Friendship Society, New Delhi in Aug 2011
*Invited to visit Coventry University, UK by university's Cogent Computing Applied Research Centre
*Invited to attend [[Faculty Summit|http://research.microsoft.com/en-us/events/fs2011/]] at the Microsoft Headquarters in Redmond in July, 2011
*[[CENS|http://research.cens.ucla.edu]] Local Employee Award for the academic year 2007-08 for his commitment and dedication to the Center above and beyond his normal day to day activities. The award is officially approved by the [[SEAS|http://www.engineer.ucla.edu/]] Dean’s office at UCLA.
*His name appeared in 2009 and will appear in 2010 Edition of [[Who's Who in America|http://www.marquiswhoswho.com/]]. Who's Who in America is recognized as the premier biographical data source pertaining to living Americans of notable achievement from every significant field of endeavor.
*Awarded A+ by Prof. Dhabaleswar Panda in graduate-level Computer Architecture course at Ohio State University
*Received Silver Medal in [[Homi Bhabha Young Scientist Competition|http://www.msta.in/]]
*Appeared in Merit List for [[High School Scholarship Exam|http://msce.mah.nic.in/HSS.htm]]
[[Mobile Site|http://itw.bidix.info/~naik/]]
*Localization for mobiel phones with Nokia Research Center, Palo Alto
*Scaling up of mobile alert system for farmers and fishermen with IFFCO, New Delhi (With Amarjeet Singh and Pushpendra Singh)
''Office address:''
Indraprastha Institute of Information Technology
3rd Floor, Library Building
NSIT Campus
Dwarka, Sector 3
New Delhi - 110078
INDIA.
''Office mailing address:''
Same as above
''E-mail:'' naik AT iiitd DOT ac DOT in
''Office phone:'' +91-11-2509 9217
''Fax:'' +91-11-2509 9176
''Social networking:''
~LinkedIn Profile ID = [[vinayaknaik|http://www.linkedin.com/in/vinayaknaik]]
I have moved [img[Twitter|http://twitter-badges.s3.amazonaws.com/twitter-a.png][http://www.twitter.com/vinayaksn]] to post interesting ideas, news, and opinions. Here are some old posts:
*''Signatures in Gmail:'' Gmail allows us to consolidate multiple email addresses in a single account. However, it doesn't allow us to mention for which email addresses do we want append the signature. As an example, I would like to append signature containing my webpage address to my office email but not to my personal emails. Currently, if I opt to have signature, Gmail will append it to all of emails regardless of whether the email if sent using office's email address or personal. '''This is has been implemented by Jerome Dane. Here is the [[page|http://userscripts.org/scripts/show/20887]]. Way to go, Jerome!'''
*''Energy harvesting in the gymnasiums:'' In the gyms, there are many exercise machines, such as elliptical, bicycles, etc., which can be used to generate energy in the same manner as the turbines to generate energy. Such a way of generating energy will reduce the carbon footprint of the gyms.
*''A digital calendar-frame:'' We already have frames for digital photos. In the same fashion, we can have a digital calendar-frame that I can hang on the wall or put on my desk. The digital calendar-frame can download my calendar from my computer (e.g. iCal) or from the Internet (e.g. Google Calendar). The digital calendar-frame will always keep itself synchronized. An additional feature would be to create notifications or create an agenda for the day. Although the calendar on my computer or the online version is accessible to other people at home, it is cumbersome to need a computer or a phone to access it. So a digital calendar-frame would be a nice gadget.
I maintain a blog called [[worthsharing|http://worthsharingwitheveryone.blogspot.com/]], where I post the articles,news,software, or anything that I feel is worth sharing with others.
*The photo of the forest of Nilgiri tree in NilgiriGroup is borrowed from the website of [[Center for Ecological Sciences|http://ces.iisc.ernet.in/currentResearch]] at ~IISc.
*This home page is created using [[TiddlyWiki|http://www.tiddlywiki.com]]. [[Prof Estrin|http://www.cens.ucla.edu/portal/people/estrin.html]] brought ~TiddlyWiki to my notice.
*The photo in the [[AboutVinayak]] tiddler is taken by [[Prof Hongwei Zhang|http://www.cs.wayne.edu/%7Ehzhang/]].
/***
|''Name:''|CryptoFunctionsPlugin|
|''Description:''|Support for cryptographic functions|
***/
//{{{
if(!version.extensions.CryptoFunctionsPlugin) {
version.extensions.CryptoFunctionsPlugin = {installed:true};
//--
//-- Crypto functions and associated conversion routines
//--
// Crypto "namespace"
function Crypto() {}
// Convert a string to an array of big-endian 32-bit words
Crypto.strToBe32s = function(str)
{
var be = Array();
var len = Math.floor(str.length/4);
var i, j;
for(i=0, j=0; i<len; i++, j+=4) {
be[i] = ((str.charCodeAt(j)&0xff) << 24)|((str.charCodeAt(j+1)&0xff) << 16)|((str.charCodeAt(j+2)&0xff) << 8)|(str.charCodeAt(j+3)&0xff);
}
while (j<str.length) {
be[j>>2] |= (str.charCodeAt(j)&0xff)<<(24-(j*8)%32);
j++;
}
return be;
};
// Convert an array of big-endian 32-bit words to a string
Crypto.be32sToStr = function(be)
{
var str = "";
for(var i=0;i<be.length*32;i+=8)
str += String.fromCharCode((be[i>>5]>>>(24-i%32)) & 0xff);
return str;
};
// Convert an array of big-endian 32-bit words to a hex string
Crypto.be32sToHex = function(be)
{
var hex = "0123456789ABCDEF";
var str = "";
for(var i=0;i<be.length*4;i++)
str += hex.charAt((be[i>>2]>>((3-i%4)*8+4))&0xF) + hex.charAt((be[i>>2]>>((3-i%4)*8))&0xF);
return str;
};
// Return, in hex, the SHA-1 hash of a string
Crypto.hexSha1Str = function(str)
{
return Crypto.be32sToHex(Crypto.sha1Str(str));
};
// Return the SHA-1 hash of a string
Crypto.sha1Str = function(str)
{
return Crypto.sha1(Crypto.strToBe32s(str),str.length);
};
// Calculate the SHA-1 hash of an array of blen bytes of big-endian 32-bit words
Crypto.sha1 = function(x,blen)
{
// Add 32-bit integers, wrapping at 32 bits
add32 = function(a,b)
{
var lsw = (a&0xFFFF)+(b&0xFFFF);
var msw = (a>>16)+(b>>16)+(lsw>>16);
return (msw<<16)|(lsw&0xFFFF);
};
// Add five 32-bit integers, wrapping at 32 bits
add32x5 = function(a,b,c,d,e)
{
var lsw = (a&0xFFFF)+(b&0xFFFF)+(c&0xFFFF)+(d&0xFFFF)+(e&0xFFFF);
var msw = (a>>16)+(b>>16)+(c>>16)+(d>>16)+(e>>16)+(lsw>>16);
return (msw<<16)|(lsw&0xFFFF);
};
// Bitwise rotate left a 32-bit integer by 1 bit
rol32 = function(n)
{
return (n>>>31)|(n<<1);
};
var len = blen*8;
// Append padding so length in bits is 448 mod 512
x[len>>5] |= 0x80 << (24-len%32);
// Append length
x[((len+64>>9)<<4)+15] = len;
var w = Array(80);
var k1 = 0x5A827999;
var k2 = 0x6ED9EBA1;
var k3 = 0x8F1BBCDC;
var k4 = 0xCA62C1D6;
var h0 = 0x67452301;
var h1 = 0xEFCDAB89;
var h2 = 0x98BADCFE;
var h3 = 0x10325476;
var h4 = 0xC3D2E1F0;
for(var i=0;i<x.length;i+=16) {
var j,t;
var a = h0;
var b = h1;
var c = h2;
var d = h3;
var e = h4;
for(j = 0;j<16;j++) {
w[j] = x[i+j];
t = add32x5(e,(a>>>27)|(a<<5),d^(b&(c^d)),w[j],k1);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=16;j<20;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),d^(b&(c^d)),w[j],k1);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=20;j<40;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),b^c^d,w[j],k2);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=40;j<60;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),(b&c)|(d&(b|c)),w[j],k3);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
for(j=60;j<80;j++) {
w[j] = rol32(w[j-3]^w[j-8]^w[j-14]^w[j-16]);
t = add32x5(e,(a>>>27)|(a<<5),b^c^d,w[j],k4);
e=d; d=c; c=(b>>>2)|(b<<30); b=a; a = t;
}
h0 = add32(h0,a);
h1 = add32(h1,b);
h2 = add32(h2,c);
h3 = add32(h3,d);
h4 = add32(h4,e);
}
return Array(h0,h1,h2,h3,h4);
};
}
//}}}
*Academia:
**[[Prof. Amarjeet Singh|http://iiitd.edu.in/~amarjeet]] at ~IIIT-D
**[[Prof. Elena Gaura|http://www.coventry.ac.uk/researchnet/d/556/a/4339]] Director of Cogent Computing Applied Research Centre at Coventry University, UK
**[[Prof. D. Roy Mahapatra|http://www.aero.iisc.ernet.in/droymahapatra/index.html]] in Aerospace Engineering department at ~IISc
**[[Prof. Mani Srivastava|http://www.ee.ucla.edu/~mbs]] in Electrical Engineering department at UCLA
**[[Mocha Group at MIT|http://www.mocamobile.org/]]
**[[Prof. Ponnurangam Kumaraguru|http://www.iiitd.edu.in/~pk/]] at ~IIIT-D
**[[Prof. Pushpendra Singh|http://www.iiitd.edu.in/~pushpendra/]] at ~IIIT-D
**[[Prof. Raja Sengupta|http://www.geog.mcgill.ca/faculty/sengupta/]] at ~IIIT-D
*Industry:
**[[Suresh Chande|http://sureshchande.blogspot.com/]], Technical Product Owner Mobile Office / Nokia India University Relations Representative, Devices R&D Maemo SW Applications at Nokia, Finland
**Umesh Chandra and Mohammad Rahimi at [[Nokia Research Center, Palo Alto, USA|http://research.nokia.com/centers/palo-alto/]]
**[[Delhi Integrated Multi Modal Transit System Ltd. (DIMTS), New Delhi, India|http://http://www.dimts.in/]]
**[[Suruk, Bangalore, India|http://www.suruk.com]]
***MUC group's [[RightFare|https://sites.google.com/site/rightfareiiitd/]] was adapted by Suruk to release [[@autofare|http://www.txtweb.com/index.php?option=com_myblog&blogtype=application&blogid=2700&show=2700.html&Itemid=42&fromDetail=true]] application
***The Suruk team's application won Judges' Choice Award at [[App2Fame|http://www.app2fame.com/winners.html]]
**[[Venkata N. Padmanabhan|http://research.microsoft.com/en-us/um/people/padmanab/]] in Mobility, Networks, and Systems group at Microsoft Research, Bangalore, India
*Funding Agencies:
**[[Nokia Research Center, Palo Alto, USA|http://research.nokia.com/centers/palo-alto/]]
**[[Nokia Research Center, Nokia India University Relations|http://research.nokia.com/node/715]]
**[[Microsoft Research|http://research.microsoft.com/en-us/labs/india/]], Bangalore, India
*Social Organization:
**[[Ila Trust|http://www.ilatrust.org/index.php]] in New Delhi
/***
|''Name:''|DeprecatedFunctionsPlugin|
|''Description:''|Support for deprecated functions removed from core|
***/
//{{{
if(!version.extensions.DeprecatedFunctionsPlugin) {
version.extensions.DeprecatedFunctionsPlugin = {installed:true};
//--
//-- Deprecated code
//--
// @Deprecated: Use createElementAndWikify and this.termRegExp instead
config.formatterHelpers.charFormatHelper = function(w)
{
w.subWikify(createTiddlyElement(w.output,this.element),this.terminator);
};
// @Deprecated: Use enclosedTextHelper and this.lookaheadRegExp instead
config.formatterHelpers.monospacedByLineHelper = function(w)
{
var lookaheadRegExp = new RegExp(this.lookahead,"mg");
lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = lookaheadRegExp.exec(w.source);
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var text = lookaheadMatch[1];
if(config.browser.isIE)
text = text.replace(/\n/g,"\r");
createTiddlyElement(w.output,"pre",null,null,text);
w.nextMatch = lookaheadRegExp.lastIndex;
}
};
// @Deprecated: Use <br> or <br /> instead of <<br>>
config.macros.br = {};
config.macros.br.handler = function(place)
{
createTiddlyElement(place,"br");
};
// Find an entry in an array. Returns the array index or null
// @Deprecated: Use indexOf instead
Array.prototype.find = function(item)
{
var i = this.indexOf(item);
return i == -1 ? null : i;
};
// Load a tiddler from an HTML DIV. The caller should make sure to later call Tiddler.changed()
// @Deprecated: Use store.getLoader().internalizeTiddler instead
Tiddler.prototype.loadFromDiv = function(divRef,title)
{
return store.getLoader().internalizeTiddler(store,this,title,divRef);
};
// Format the text for storage in an HTML DIV
// @Deprecated Use store.getSaver().externalizeTiddler instead.
Tiddler.prototype.saveToDiv = function()
{
return store.getSaver().externalizeTiddler(store,this);
};
// @Deprecated: Use store.allTiddlersAsHtml() instead
function allTiddlersAsHtml()
{
return store.allTiddlersAsHtml();
}
// @Deprecated: Use refreshPageTemplate instead
function applyPageTemplate(title)
{
refreshPageTemplate(title);
}
// @Deprecated: Use story.displayTiddlers instead
function displayTiddlers(srcElement,titles,template,unused1,unused2,animate,unused3)
{
story.displayTiddlers(srcElement,titles,template,animate);
}
// @Deprecated: Use story.displayTiddler instead
function displayTiddler(srcElement,title,template,unused1,unused2,animate,unused3)
{
story.displayTiddler(srcElement,title,template,animate);
}
// @Deprecated: Use functions on right hand side directly instead
var createTiddlerPopup = Popup.create;
var scrollToTiddlerPopup = Popup.show;
var hideTiddlerPopup = Popup.remove;
// @Deprecated: Use right hand side directly instead
var regexpBackSlashEn = new RegExp("\\\\n","mg");
var regexpBackSlash = new RegExp("\\\\","mg");
var regexpBackSlashEss = new RegExp("\\\\s","mg");
var regexpNewLine = new RegExp("\n","mg");
var regexpCarriageReturn = new RegExp("\r","mg");
}
//}}}
*Received a funding of ~USD20,100 (~INR10,41,481.50) from National Geographic Society (NGS) for Research and Exploration in support of the proposed project title Use of Cell Phone for Detecting and Controlling Infectious Diseases
*Received a funding of Euros17,500 (~INR12,14,749.00) from Nokia Research to conduct research in Mobile Health
*Received a funding of ~INR10,00,000 with Amarjeet Singh from Microsoft Research, Bangalore, India to conduct research in cloud-based services for mobile phones
*Received a funding of Euros10,000 (~INR651670.00) from Nokia Research to establish Mobile Innovation Laboratory at ~IIIT-Delhi
*Received a funding of Euros12,000 (~INR7,45,308.67) from Nokia Research to conduct exploratory research in Mobile Health
*Received a funding of ~INR6,75,000 in terms of 27 Nokia N900 phones from Nokia Research to conduct research in Maemo-based phones
*Received a funding of ~INR10,00,000 with Prof D. Roy Mahapatra (~IISc) from ~ISRO-IISc Space Technology Cell for Wireless Structural Health Monitoring of Impact Damage and Vibration in Spacecraft Structures.
*Received a funding of ~USD50,000 (~INR23,11,249) from Nokia Research, Palo Alto, USA to work on the problems localization using mobile phones.
*Received a funding of Euros40,000 (~INR27,54,988) from Nokia Research to set up a Nokia Lab at ~IISc. Vinayak is the leading the group of faculty members, which consists of Gopinath, Chiranjib, Raghavan, and Vijay in the CSA department.
*Received a funding of ~INR545,975 in terms of 25 Nokia Xpress Music (model 5800) phones from Nokia Research Center, Palo Alto, USA to conduct research in location-based services in India. Additional funding of Rs.20,000 per year for SMS and data plans on the phone.
/***
|''Name:''|LegacyStrikeThroughPlugin|
|''Description:''|Support for legacy (pre 2.1) strike through formatting|
|''Version:''|1.0.2|
|''Date:''|Jul 21, 2006|
|''Source:''|http://www.tiddlywiki.com/#LegacyStrikeThroughPlugin|
|''Author:''|MartinBudden (mjbudden (at) gmail (dot) com)|
|''License:''|[[BSD open source license]]|
|''CoreVersion:''|2.1.0|
***/
//{{{
// Ensure that the LegacyStrikeThrough Plugin is only installed once.
if(!version.extensions.LegacyStrikeThroughPlugin) {
version.extensions.LegacyStrikeThroughPlugin = {installed:true};
config.formatters.push(
{
name: "legacyStrikeByChar",
match: "==",
termRegExp: /(==)/mg,
element: "strike",
handler: config.formatterHelpers.createElementAndWikify
});
} //# end of "install only once"
//}}}
The group is working on the problems of using mobile phones for localization, energy monitoring, and health. For more information, please visit the [[webpage|http://www.iiitd.edu.in/muc]] of the group.
''Alumni:''
*Research Associate (Feb'10 - Apr'10) Anubhuti Roda (MS in EE from USC) is now a faculty in Amity University, Noida
AboutVinayak
RecentNews
ContactInformation
MUCGroup
[[Teaching]]
[[Projects]]
[[Funding]]
PaperPublications
ProfessionalActivities
PosterPublications
[[Talks]]
WorkExperience
[[ConsultancyAssignments]]
[[Press]]
ProgrammingHelp
CoolIdeas
[[Sankalpa]]
[[Credits]]
[[RSS|http://feeds.feedburner.com/naik]] [img[Add to Google|http://gmodules.com/ig/images/plus_google.gif][http://fusion.google.com/add?source=atgs&feedurl=http%3A//www.lecs.cs.ucla.edu/%7Enaik/index.xml]]
~TiddlyWiki <<version>>
[>img[Photo from the website of IISc's Centre for Ecological Science|photos/nilgiri_forest.jpg]]
Nilgiri is a research group, working on networks and systems, at ~IISc. It consists of the following people:
*Dr. Vinayak Naik (Faculty)
*Dharmasena (Researcher from JNCASR, Bangalore) is working on the project of structural health monitoring of airplanes
*[[Ramana Reddy|http://people.csa.iisc.ernet.in/gtvrreddy/]] (Graduate Student) is working on the project for low cost and low powered communication for rural settings
*Prachee Sawant (~MSc research student in CSA) is being co-advised by Vinayak and Gopinath
Here is the [[wiki|http://sites.google.com/site/nilgirigroup/Home]] of our group.
Presentations by the group members:
*A talk by Dharma on ICEM paper [[ppt|http://drona.csa.iisc.ernet.in/~naik/nilgiri/talks/Integrating_Concurrency_Control_and_Energy_Management_in_Device.ppt]]
Recent:
*R. Khurana, S. Sharma, A. Mehra, D. Yadav, -, and Amarjeet Singh. Jiah: Healthcare goes Mobile. Accepted at 3rd International Conference on Mobile Communication for Development ([[M4D2012|http://www.m4d2012.com/]]), New Delhi, India on Feb 28-29, 2012
*P. Singh, A. Singh, S. Lal, and -. ~CVDMagic: A Mobile Based Study for CVD Risk Detection in Rural India. Accepted at International conference on information and communication technologies and development (~ICTD2012), Atlanta, Georgia on March 12-15, 2012 [[pdf|http://www.iiitd.edu.in/~naik/publications/ictd12.pdf]]
*A. Bharadwaj, P. Arjunan, A. Singh, -, and P. Singh. MELOS: A Low Cost and Low Energy Generic Sensing Attachment for Mobile Phones.
** Technical Report ~IIITD-TR-2011-004 [[pdf|https://sites.google.com/a/iiitd.ac.in/tech-reports/IIITD-TR-2011-004.pdf?attredirects=0&d=1]]
** Ted^^x^^NSIT at NSIT, New Delhi, India on April 17, 2011 [[watch|http://www.youtube.com/watch?v=7NylRpcE3Oc&list=PLD8D81D5EEDF960C0]]
** Accepted at The Networked Systems for Developing Regions ([[NSDR11|http://www.dritte.org/nsdr11]]) workshop at The 9th Annual International Conference on Mobile Systems, Applications and Services from June 28-July 1, 2011 in Washington, DC, USA [[pdf|http://www.iiitd.edu.in/~naik/publications/melos_nsdr.pdf]]
*K. Yadav, P. Kumaraguru, A. Goyal, A. Gupta, and -. ~SMSAssassin : Crowdsourcing Driven Mobile-based System for SMS Spam Filtering. Accepted at The 12th Workshop on Mobile Computing Systems and Applications ([[HotMobile'11|http://www.hotmobile.org/2011/Home.html]]) Phoenix, Arizona on March 1-2, 2011 [[pdf|http://sites.google.com/site/atulgoyalpersona/uploads/hotmobile11-paper15.pdf]]
*A. Singh, -, S. Lal, R. Sengupta, D. Saxena, P. Singh, and A. Puri. Improving the Efficiency of Healthcare Delivery System in Underdeveloped Rural Areas. Accepted at Workshop in Networked Healthcare Technology ([[NetHealth|http://www.comsnets.org/nethealth.html]]) at The third International Conference on ~COMmunication Systems and ~NETworkS (COMSNETS) in Bangalore, India from 4 January 2011 to 8 January 2011 [[pdf|http://www.iiitd.edu.in/~naik/publications/netHealth10.pdf]]
*K. Yadav, -, P. Singh, and A. Singh. Alternative Localization Approach for Mobile Phones without GPS. Accepted as a demo at Middleware 2010 (ACM/IFIP/USENIX 11th International Middleware Conference) in Bangalore, India from November 29 - December 3, 2010 [[pdf|http://www.iiitd.edu.in/~naik/publications/middleware10.pdf]]
*K. Yadav, -, A. Singh, P. Singh, P. Kumaraguru, and U. Chandra. Challenges and Novelties while using Mobile Phones as ICT Devices for Indian Masses. Accepted as a short paper at The Networked Systems for Developing Regions ([[NSDR10|http://www.dritte.org/nsdr10/program.html]]) workshop at The 8th Annual International Conference on Mobile Systems, Applications and Services from June 15-18, 2010 in San Francisco, CA, USA. [[pdf|http://www.iiitd.edu.in/~naik/publications/nsdr10.pdf]]
*- and A. Arora. ~ExScal: Designing with Scale. Invited book chapter to appear in Wireless sensor networks: Deployments and Design Frameworks (Designing and Deploying Embedded Sensing Systems), Springer Publications, 2010. Editorship Team: E. Gaura (Director of Cogent Computing, Coventry University), L. Girod (MIT), M. Allen (MIT), and J. Brusey (Coventry University). Peer- reviewers: Thiemo Voigt and Luca Mottola (Swedish Institute of Computer Science). [[pdf|http://www.iiitd.edu.in/~naik/publications/ExScal_Dealing_with_Scale_final.pdf]]
*N. Chakraborty, B. Dharmasena, V. T. Rathor, -, and D. Roy Mahapatra. Implementation of a Wireless Mote with ~Nano-Composite Sensor for Structural Health Monitoring. Accepted at XVI National Seminar on Aerospace Structures (NASAS), Nov 2009 at IITB. [[pdf|http://www.iiitd.edu.in/~naik/publications/shm_nasa09.pdf]]
*H. Zhang and -. Data Transport Control in Wireless Sensor Networks. Appeared in the Handbook of Wireless Ad Hoc and Sensor Networks, Springer Publications, 2009. [[read more|http://repositories.cdlib.org/cens/wps/773/]]
Past:
*A. Husker, I. Stubailo, M. Lukac, -, R. Guy, P. Davis, and D. Estrin. ~WiLSoN: The Wirelessly Linked Seismological Network and its application in the Middle American Subduction Experiment (MASE). Accepted at the Seismological Research Letters (SRL) May/June 2008.
*M. Lukac, -, I. Stubailo, A. Husker, and D. Estrin. In Vivo Characterization of a Wide area 802.11b Wireless Seismic Array.
**CENS Technical Report #74 , April 25 2007. [[read more|http://repositories.cdlib.org/cens/wps/100/]]
*-, A. Arora, P. Sinha, and H. Zhang. Sprinkler: A Reliable and Energy Efficient Data Dissemination Service for Wireless Embedded Devices.
**Research Note ~ExScal-OSU-EN04-2005-05-11, The Ohio State University, May 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/sprinkler_exscal_note_revised.pdf]] (revised version)
**Accepted at The 26th IEEE ~Real-Time Systems Symposium for ~Real-Time Communication and Sensor Network Track, Miami, USA, December 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/sprinkler_camera_ready.pdf]]
**Accepted at the IEEE Transactions on Mobile Computing (TMC), Volume 6, Number 7, July 2007. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/TMC-0072-0306-2.pdf]]
*-. Reliable and Secure Data Transport in Large Scale Wireless Networks of Embedded Devices. Ph.D. Thesis, Computer Science and Engineering, The Ohio State University, 2006. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/dissertation.pdf]]
*- and A. Arora. Harvest: A Reliable and Energy Efficient Bulk Data Collection Service for Large Scale Wireless Sensor Networks.
**Technical Report paper ~OSU-CISRC-4/06-~TR37, The Ohio State University, April 2006. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/harvest_TR.pdf]]
*-, E. Ertin, H. Zhang, and A. Arora. Wireless Testbed Bonsai. Accepted at The Second International Workshop On Wireless Network Measurement (~WiNMee 2006) held in conjunction with The 4th Intl. Symposium on Modeling and Optimization in Mobile, Ad Hoc, and Wireless Networks (~WiOpt 2006), Boston, USA, April 2006. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/bonsai.pdf]]
**Technical Report ~OSU-CISRC-1/06-~TR08, The Ohio State University, January 2006. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/bonsai.pdf]]
*E. Ertin, A. Arora, R. Ramnath, M. Nesterenko, -, S. Bapat, V. Kulathumani, M. Sridharan, H. Zhang, and H. Cao. Kansei: A Testbed for Sensing at Scale.
**Technical Report ~OSU-CISRC-12/05-~TR77, The Ohio State University, December 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/kansei_scaling_TR-77.pdf]]
**Accepted at The Fifth International Conference on Information Processing in Sensor Networks (IPSN 2006) for Sensor Platform, Tools and Design Methods for Networked Embedded Systems (SPOTS) track.
*A. Arora, R. Ramnath, E. Ertin, P. Sinha, S. Bapat, -, V. Kulathumani, H. Zhang, H. Cao, M. Sridhara, S. Kumar, N. Seddon, C. Anderson, T. Herman, N. Trivedi, C. Zhang, M. Gouda, Y. Choi, M. Nesterenko, R. Shah, S. Kulkarni, M. Aramugam, L. Wang, D. Culler, P. Dutta, C. Sharp, G. Tolle, M. Grimmer, B. Ferriera, and K. Parker. ~ExScal: Elements of an Extreme Scale Wireless Sensor Network. Invited to The 11th International Conference on Embedded and ~Real-Time Computing Systems and Applications, Hong Kong, August 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/arora_exscal.pdf]]
*A. Arora, P. Dutta, S. Bapat, V. Kulathumani, H. Zhang, -, H. Cao, M. Demirbas, M. Gouda, Y. Choi, T. Herman, S. Kulkarni, U. Arumugam, M. Nesterenko, A. Vora, and M. Miyashita. A Line in the Sand: A Wireless Sensor Network for Target Detection, Classification, and Tracking. In Computer Networks Journal, Elsevier, 2004. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/ALineInTheSand.pdf]]
*-, A. Arora, S. Bapat, and M. Gouda. Whisper: Local Secret Maintenance in Sensor Networks.
**Technical Report ~OSU-CISRC-1/03-~TR04, The Ohio State University, January 2003. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/Whisper_TR.pdf]]
**Best paper at ~PoDSy (Principles of Dependable Systems) 2003, San Francisco, USA. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/whisper_PoDSy_03.pdf]]
**Invited to IEEE Distributed Systems Online, September 2003 (Journal) [[read more|http://dsonline.computer.org/portal/site/dsonline/menuitem.9ed3d9924aeb0dcd82ccc6716bbe36ec/index.jsp?&pName=dso_level1&path=dsonline/2003_Archives/0309/f&file=gaep.xml&xsl=article.xsl&;jsessionid=Lcmm86npvjmynVjMbWf9QL92hzZNQpmH31kyN60vLl22YrQdTL2M!-1404507079]]
Recent:
*PEIR team. PEIR: Personal Environment Impact Report. IITB's ~TechFest, Mumbai, India, Jan 2009. [[Shashank Singh|http://www.cse.iitb.ac.in/~shashanksingh/]] from IITB helped us in presenting the poster. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/techfest-08_poster.pdf]]
Past:
*D. Skolnik, M. Lukac, V. Naik, W. Kaiser, and J. Wallace, M. Kohler, R. Govindan, P. Davis, I. Stubailo, and S. Irvine. Developments on the CENS. Structural Health Monitoring Front. At CENS Research Review, LA, Oct 2007. [[read more|http://repositories.cdlib.org/cens/Posters/344]]
*O. Gnawali, K. Jang, J. Paek, M. Vieira, K. Chandler, -, D. Estrin, R. Govindan, E. Kohler. Tenet: An Architecture For Tiered Sensor Networks. At CENS Research Review, LA, Oct 2007. [[read more|http://repositories.cdlib.org/cens/Posters/360]]
*I. Stubailo, A. Husker, A. Dominquez, M. Lukac, -, R. Guy, P. Davis, and D. Estrin. Latest Scientific and Technological Results from the Mexico Experiment. At CENS Research Review, LA, Oct 2007. [[read more|http://repositories.cdlib.org/cens/Posters/343]]
*P. Davis, D. Estrin, R. Guy, I. Stubailo, A. Husker, M. Lukac, -, and S. Irving. Embedded Network Approaches to Multiscale Seismic ~Networks-Overview. At CENS NSF site visit, LA, May 2007. [[read more|http://repositories.cdlib.org/cens/Posters/345]]
*D. Skolnik, M. Lukac, -, W. Kaiser, J. Wallace, M. Kohler, R. Govindan, P. Davis, I. Stubailo, and S. Irvine. Developments on the CENS Structural Health Monitoring Front. At CENS NSF site visit, LA, May 2007. [[ppt|http://www.lecs.cs.ucla.edu/~naik/publications/Seismic_SHM_2007_Reduced.PPT]]
*-, L. Girod, M. Lukac, N. Ramanathan, B. Greenstein, E. Kohler, and D. Estrin. ~EmStar--2: The Next Generation of Programming Development Environment for 32-bit Class of Embedded Devices. At the 4th Annual CENS Research Review, LA, Oct 2006. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/Research_Review_EmStar-2_poster_v1.pdf]]
*M. Lukac, -, A. Husker, I. Stubailo, R. Guy, P. Davis, and Deborah Estrin. ~GeoNet: A Platform for Rapid : A Platform for Rapid Distributed Geophysical Sensing Distributed Geophysical Sensing. Poster under submission at 4th Annual CENS Research Review, LA, Oct 2006. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/Research_Review_GeoNet_poster_v4.2.pdf]]
*A. Arora, R. Ramnath, P. Sinha, E. Ertin, S. Bapat, -, V. Kulathumani, H. Zhang, H. Cao, M. Sridhara, S. Kumar, N. Seddon, C. Anderson, T. Herman, N. Trivedi, C. Zhang, M. Gouda, Y. Choi, M. Nesterenko, R. Shah, S. Kulkarni, M. Aramugam, L. Wang, D. Culler, P. Dutta, C. Sharp, G. Tolle, M. Grimmer, B. Ferriera, and K. Parker. Project ~ExScal, Invited to International Conference on Distributed Computing in Sensor Systems (DCOSS), CA, USA, June 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/arora_exscal.pdf]]
*A. Arora, P. Sinha, E. Ertin,-, H. Zhang, M. Sridharan, and S. Bapat. ~ExScal Backbone Network Architecture.
**Displayed at The Ohio state University Open House, Columbus, USA, Feb 2005
**Displayed at The Second ~TinyOS Technology Exchange, Berkeley, USA, Feb 2005.
**Accepted at Mobisys, Seattle, USA, June 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/mobisys_exscal_poster.pdf]]
*-, S. Bapat, H. Zhang, C. Anderson, G. Fox, J. Wieseman, A. Arora, E. Ertin, and R. Ramnath. Kansei: Sensor Testbed for ~At-Scale Experiments. Presented at The Ohio State University Open House, Columbus, USA, Feb 2005 and at The Second ~TinyOS Technology Exchange, Berkeley, USA, Feb 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/publications/TestbedPoster.pdf]]
Here are articles and videos about work in which Vinayak was involved:
*An article in Delhi's ~MidDay about ~SMSAssassin project [[view|http://www.mid-day.com/news/2011/mar/070311-software-segregates-spam-messages-cellphones-regular-ones.htm]]
*An article about using mobile phones to find routes for Metro and DTC in Delhi [[pdf|http://www.iiitd.edu.in/~naik/press/public_transport_himdustan_times.pdf]]
*A story about school children using PEIR in [[NPR|http://www.npr.org/templates/story/story.php?storyId=101963188&ft=1&f=1001]] and [[KQED|http://www.kqed.org/quest/radio/tracking-carbon-through-your-cell-phone]]
* A blurb about PEIR appeared in [[DNA|http://epaper.dnaindia.com/epapermain.aspx?queryed=9&eddate=1%2f22%2f2009]], which is a newspaper in India
*A demo on PEIR appeared in [[IITB|http://www.iitb.ac.in/]]'s [[TechFest|http://www.techfest.org/]]
*An article on PEIR appeared in Fall 2008 issue of UCLA Engineer, the magazine of the UCLA Henry Samueli School of Engineering and Applied Science [[pdf|http://www.engineer.ucla.edu/magazine/UEf08.pdf]] Please check page number 10 for the article.
*A demo on PEIR appeared in [[Wired|http://www.wired.com/]] magazine's [[NextFest|http://www.wirednextfest.com/]]
*An article about PEIR in CNBC [[read more|http://www.cnbc.com/id/25193231/]]
*A video on PEIR in ~YouTube [[view|http://www.youtube.com/watch?v=t-ItfpA3XiY]]
*An article about ~PeruNet in La Republica from Peru [[read more|http://www.lecs.cs.ucla.edu/~naik/media/la_republica.pdf]]
*A video about ~ExScal shot by the ~ExScal team [[view|http://www.lecs.cs.ucla.edu/~naik/media/ExScal.avi]]
*A video about A Line In The Sand in Ohio News Network [[view|http://www.lecs.cs.ucla.edu/~naik/media/CBS.rm]]
*An article about A Line In The Sand in News in Engineering published by Ohio State University [[read more|http://www.lecs.cs.ucla.edu/~naik/media/ohio_state_news.pdf]]
*One of the two judges for Mobile App Development competition ~App-Kraft at [[Esya|http://http://esya.iiitd.ac.in]]'11
*A member of the Senate Committee at ~IIIT-Delhi since July'11
*Chair of the Computer Infrastructure Committee at ~IIIT-Delhi since Aug'10
*A member of the ~MTech admission committee in IIIT Delhi from Dec'10 -June'11
*A member of the program committee for the [[Forth International Conference on Contemporary Computing|http://www.jiit.ac.in/jiit/ic3/]] (~IC3), JIIT University, Noida, August 8-10, 2011
*A reviewer for IEEE Transactions on Mobile Computing (TMC'11)
*A member of the team that organized a "Using mobile phones for healthcare in India" workshop, where Prof. Deborah Estrin gave a keynote
*A program committee member for [[PhD Forum|http://www.comsnets.org/PhDforum.html]] to be held at COMSNET'10 in Bangalore
*A program committee member for [[Nethealth|http://www.comsnets.org/nethealth.html]] workshop to be held with COMSNET'10 in Bangalore
*A reviewer for IEEE Transactions on Parallel and Distributed Systems (TPDS'10)
*An external examiner for Himanshu Gupta's (in CSE at IIT Delhi) ~MTech thesis' viva
*A program committee member of [[Sensing Technology at the National Exhibition Centre|http://www.sensingtechnology.co.uk/news/categoryfront.php/id/32/Exhibition.html]] in Birmingham, UK
*A program committee member of Networks track at The Seventeenth National Conference on Communications ([[NCC 2011|http://www.ncc.org.in/ncc2011/index.html]]) to be held in ~IISc, Bangalore
*A member of the team that organized a [[Workshop on Sana Mobile|http://www.iiitd.edu.in/muc/#%5B%5BSummer%20Workshop%20on%20Sana%20Mobile%5D%5D]] at ~IIIT-D from July 5 - 9, 2010
*A reviewer for IEEE Transactions on Mobile Computing (TMC'10)
*A member of the program committee for the [[Third International Conference on Contemporary Computing|http://www.jiit.ac.in/jiit/ic3/]] (~IC3), JIIT University, Noida, August 9-11, 2010
*A member of the Computer Infrastructure Committee at ~IIIT-Delhi since Jan'10
*A reviewer for IEEE Transactions on Parallel and Distributed Systems (TPDS'09)
*Invited to attend Workshop on Geospatial Information for Developing Countries: Science and Technology at IITB from Dec 16 - 18, 2009 [[read more|http://www.cse.iitb.ac.in/gise/workshop]]
*Organized following talks at ~IISc in 2009: Dr. Sangita Bhattacharya (Intel India Systems Research Center, Bangalore), Prof. Anish Arora (Ohio State University), and Dr. Sameera Poduri (University of Southern California)
*A member of the program committee for Advanced Computing and Communications (ADCOM 2009), Bengaluru, 14 -18 December 2009 [[read more|http://www.adcom2009.com/]]
*An invited examiner for IITB's 7 Masters students of [[SYNERG|http://www.cse.iitb.ac.in/synerg/]] group in CSE for the academic year ending in June'09
*A reviewer for ACM Transactions of Sensor Networks (TOSN'09)
*A reviewer for Wireless Networks (WINET'09) journal by Springer
*A member of the program committee for Wireless Sensing Demonstrator Showcase 2009 held by the Wireless Sensing Interest Group (~WiSIG) of the Sensors & Instrumentation Knowledge Transfer Network (SIKTN) [[read more|http://eproductsktn.globalwatchonline.com/epicentric_portal/site/sensors/menuitem.0e42f727f0570706cdf7d5308380e1a0/?mode=2]]
*An external reviewer for the 4th International Conference on Testbeds and Research Infrastructures for the Development of Networks & Communities (TRIDENTCOM'08)
*A reviewer for the IEEE Transactions on Mobile Computing (TMC'07)
*An external reviewer for the IEEE International Conference on Communications Wireless Networking Symposium (ICC'08 WN)
*Guest Lecturer for Prof Deborah Estrin's ~CS118 course about Computer Network Fundamentals, Fall 2007 at UCLA
*A reviewer for the EURASIP Journal on Advances in Signal Processing (JASP'07)
*A reviewer for the ACM Transactions on Autonomous and Adaptive Systems (TAAS'07)
*An external reviewer for the 5th ACM Conference on Embedded Networked Sensor Systems (~SenSys'07)
*The coordinator for the CENS technical seminar series for the Spring'07 quarter
*A member of the program committee for the First International Workshop on Mobile Ad hoc and Sensor Systems for Global and Homeland Security (~MASS-GHS07) in conjunction with The Fourth IEEE International Conference on Mobile Ad-hoc and Sensor Systems on October 12, 2007 at Pisa, Italy
*An organizer of the tutorial titled "Wireless sensing systems for acoustic and seismic monitoring: Hands on tutorial" at the International Conference on Information Processing in Sensor Networks (IPSN'07), April 2007 at Cambridge, MA, USA
*A member of the program committee for the 3rd IEEE International Conference on Distributed Computing in Sensor Systems (DCOSS '07), June 18 - 20, 2007 at Santa Fe, New Mexico, USA
*Stargate
**Mote programming (stargate release 6.1) [[html|http://www.lecs.cs.ucla.edu/~naik/programming/mote_programming_6_1.html]]
**Mote programming (stargate release 7.1 and 7.2) [[html|http://www.lecs.cs.ucla.edu/~naik/programming/mote_programming_7.html]]
**Changing transmission power of 802.11 wireless cards [[html|http://www.lecs.cs.ucla.edu/~naik/programming/transmission_power_802.11.html]]
**Reboot a mote (stargate release 7.1 and 7.2) [[html|http://www.lecs.cs.ucla.edu/~naik/programming/reboot_a_mote.html]]
**tmote programming (stargate release 7.1 and 7.2) [[html|http://www.lecs.cs.ucla.edu/~naik/programming/tmote_reptogramming.htm]]
*Mote
**Testing ~PageEEPROM [[html|http://www.lecs.cs.ucla.edu/~naik/programming/testing_pageEEPROM.htm]]
*~EmStar
**Installing Devfs kernel on the Stargate [[html|http://www.lecs.cs.ucla.edu/~naik/programming/install_emstar_stargate.html]]
**~FUSD-based IPC [[html|http://www.lecs.cs.ucla.edu/~naik/programming/FUSD-based_IPC_linux.html]]
**~FAQs [[html|http://www.lecs.cs.ucla.edu/~naik/programming/emstar_faqs.htm]]
*Power PC (Apple)
**ARM Tool Chain for Linux on Power PC [[html|http://www.lecs.cs.ucla.edu/~naik/programming/arm_tool_chain_powerpc.html]]
Recent:
*Nokia Research Center at Palo Alto has suppled 5800 ~XpressMusic mobile phones, and SIM cards to students to design and implement innovative research projects at ~IISc.
*Structural health monitoring of airplanes using motes and carbon nanotube (CNT) sensors. The collaborator is [[Prof. D. Roy Mahapatra|http://www.aero.iisc.ernet.in/droymahapatra/index.html]] from Aeorspace Engineering department at ~IISc
*A low cost and low power communication system using handheld devices. The funding is from [[Geodesic|http://www.geodesic.com]], India
*A mobile phones-based social networking project for semi-urban population. The collaborator is [[Nokia Research Center, India|http://research.nokia.com/research/labs/teams/systems_research_india]]
*A ~DRDO-funded project to use 100 Telosb motes along with PIR sensors to detect intrusion. The collaborators are from ECE and CEDT departments at ~IISc
Past:
*[[PEIR|http://peir.cens.ucla.edu]] project to measure personal impact of the participants on the environmental pollution and particpants' exposure to the pollution using cell phone
*Seismic studies in [[Peru|http://research.cens.ucla.edu/areas/2007/Seismic/]]: 50 stargates deployed over 294Kilometers
*A scripting language, emulation support, and implementation of ~CentRoute for [[Tenet|http://enl.usc.edu/projects/tenet/]]
*Measuring magnetic field via autonomous helicopters and planes (~HeliEMag)
*Aftershocks monitoring to study earthquakes ([[GeoNet|http://research.cens.ucla.edu/projects/2007/Systems/Geonet/]])
*Structural Health Monitoring of the tall buildings in LA ([[SHM|http://research.cens.ucla.edu/projects/2007/Seismic/Tall_Special/]])
*Seismic studies in Mexico ([[MASE|http://research.cens.ucla.edu/projects/2005/Seismic_Monitoring/broadband/]]): 64 stargates deployed over 250Kilometers
*[[EmStar|http://cvs.cens.ucla.edu/emstar/]]
*[[MERHAB|http://www.cop.noaa.gov/stressors/extremeevents/hab/current/fact-merhab.html]] project for the rapid analysis of pseudo-nitzschia & domoic acid, locating events in near-real time: Network of tens of aquatic robots using freewave radios
*[[NESTFE|http://nest.cs.berkeley.edu/nestfe/index.php/Main_Page]]: A network of 100 sensor nodes (Trio)
*[[Kansei|http://ceti.cse.ohio-state.edu/kansei/]]: A testbed of 200 coupled motes and stargates networked using IEEE 802.11b wireless ethernet and IEEE 802.3 wired ethernet (Currently administered by Mukundan Sridharan)
*[[ExScal|http://cast.cse.ohio-state.edu/exscal/]]: A network of 1000 sensor nodes (XSM) and 203 stargates
*[[A Line in the Sand|http://cast.cse.ohio-state.edu/exscal/index.php?page=alineinthesand.xml]]: A network of 90 sensor nodes (MICA 2)
*Poster by Kuldeep, Shrey, and Vibhas titled "Intelligent Information Access on Low-end Mobile Phones" get accepted at MSR India [[Techvista'12|http://research.microsoft.com/en-us/events/techvista2012/techvista2012_selected_posters.pdf]], Kolkata
*Siddhartha Asthana was awarded TCS ~PhD Fellowship for four years
*Kuldeep and Amar's project proposal titled '~AuthenticateMe : Enabling Authentication using Aadhaar' receives funding from [[NVIDIA|http://research.nvidia.com/content/tegra-prototype-results]]
*Kanika, Hemank, and Kuldeep's ~Mobile2Location application won First Prize at [[Esya|http://esya.iiitd.ac.in]] Mobile Development competition
*Received a grant of INR 10,00,000 along with Amarjeet Singh from Microsoft Research, India to conduct research in Mobile Computing
*Kuldeep to be an intern at Nokia Research, Bangalore during Fall
*Vinayak is invited to attend Faculty Summit at the Microsoft Headquarters in Redmond in July, 2011
*Kuldeep is awarded MSR India ~PhD Fellowship
*MELOS paper got accepted at NSDR'11
*Abhishek presented MELOS at Ted^^x^^NSIT'11 [[watch|http://www.youtube.com/watch?v=7NylRpcE3Oc&list=PLD8D81D5EEDF960C0]]
*Kuldeep to be a summer research intern at the Mobility, Networks, and Systems group in Microsoft Research India at Bangalore
He is a member of [[Sankalpa|http://www.sankalpaindia.org]], which is an organization helping micro-level projects related to social, economical, or educational development of India.
/***
|''Name:''|SparklinePlugin|
|''Description:''|Sparklines macro|
***/
//{{{
if(!version.extensions.SparklinePlugin) {
version.extensions.SparklinePlugin = {installed:true};
//--
//-- Sparklines
//--
config.macros.sparkline = {};
config.macros.sparkline.handler = function(place,macroName,params)
{
var data = [];
var min = 0;
var max = 0;
var v;
for(var t=0; t<params.length; t++) {
v = parseInt(params[t]);
if(v < min)
min = v;
if(v > max)
max = v;
data.push(v);
}
if(data.length < 1)
return;
var box = createTiddlyElement(place,"span",null,"sparkline",String.fromCharCode(160));
box.title = data.join(",");
var w = box.offsetWidth;
var h = box.offsetHeight;
box.style.paddingRight = (data.length * 2 - w) + "px";
box.style.position = "relative";
for(var d=0; d<data.length; d++) {
var tick = document.createElement("img");
tick.border = 0;
tick.className = "sparktick";
tick.style.position = "absolute";
tick.src = "data:image/gif,GIF89a%01%00%01%00%91%FF%00%FF%FF%FF%00%00%00%C0%C0%C0%00%00%00!%F9%04%01%00%00%02%00%2C%00%00%00%00%01%00%01%00%40%02%02T%01%00%3B";
tick.style.left = d*2 + "px";
tick.style.width = "2px";
v = Math.floor(((data[d] - min)/(max-min)) * h);
tick.style.top = (h-v) + "px";
tick.style.height = v + "px";
box.appendChild(tick);
}
};
}
//}}}
Recent:
*Invited talk with Amarjeet Singh at Microsoft Research, Bangalore on Low Energy Localization and Sensing Attachment for Mobile Phones on July 28, 2011
*Invited talk at Coventry University, UK on MELOS: A Low Cost and Low Energy Generic Sensing Attachment for Mobile Phones on June 22, 2011
*Guest lecturer at [[Wireless Sensor Networks|http://iucee.org/iucee/course/info.php?id=204]] course by Prof Anish Arora, Ohio State University organized by IUCEE
*Sprinkler: A Reliable and Energy Efficient Data Dissemination Service for Extreme Scale Wireless Networks of Embedded Devices at ~IIIT-Delhi on Sept 25, 2009
*Sprinkler: A Reliable and Energy Efficient Data Dissemination Service for Extreme Scale Wireless Networks of Embedded Devices at IIT Kanpur on Sept 10, 2009
*Invited talk at [[Sensemaking with Smartphones|http://robotics.usc.edu/~sameera/case2009smartphones/pmwiki/]] workshop at the [[IEEE Conference on Automation Science and Engineering|http://alliance.seas.upenn.edu/~case2009/cgi-bin/pmwiki/index.php]] (CASE 2009), on August 22, 2009 in Bangalore [[pdf|https://drona.csa.iisc.ernet.in/~naik/talks/CASE_workshop_phones'09.pdf]]
*Invited talk at the joint workshop on Traffic Monitoring and mHealth Applications by ~IISc and Bell Labs on July 10, 2009 in ~IISc, Bangalore
*~ExScal Team's Experiences with PIR Sensing, Invited talk at Workshop on Sensing for Intrusion Detection with ~WSNs at ECE, ~IISc on April 16, 2009 (Due to medical reasons, Prof Anish Arora made the presentation on my behalf)
*Realizing ~Large-Data, ~Long-Distance, and ~Large-Scale Embedded Networked Sensing Systems for Public Health, Seismology, and Border Defense, Invited talk at [[Bell Labs|http://www.bell-labs.com/org/bl-india/]], Bangalore, India on March 16, 2009
*Realizing ~Large-Data, ~Long-Distance, and ~Large-Scale Embedded Networked Sensing Systems for Public Health, Seismic Science, and Border Defense at Indian Institute of Technology Bombay(IITB), Mumbai on Oct 15, 2008 at 2PM
*Realizing ~Large-Data, ~Long-Distance, and ~Large-Scale Wireless Sensing Systems for Public Health, Seismic Science, and Border Defense at Indian Institute of Science (~IISc), Bangalore on September 9, 2008 at 4PM. [[read more|http://www.csa.iisc.ernet.in/sem-evts/seminars.php#09-09-08-1600]]
Past:
*PEIR. An invited speaker with Eric Howard at CENS technical seminar series on July 18, 2008. [[read more|http://research.cens.ucla.edu/events/?event_id=187]] [[pdf|http://www.lecs.cs.ucla.edu/~naik/talks/cens_presentation_peir.pdf]]
*Wireless sensing systems for acoustic and seismic monitoring: Hands on tutorial at the Information Processing in Sensor Networks (IPSN) with Dr. Lewis Girod on April 24, 2007 at MIT in Cambridge, MA. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/seismic_tutorial/presentation.ppt]]
*Reliable and Secure Data Transport in Large Scale Wireless Networks of Embedded Devices (Based on a true story) at the Ohio State University on June 5th, 2006 at 12:30PM in DL 263. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/defense_talk.ppt]]
*A Combo Appetizer of WSN tools at The Ohio State University on May 10th, 2006 at 5PM in DL 280. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/naik_emstar-pytos-avrora.ppt]]
*Wireless Testbed Bonsai. NEST PI Retreat at the Ohio State University, Columbus, OH on Dec Dec 17th 2005. [[pdf|http://www.lecs.cs.ucla.edu/~naik/talks/NEST_bonsai.pdf]]
*Sprinkler: A Reliable and Energy Efficient Data Dissemination Service for Extreme Scale Wireless Networks of Embedded Devices. An invited speaker at Center for Embedded Networked Sensing (CENS) in UCLA, Los Angeles, CA on Oct 21st 2005. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/cens_talk.ppt]]
*Reliable and Secure Data Transport in Extreme Scale Wireless Networks of Embedded Devices. Ph.D. Candidacy talk at the Computer Science and Engineering (CSE) department in the Ohio State University, October 2005. This talk is the first presentation of his dissertation topic. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/candidacy_talk.ppt]]
*~ExScal: Elements of an Extreme Scaling Wireless Sensor Network. On behalf of Prof Anish Arora, presented an invited paper titled ~ExScal: Elements of an Extreme Scale Wireless Sensor Network at the 11th IEEE International Conference on Embedded and ~Real-Time Computing Systems and Applications (RTCSA), Hong Kong, August 2005. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/exscal_elements_rtcsa.ppt]]
*Sprinkler. An invited speaker at Microsoft Research, India on June 28, 2005. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/sprinkler_msr.ppt]]
*Whisper: Local Secret Maintenance in Sensor Networks. An invited speaker at INFOSEC Forum VII, presented by Central Ohio Chapters of ISSA, ~InfraGard, Columbus Technology Council, ~OHIOforEDI, and ACM at Columbus, OH on May 23rd, 2005. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/Whisper_PoDSy_2.ppt]]
*~ExScal Backbone Network Architecture. A keynote speaker at Stargate Developer's Forum organized by Intel Research at Santa Clara, CA on May 2nd, 2005. [[ppt|http://www.lecs.cs.ucla.edu/~naik/talks/DF_naik_talk.ppt]]
*An Introduction to ~EmStar (A practitioner's perspective) at The Ohio State University on April 28th, 2005 at 8PM in DL 280. [[ppt|naik_emstar.ppt]]
*M. Gouda, A. Arora, Y. Choi, and -. Routing on a Logical Grid. Presentation given in PI meeting of NEST program in DARPA, January 2004.
*[[CSE535 Mobile Computing|http://www.iiitd.edu.in/~naik/teaching/mc/index.html]] in ~Jan-Apr'12 semester
*[[CSE231 Operating Systems|http://www.iiitd.edu.in/~naik/teaching/os]] in ~Aug-Dec'11 semester
*[[CSE537 Embedded Systems|http://www.iiitd.edu.in/~amarjeet/EmSys.html]] with Prof Amarjeet Singh in ~Jan-Apr'11 semester
*[[CSE535 Mobile Computing|http://www.iiitd.edu.in/~naik/teaching/mc/index.html]] in ~July-Dec'10 semester
*[[Computer Networks|https://sites.google.com/a/iiitd.ac.in/computer-networks/]] and [[Mobile Computing|https://sites.google.com:443/a/iiitd.ac.in/mobilecomputing2010/]] (only for grad students) with Prof Amarjeet Singh and Prof Pushpendra Singh in ~Jan-Apr'10 semester
*A visiting at Computer Science and Automation (CSA) department in Indian Institute of Science (~IISc), Bangalore, India from Winter 2009 - Fall 2009.
*A member of the research staff at CENS in UCLA, CA from Fall 2006 - Fall 2008.
*Graduate Research Associate at the Ohio State University, OH from Fall 2002 -- Summer 2006.
**Working in the Dependable Distributed and Networked Systems group led by Prof. Anish Arora.
*Graduate Teaching Associate at the Ohio State University, OH from Fall 2000 -- Summer 2006.
**Assisted Prof Arora to design and grade lab assignments and projects for Introduction to Network Security class in Spring 2004, 2005, and 2006.
**Assisted Prof Arora to design lab assignments and projects for Introduction to Wireless Sensor Networks in Spring 2005.
**Computer Assisted Problem Solving for Business (CSE 200).
**Elementary Computer Programming with Java as an example (CSE 201).
**Computer Assisted Problem Solving (CSE 100).
*Summer Research Intern at Telcordia Applied Research Greenhouse (formerly known as Bellcore), NJ under the guidance of Dr. Simon Tsang in Summer 2001.
**Worked on remote management and configuration of broadband home router/gateway.
*Assistant Software Engineer at Tata Consultancy Services (TCS), India from Fall 1999 -- Summer 2000. Part of system software group to administer the on-line transaction system of National Securities of Depository Ltd (NSDL). The profile of the job included DB/2 database administrator and network administration for S/360 mainframe.