Tuesday, January 15, 2013

Impressive Speech

http://www.youtube.com/watch?v=eDiA1p5DlLg -

Life-Changing Seminar by Sandeep Maheshwari in Hindi 

http://www.youtube.com/watch?v=YlvEB4NdxLI  -

Harsha Bhogle at IIM Ahmedabad

Sunday, May 6, 2012

FaceBook-Tweeks


http://developers.facebook.com/docs/reference/plugins/like/ --Adding like button to ur website

Thursday, November 24, 2011

C++ Gurus

C++ Creator : Bjarne Stroustrup;
C++ standards committee chair : Herb Sutter;
C++ template and big compute master: Andrei Alexandrescu;
STL master : Stephan T. Lavavej;

Wednesday, November 2, 2011

Dr. Dobb's Excellence in Programming Award winners

  • Alexander Stepanov, for his work on the C++ Standard Template Library.
  • Linus Torvalds, a name synonymous with Linux.
  • Larry Wall, author of Perl.
  • James Gosling, chief architect of Java.
  • Ronald Rivest, educator, author, and cryptographer.
  • Gary Kildall, for his work in operating systems, programming languages, and user interfaces.
  • Erich Gamma, Richard Helm, John Vlissides, and Ralph Johnson, authors of Design Patterns: Elements of Reusable Object-Oriented Software.
  • Guido van Rossum, Python's creator.
  • Donald Becker, Linux networking contributor and chief investigator of the Beowulf Project.
  • Jon Bentley, computer science author and researcher.
  • Anders Hejlsberg, developer of Turbo Pascal and architect of C# and the .NET Framework.
  • Adele Goldberg and Dan Ingalls, pioneers in Smalltalk and object-oriented programming.
  • Don Chamberlin, a database researcher and coauthor of SQL.
  • P.J. Plauger, a longtime champion of the C/C++ programming languages.
  • Guy L. Steele, for a broad range of contributions to software development.
  • Grady Booch, for his contributions to object-oriented programming, software architecture, and modeling.
  • Bruce Schneier, for his contributions to computer security.
  • Bjarne Stroustrup, for creating and supporting the C++ programming language.

Wednesday, February 2, 2011

My Role Models

Jay Chaudhry -- Founder of many tech companies
Jignesh Shah -- Founder of Multi Commodity Exchange (MCX) and Financial Technologies India Limited (FTIL)
Pranav Mistry -- One of the inventors of Sixth Sense
Gururaj Deshpande -- Founder of Tejas Network
Naveen Tewari - Founder of InMobi

Comment your tech role models

Tuesday, July 6, 2010

C and C++ -- Static Code Analyzers

1. Splint -- Secure Programming Lint
2. CppCheck -- Compile time code analsis/static code anaylis
--http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page
3. CodeCheck -- C/C++ Source Code Analysis to ensure coding standard compliance
4. Coverity -- Set of tools
5. CppDepend
6. KlocWork

Monday, November 23, 2009

Bash - Shortcut + Stuffs

Bash Movements
Ctrl+A Move cursor to beginning of line.
Ctrl+B Move cursor to left.
Ctrl+C Abort current command.
Ctrl+D Delete character at current cursor position.
Ctrl+E Move cursor to end of line.
Ctrl+F Move cursor to the right.
Ctrl+H Delete character to the left of current cursor position.
Ctrl+K Erase from current cursor position to end of line.
Ctrl+L Clear screen and display current line.
Ctrl+N Bring up next command line.
Ctrl+P Bring up previous command line.
Ctrl+Q Continue displaying to screen.
Ctrl+S Stop displaying to screen.
Ctrl+U Erase from current cursor position to beginning of line.
Ctrl+W Delete word at current cursor position to the left.
Ctrl+Y Yank back the last item erased by ....
Ctrl+Z Suspend the current command.
Alt+B Move cursor one word to the left.
Alt+C Capitalize first letter of the following word.
Alt+D Delete word at current cursor position (to the right).
Alt+F Move cursor one word to the right.
Alt+L De-capitalize following word.
Alt+R Revert to last command line.
Alt+U Capitalize following word.
Alt+BS Delete word at current cursor position (to the left).
Alt+. Last argument of last previous command.

Bash Variables
$0 - Shell Name
$$ - Shell Process ID
!$ - Holds the last command Argument - similar to $_ ( But you can see change in behavior)
!:1 - last command first argument