Shubham Jindal

Total Page:16

File Type:pdf, Size:1020Kb

Shubham Jindal SHUBHAM JINDAL ACADEMIC DETAILS Year Degree / Exam Institute GPA/Marks(%) ---- B.Tech and M.Tech in Computer Science & Engineering Indian Institute of Technology Delhi 8.475 2011 CBSE Abhinav Public School, Delhi 96% 2009 CBSE Cambridge Public School, Rewari 94.4% SCHOLASTIC ACHIEVEMENTS IITJEE 2011 : Secured All India Rank 264 (GE) among 4.5 lakh applicants in IITJEE, 2011 AIEEE 2011 : Secured All India Rank 230 (GE) among 12 lakh applicants in AIEEE, 2011 2 National Awards : Safe Hands-Android App for Safety of Women at IIT Kharagpur and IIM Ahmedabad. CBSE Merit Certificate : for being in top 0.1% in Chemistry & Mathematics in Class XII. INTERNSHIPS Internet of Things, IBM (May, 2015 - July, 2015) : Product is being used by iRam Technologies Pvt Ltd. Developed a Python package on Raspberry Pi to send location and UUID from discoverable assets to IBM Bluemix. Implemented an interface on IBM Bluemix platform to create inventory, manage and notify the absence of assets. Developed an Android app which interacts with the said interface for geo-fencing assets and track missing assets. Implementation of W3C Web Cryptography API, INRIA, Paris (May, 2014 - July, 2014) : Implemented W3C Web Cryptography API, OAuth2.0 and a robust CSRF-attack prevention on top of Defensive JS, which runs safely on untrusted pages. [ Available at http://www.defensivejs.com/webcrypto/ ] Implementation was 100% more efficient than Microsoft and comparable to Google. Asynchronous Secret Sharing Protocol, Max Planck Institute, Germany (May, 2013 - July, 2013) : Implemented a multi party computation protocol over an open source project, CrySP - a Distributed Key Generator. Implemented Encryption Schemes, Signatures, Commitment Schemes and Zero Knowledge Proofs. PROJECTS IIT Delhi Thesis: Keyword Search in Graphs : Supervisor: Prof. Maya Ramanath Developing a Google like query engine for databases with support for spontaneous autocomplete & dynamic results Built inverted index on RDF data & assigned node-weights using tf-idf making it useful to query large sized graphs. Contributor - Mozilla : Worked on more than 15 bugs in Firefox, SeaMonkey, PDFjs, Shumway and Developer Tools. Contributed in building a Developer Tool - CSS Background Highlighter & Performance Dashboard for Firefox. Book Reviewer : - Mastering OAuth 2.0 by PACKT Publishers: To be published in October 2015. Big Data Analysis-NREGA : Analyzed data by ML techniques & generating histograms, bar charts and CDFs. Results: Reported instances of corruption, low wage payoffs, misuse of job cards & lack of awareness. Web Based ERP system for IITD : To be deployed in IIT Delhi for all final year students. Implemented a hassle free, paper-less No-Dues system for adding, modifying and clearing dues, in a team of 2 Course Management System : Built an entire database of all courses, students & professors by parsing data from various sources and developed features like course ratings, course questions and viewing friends’ courses. Paper Plane - A 3D Game : Developed an endless-running with collision detection, shadow mapping, explosion, motion blur, infinite terrain (using vertex buffer objects), sound effects and glow using pixel shaders in OpenGL. Implementation of Inverted Index : Complemented SimpleDB with an implementation for developing and querying an inverted index using Lexer, Parser, Query Planner & Index Planner, in a team of 3. Big Data Visualization and Analysis : Built an interactive web dashboard for a hypothetical social website. Performed statistical tests by clustering data, building histograms, heat maps, motion charts, pie charts using D3.js DX Ball : Developed an FPGA implementation of the popular ball-and-paddle game. Displayed at Open House 2013. TECHNICAL SKILLS Java, Python, C++, Ocaml, Android, Web2py, Django, MATLAB, SQL, Git, API Blueprints, PowToon Web: Frontend - Javascript, ReactJS, JSX, LiveScript. Backend - PHP, NodeJS, ExpressJS, Postgres, MongoDB POSITIONS OF RESPONSIBILITY Web Coordinator (July, 2014 - Oct, 2014) : Developed the website for Rendezvous, biggest college cultural fest. System Administrator, CSE (Jan, 2013 - Present) : Voluntarily managing the department’s website, IT infrastructure, storage, servers, routers, user accounts and web-services like project archivals & course management. Chairman, Technical Head ACES-ACM, Computer Science Departmental Society (Jan, 2012 - May, 2015) : Led a team of 20 to conduct 40+ events including Microsoft Code.Fun.Do, Google DevFestX & CSETryst 2012-15. .
Recommended publications
  • Mozilla's Shumway Pushes Flash to Off-Ramp (2012, June 7) Retrieved 25 September 2021 From
    Mozilla's Shumway pushes Flash to off- ramp 7 June 2012, by Nancy Owano hope is that it will work well enough to enable a smooth transition where Flash development stays alive for a few more years if Flash fades as a standard browser plug-in. "Shumway is community-driven and supported by Mozilla," says the project statement. "Integration with Firefox is a possibility if the experiment proves successful." If Shumway does become part of Firefox, Mozilla will enjoy Flash compatibility as standard without having to collaborate with Adobe. Shumway is described as a "clean" solution in that it sidesteps any security issues in the Flash player; there is no Adobe code being run in order to render the (Phys.org) -- Mozilla's experimental project on content. GitHub, a hosting service for development projects, is taking on a happy buzz where developers look Developers have had to put up with a series of at a future that may not include Adobe Flash. The reports and fixes of vulnerability exploits stemming project, called Shumway, is designed to try to from outdated versions of Adobe Flash Player. interpret SWF (Flash files) using browser-standard Flash is nonetheless pervasive; most online video technologies such as HTML5 and JavaScript. Said content uses Flash, which continues to be a key one anonymous Slashdot writer-reflecting general part of browsing; the Web browser plug-in is still developer response-- "All I can say is please and popular and is with all the grousing a principal thank you!" The Shumway project replaces Flash addition for desktop browsing.
    [Show full text]
  • Optimization Coaching for Javascript
    Optimization Coaching for JavaScript Vincent St-Amour1 and Shu-yu Guo2 1 PLT @ Northeastern University Boston, Massachusetts, USA [email protected] 2 Mozilla Research San Francisco, California, USA [email protected] Abstract The performance of dynamic object-oriented programming languages such as JavaScript depends heavily on highly optimizing just-in-time compilers. Such compilers, like all compilers, can silently fall back to generating conservative, low-performance code during optimization. As a result, pro- grammers may inadvertently cause performance issues on users’ systems by making seemingly inoffensive changes to programs. This paper shows how to solve the problem of silent opti- mization failures. It specifically explains how to create a so-called optimization coach for an object-oriented just-in-time-compiled programming language. The development and evaluation build on the SpiderMonkey JavaScript engine, but the results should generalize to a variety of similar platforms. 1998 ACM Subject Classification D.2.3 [Software Engineering]: Coding Tools and Techniques; D.3.4 [Programming Languages]: Processors—Compilers Keywords and phrases Optimization Coaching, JavaScript, Performance Tools Digital Object Identifier 10.4230/LIPIcs.ECOOP.2015.999 1 Optimization Coaching for the Modern World An optimization coach [22] opens a dialog between optimizing compilers and programmers. It thus allows the latter to take full advantage of the optimization process. Specifically, coaches provide programmers with actionable recommendations of changes to their programs to trigger additional optimizations. Notably, the changes may not preserve the semantics of the program. Our experiences with a prototype optimization coach for Racket show promising results. This prototype exploits Racket’s [9] simple ahead-of-time byte-compiler,1 which performs basic optimizations.
    [Show full text]
  • Michigan Speech Language Guidelines
    Michigan Speech-Language Guidelines: Suggestions for Eligibility, Service Delivery, and Exit Criteria Revised. Michigan Speech-Language–Hearing Association Public School Committee December, 2006 Edited by Maureen Staskowski, Ph.D., CCC-SLP Consultant for Speech and Language Impaired Macomb Intermediate School District To duplicate materials---------------------------------------------------------------------------------------------- You may duplicate these materials with the inclusion of the following credit statement: Permission to use this material granted December 2006 from The Michigan Speech-Language Hearing Association. To reference materials, please use----------------------------------------------------------------------------- Michigan Speech-Language Hearing Association. (2006). Michigan Speech-Language Guidelines: Suggestions for Eligibility, Service Delivery, and Exit Criteria Revised. Lansing, MI: Author. Thank You to the many professionals and their school districts responsible for this document With Special thanks to Dr. Lizbeth Stevens Keisha Nolan Karen Graham Terry Lange-Winkel Kendall Giovannini Lana Budde Jan McCosky Tina Kunarski Yvonne Belleman Andrea Phillips Heather Webber Belinda Andrews Gail Elliott Arlene Millman Deborah Beeler Kelly Falter Stephanie Nagy Georgia Boyle Laura Griffith Nickola W. Nelson Michele Bridges Marybeth Grosfield Kimberly Renshaw Robin Brighton Katy Hime Sue Rosko, Darlene Broome Anne Howard Susan Swarz Kathleen Bungart Cathryn Kelenske Megan Shuboy Beth Burkhard Yeary Ilene Klegon Sally
    [Show full text]
  • Dissertation
    HOWTOGENERATEACTIONABLE ADVICEABOUTPERFORMANCE PROBLEMS Vincent St-Amour Submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy College of Computer and Information Science Northeastern University Boston, Massachusetts April 2015 Vincent St-Amour: How to Generate Actionable Advice about Performance Problems, Doctor of Philosophy, Northeastern University, Boston, Massachusetts © April 2015 ABSTRACT Performance engineering is an important activity regardless of ap- plication domain, as critical for server software as for mobile appli- cations. This activity, however, demands advanced, specialized skills that require a significant time investment to acquire, and are therefore absent from most programmers’ toolboxes. My thesis is that tool support can make performance engineering both accessible and time-efficient for non-expert programmers. To support this claim, this dissertation introduces two novel families of performance tools that are designed specifically to provide actionable information to programmers: optimization coaches and feature-specific profilers. This dissertation presents blueprints for building tools in these families, and provides examples from tools that I have built. v ACKNOWLEDGMENTS I would like to thank first and foremost my advisor Matthias Felleisen, who has taught me most of what I know today about the craft of research, writing, and design. He is the best advisor and ally I could have wished for, and I am incredibly grateful for of all the help and guidance he has provided me over the years. This work would not have been possible without the help of my collaborators, with whom I have worked on the projects described in these pages and others along the way: Leif Andersen, Eric Dob- son, Matthias Felleisen, Robby Findler, Matthew Flatt, Shu-yu Guo, Asumu Takikawa, Sam Tobin-Hochstadt, and Neil Toronto.
    [Show full text]
  • A Newsy Week!
    Security Now! Transcript of Episode #427 Page 1 of 34 Transcript of Episode #427 A Newsy Week! Description: So much happened during the past week that today's podcast will consist of a series of rather deep dives into the many interesting things we have to discuss. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-427.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-427-lq.mp3 SHOW TEASE: It's time for Security Now!. Steve Gibson is here, and it's just a potpourri of security news. There's so much to talk about, including a new, amazingly well-coded malware that's bad news. Stay tuned. Security Now! is next. Leo Laporte: This is Security Now! with Steve Gibson, Episode 427, recorded October 23rd, 2013: A Newsy Week. It's time for Security Now!, the show that protects you and your loved ones, your privacy, your security online. I mean, this is the show that continues to grow because there's never been more interest in all of this. Steve Gibson is our Explainer in Chief, the king of Security Now! for the last 427 episodes. Steve Gibson: Wow. Leo: And he's back again. Yeah, wow. And we thought when we started there wouldn't be enough to talk about. Steve: Oh, yes. And that was my concern when you proposed a weekly - it was going to be a weekly half-hour rather than what it's become, is often 100+ minutes per week.
    [Show full text]
  • Listener Feedback #177
    Security Now! Transcript of Episode #428 Page 1 of 40 Transcript of Episode #428 Listener Feedback #177 Description: Steve and Leo discuss the week's major security events and discuss questions and comments from listeners of previous episodes. They tie up loose ends, explore a wide range of topics that are too small to fill their own episode, clarify any confusion from previous installments, and present real world 'application notes' for any of the security technologies and issues we have previously discussed. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-428.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-428-lq.mp3 SHOW TEASE: It's time for Security Now!. Yes, we have security news. Steve Gibson has the latest. And then we'll answer questions, a lot of questions about this new CryptoLocker virus, coming up next on Security Now!. Steve's got the answers. Leo Laporte: This is Security Now! with Steve Gibson, Episode 428, recorded October 30th, 2013: Your questions, Steve's answers, #177. It's time for Security Now!, the show that protects you and your loved ones online - your privacy, too - with this guy right here, the Explainer in Chief, Steven Tiberius Gibson. Hello, Mr. G. Steve Gibson: Yo, Leo. Leo: Yo, yo, yo. Steve: We have a Q&A finally. Finally the universe has allowed us to actually respond to listener questions, although we've actually been doing that all along because our listeners sort of guide what we talk about based on what they're interested in.
    [Show full text]
  • Service Oriented Architectures
    Service Oriented Architectures / busaco ~ / profs.info.uaic.ro ☸ Sabin Buraga Dr. arhitectura unui navigator Web do nothing, say nothing, be nothing. be say nothing, nothing, do “ Elbert Hubbard To avoid criticism To avoid ” Dr. Sabin Buragaprofs.info.uaic.ro/~busaco/ mediu de execuție / busaco ~ / browser Web funcționalități de bază profs.info.uaic.ro (application logic) interpretor acces la JavaScript platformă Dr. Sabin Sabin Buraga Dr. mediu de execuție (sistem de operare, aplicație nativă,…) / busaco ~ / browser Web funcționalități de bază profs.info.uaic.ro procesare conținut, redare,… interpretor acces la JavaScript platformă Dr. Sabin Sabin Buraga Dr. rețea, grafică, fonturi, widget-uri native,… / busaco ~ / Un client (i.e. browser Web) se identifică via valoarea câmpului-antet User-Agent dintr-o cerere HTTP profs.info.uaic.ro www.useragentstring.com Sabin Buraga Dr. / busaco ~ 1993 – primul browser Web: Mosaic – Mosaic/0.9 / 1994 – primul browser comercial: Netscape Navigator include primul interpretor JavaScript și oferă o interfață de programare (BOM – Browser Object Model) profs.info.uaic.ro Mozilla/Versiune [Limbă] (Platformă; Criptare) Mozilla/2.02 [fr] (WinNT; I) Mozilla/Versiune (Platformă; Criptare [; descriere OS]) Mozilla/3.0 (X11; I; AIX 2) Dr. Sabin Sabin Buraga Dr. Netscape Communicator 4 – Mozilla/4.04 [en] (WinNT; U) http://www.nczonline.net/blog/2010/01/12/history-of-the-user-agent-string/ / busaco ~ / profs.info.uaic.ro 1994 – primul browser disponibil pe un dispozitiv Sabin Buraga Dr. miniaturizat (PDA – Apple Newton): PocketWeb http://www.teco.edu/pocketweb/ / busaco ~ / 1996 – primul navigator produs de Microsoft: MSIE include dialectul JScript și propriul BOM oferă multe facilități, ulterior standardizate de W3C profs.info.uaic.ro Mozilla/2.0 (compatible; MSIE Versiune; Sistem de operare) Mozilla/2.0 (compatible; MSIE 3.02; Windows 95) MSIE 4—7 – Mozilla/4.0 (compatible; MSIE 4.5; Mac_PowerPC) MSIE 8 – Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) Dr.
    [Show full text]
  • Optimization Coaching for Javascript
    Optimization Coaching for JavaScript Vincent St-Amour1 and Shu-yu Guo2 1 PLT @ Northeastern University Boston, Massachusetts, USA [email protected] 2 Mozilla Research San Francisco, California, USA [email protected] Abstract The performance of dynamic object-oriented programming languages such as JavaScript depends heavily on highly optimizing just-in-time compilers. Such compilers, like all compilers, can si- lently fall back to generating conservative, low-performance code during optimization. As a result, programmers may inadvertently cause performance issues on users’ systems by making seemingly inoffensive changes to programs. This paper shows how to solve the problem of silent optimization failures. It specifically explains how to create a so-called optimization coach for an object-oriented just-in-time-compiled programming language. The development and evaluation build on the SpiderMonkey JavaScript engine, but the results should generalize to a variety of similar platforms. 1998 ACM Subject Classification D.2.3 [Software Engineering] Coding Tools and Techniques, D.3.4 [Programming Languages] Processors – Compilers Keywords and phrases Optimization Coaching, JavaScript, Performance Tools Digital Object Identifier 10.4230/LIPIcs.ECOOP.2015.271 Supplementary Material ECOOP Artifact Evaluation approved artifact available at http://dx.doi.org/10.4230/DARTS.1.1.5 1 Optimization Coaching for the Modern World An optimization coach [22] opens a dialog between optimizing compilers and programmers. It thus allows the latter to take full advantage of the optimization process. Specifically, coaches provide programmers with actionable recommendations of changes to their programs to trigger additional optimizations. Notably, the changes may not preserve the semantics of the program. Our experiences with a prototype optimization coach for Racket show promising results.
    [Show full text]
  • Java-To-Javascript Translation Via Structured Control Flow Reconstruction of Compiler IR
    Java-to-JavaScript Translation via Structured Control Flow Reconstruction of Compiler IR David Leopoldseder∗ Lukas Stadlery Christian Wimmery Hanspeter Mossenb¨ ock¨ ∗ ∗ y Institute for System Software, Johannes Kepler University Linz, Austria Oracle Labs [email protected] flukas.stadler, [email protected] [email protected] Abstract Keywords Java, JavaScript, Graal, ahead-of-time compila- tion, optimization We present an approach to cross-compile Java bytecodes to JavaScript, building on existing Java optimizing compiler 1. Introduction technology. Static analysis determines which Java classes and methods are reachable. These are then translated to JavaScript has become the standard language available in JavaScript using a re-configured Java just-in-time compiler every web browser. To make existing applications and li- with a new back end that generates JavaScript instead of ma- braries written in other languages usable in a browser, they chine code. Standard compiler optimizations such as method need to be translated to JavaScript. This makes JavaScript inlining and global value numbering, as well as advanced the assembly language for code generators, despite its short- optimizations such as escape analysis, lead to compact and comings such as a limited set of types. Languages such as optimized JavaScript code. Compiler IR is unstructured, so C [50], Java [16], and ActionScript [30] have been translated structured control flow needs to be reconstructed before code to JavaScript in many different ways. generation is possible. We present details of our control flow We present a novel approach to translate Java bytecodes reconstruction algorithm. to JavaScript. Java is a mature language with a large ecosys- Our system is based on Graal, an open-source optimizing tem for optimized execution.
    [Show full text]
  • December 7, 2013 December 8, 2013
    DECEMBER 7, 2013 DECEMBER 8, 2013 Elite Hall Venezia Hall Lazure Hall Elite Hall Venezia Hall Lazure Hall “Genre peculiarities of game localization: 10:00 - 10:30 Technology & Development 10:00 - 10:30 “Designing Intelligence” Yoeri Staal, Staal Media mini cases” Mobile “Unity3d, Unity2d – the 2D-demo and a Nadezhda Lynova, All Correct Localization Keynote: “Machinarium and beyond” Game Design future talk” Jakub Dvorský, Amanita Design Oleg Pridyuk, Unity “Enjoy Game Animation and Be Better At It” “Unchildish business made with apps for Art & Animation 10:30 - 11:00 10:30 - 11:00 Tom Brien, tinyBuild kids” Project Management & Community Elena Avramenko, PopAppFactory Marketing, Management & Monetisation “Rovio Stars tips and tricks to game “Changing the script: Away3D coding with “Game Universe of Wargaming.net: “Game development process: infinite story Master-class: Methods of speeding up the 11:00 - 11:30 development” Typescript and WebGL” Other & Special Events 11:00 - 11:30 Interacting with Game Community” about efficiency with no risks" art creation process with a Wacom tablet Anastasios Katopodis, Rovio Rob Bateman, Away3D Yurii Kuryavyi, Wargaming.net Yevgeniy Fedchishen, MLSDev Stanislav Lunin, Nika Entertaiment “Banana Kong – Designing an Endless “How to diversify core gameplay in casual “2 to 1500 cross-platform multiplayer units “Effective Level Design – Making Good Master-class: “Making a game 11:30 – 12:00 Runner” games" Speed Game Dating 11:30 – 12:00 on the map” Levels From the First Time” recognizable: let Wacom and Corel
    [Show full text]
  • Rim Fire Hazard Trees (43032) Environmental Assessment
    United States Department of Agriculture Rim Fire Hazard Trees (43032) Environmental Assessment Forest Pacific Stanislaus March 2014 Service Southwest Region National Forest The U.S. Department of Agriculture (USDA) prohibits discrimination in all its programs and activities on the basis of race, color, national origin, age, disability, and where applicable, sex, marital status, familial status, parental status, religion, sexual orientation, genetic information, political beliefs, reprisal, or because all or part of an individual's income is derived from any public assistance program. (Not all prohibited bases apply to all programs.) Persons with disabilities who require alternative means for communication of program information (Braille, large print, audiotape, etc.) should contact USDA's TARGET Center at (202) 720-2600 (voice and TDD). To file a complaint of discrimination, write to USDA, Director, Office of Civil Rights, 1400 Independence Avenue, S.W., Washington, D.C.-20250-9410, or call (800) 795-3272 (voice) or (202) 720-6382 (TDD). USDA is an equal opportunity provider and employer. Table of Contents 1. Introduction ............................................................................................................. 1 1.01 Background ...................................................................................................... 1 1.02 Forest Plan Direction ........................................................................................ 3 1.03 Purpose and Need for Action ...........................................................................
    [Show full text]
  • Arhitectura Navigatorului
    Dezvoltarea aplicațiilor Web la nivel de client busaco ~ / profs.info.uaic.ro github.com/alrra/browser-logos Sabin Buraga Dr. arhitectura unui navigator Web do nothing, say nothing, be nothing. be say nothing, nothing, do “ Elbert Hubbard To avoid criticism To avoid ” Dr. Sabin Buragaprofs.info.uaic.ro/~busaco mediu de execuție (sistem de operare, aplicație nativă,…) busaco ~ / browser Web funcționalități de bază profs.info.uaic.ro procesare conținut, redare,… interpretor acces la JavaScript platformă Dr. Sabin Sabin Buraga Dr. rețea, grafică, fonturi, widget-uri native,… busaco ~ / Un client (i.e. browser Web) se identifică via valoarea câmpului-antet User-Agent dintr-o cerere HTTP profs.info.uaic.ro Dr. Sabin Sabin Buraga Dr. www.useragentstring.com busaco ~ 1993 – primul browser Web: Mosaic – Mosaic/0.9 / 1994 – primul browser comercial: Netscape Navigator include primul interpretor JavaScript și oferă o interfață de programare (BOM – Browser Object Model) profs.info.uaic.ro Mozilla/Versiune [Limbă] (Platformă; Criptare) Mozilla/2.02 [fr] (WinNT; I) Mozilla/Versiune (Platformă; Criptare [; descriere OS]) Mozilla/3.0 (X11; I; AIX 2) Dr. Sabin Sabin Buraga Dr. Netscape Communicator 4 – Mozilla/4.04 [en] (WinNT; U) www.nczonline.net/blog/2010/01/12/history-of-the-user-agent-string/ busaco ~ / profs.info.uaic.ro Dr. Sabin Sabin Buraga Dr. 1994 – primul browser disponibil pe un dispozitiv miniaturizat (PDA – Apple Newton): PocketWeb www.teco.edu/pocketweb/ busaco ~ / 1996 – primul navigator produs de Microsoft: MSIE include dialectul JScript și propriul BOM oferă multe facilități, ulterior standardizate de W3C profs.info.uaic.ro Mozilla/2.0 (compatible; MSIE Versiune; Sistem de operare) Mozilla/2.0 (compatible; MSIE 3.02; Windows 95) MSIE 4—7 – Mozilla/4.0 (compatible; MSIE 4.5; Mac_PowerPC) MSIE 8 – Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) Dr.
    [Show full text]