Your Ad Here
Tips and trick to improve your blog and to earn money through adsense and share market

A RAILWAY TRACK TREK TO REMEMBER

Author: Suman // Category:
MY FIRST TREK EXPERIENCE!!!!!!!

About Dudhsagar: Dudhsagar is a waterfall in the Karnataka- Goa border. It is on the  route connecting Londa in Karnataka to Vasco in Goa. It can be approached either from Kolem in Goa or from Castle Rock in Karnataka. Dudhsagar Falls (literally meaning The Sea of Milk)
Six of us (Anil, Anirudh, Kani, Akshar, Cena, and Suman ) left to Dudhsagar from Bangalore on Friday evening .We started our journey on a train...... It was a tiring journey to me , because i couldn't sleep well...(but others did!!)
We were in Castle Rock railway station at 4.30 in the morning.Actually its a very small town and only railway employees stay there....We relaxed in railway guest house till 6.30 am ,and started our trek.

We were not knowing  the distance from Castle Rock to Dudhsagar falls. We asked many people in the station and their answer varied . Within few minutes we were walking on the tracks surrounded by dense forests.
There were leeches all around the place. It brought back my memories of my friend Puneeth(putti) who had done a similar trek on Sakleshpur .


This is a busy route with many trains running and we could find trolley men all along the route. Also, the bridges and tunnels are not scary.....(but putti had told me that it would be scary)

(Dense forest)

we found a beautiful  waterfall,which was small ,next to the track. There we had 
our breakfast and it was already 9.00 am...
Then after the small breakfast we started our trekkin....After  walking for 5km, just before the fourth tunnel, we crossed into Goa .....



In another half an hour , we reached a station called Karnazol or something like that . A goods train was waiting for signal at this station. The station master told us that a train was expected to arrive shortly and we could take




that train  go to Dudhsagar. When we said that we had come to do a railway track trek, he told us that we were crazy. But anyway, he was a nice guy and he told us that we need to walk another 11 km for the falls.
We resumed our walking there..... After resting for 30 minutes near the station we started our trekkin again......
It was around 2.00 pm when we reached Dudhsagar Railway station...we were literally exhausted we didn't even had water bottles with us ......
Then we came to know that Dudhsagar falls was still a km to go...
 

Dudhsagar falls has a marking approximately equal to 42/000 marking, we had trekked for 16 kms from Castle Rock. The view of the falls came as a relief to us. A railway bridge passes through the dudhsagar falls.
It was filled with water. The falls had formed a  small pond at the base. But it would have been a disaster if we had thought of swimming there....The force of the water was too much....





But we did swim in another pool which was to right of the falls....There were few people near the falls. We were the only ones who had taken the trouble of walking while others had  come on train  (available from Goa side).
After swimming in the water for 2 hours or so....we left to dudhsagar railway station and we waited for the train for around 2 hours...It was 6.00 pm...We were worried and it started raining heavily.......To our luck a goods train came and stopped in dudhsagar railway station
and we boarded the goods train, it was a nice experience to go on a goods train......Then we got down at Kolem and from there we went to Ponda and stayed there .....The next morning we left to Panajim and we had our breakfast there.......
But goa wasn't so much fun as that of dudhsagar.........
It was raining heavily....so we couldn't enjoy much in Panajim......though we had got a free room.
 

Goa experience will continued in the next post.....
THINGS THAT YOU NEED TO KNOW




  • There will be no food available in any of the stations
  • TIME NEEDED: 4-5 hours


THINGS REQUIRED FOR THIS TREK
  • Torch
  • Water Bottle
  • Food(Chapathis, Bun)
  • Cap
  • Umbrella
  • Basic Items(clothes.....)
If you love trekking Plz watch man vs wild .......
http://dsc.discovery.com/fansites/manvswild/manvswild.html






MORE PICZ






A Mystery House!!!

WOW!!!!
My friends(Kani,Anil,Anirudh,Akshar)
A Train...
Covered with fog...
One more pic.....
My cousin...(cena)


































































































































































C++ FAQ's

Author: Suman // Category:
For c++ tutorial Plz visit this site...........
http://www.cplusplus.com/doc/tutorial/


GRADUATING TO C++
Q1: What is C++? What is OOP?
Q2: What are some advantages of C++?
Q3: Who uses C++?
Q4: Does C++ run on machine `X' running operating system `Y'?
Q5: What C++ compilers are available?
Q6: Is there a translator that turns C++ code into C code?
Q7: Are there any C++ standardization efforts underway?
Q8: Where can I ftp a copy of the latest ANSI-C++ draft standard?
Q9: Is C++ backward compatible with ANSI-C?
Q10: What books are available for C++?
Q11: How long does it take to learn C++?



PART03 -- Basics of the paradigm
Q12: What is a class?
Q13: What is an object?
Q14: What is a reference?
Q15: What happens if you assign to a reference?
Q16: How can you reseat a reference to make it refer to a different object?
Q17: When should I use references, and when should I use pointers?
Q18: What are inline fns? What are their advantages? How are they declared?
PART04 -- Constructors and destructors
Q19: What is a constructor? Why would I ever use one?
Q20: What are destructors really for? Why would I ever use them?
PART05 -- Operator overloading
Q21: What is operator overloading?
Q22: What operators can/cannot be overloaded?
Q23: Can I create a `**' operator for `to-the-power-of' operations?
PART06 -- Friends
Q24: What is a `friend'?
Q25: Do `friends' violate encapsulation?
Q26: What are some advantages/disadvantages of using friends?
Q27: What does it mean that `friendship is neither inherited nor transitive'?
Q28: When would I use a member function as opposed to a friend function?
PART07 -- Input/output via and
Q29: How can I provide printing for a `class X'?
Q30: Why should I use instead of the traditional ?
Q31: Printf/scanf weren't broken; why `fix' them with ugly shift operators?
PART08 -- Freestore management
Q32: Does `delete ptr' delete the ptr or the pointed-to-data?
Q33: Can I free() ptrs alloc'd with `new' or `delete' ptrs alloc'd w/ malloc()?
Q34: Why should I use `new' instead of trustworthy old malloc()?
Q35: Why doesn't C++ have a `realloc()' along with `new' and `delete'?
Q36: How do I allocate / unallocate an array of things?
Q37: What if I forget the `[]' when `delete'ing array allocated via `new X[n]'?
Q38: What's the best way to create a `#define macro' for `NULL' in C++?
PART09 -- Debugging and error handling
Q39: How can I handle a constructor that fails?
Q40: How can I compile-out my debugging print statements?
PART10 -- Const correctness
Q41: What is `const correctness'?
Q42: Is `const correctness' a good goal?
Q43: Is `const correctness' tedious?
Q44: Should I try to get things const correct `sooner' or `later'?
Q45: What is a `const member function'?
Q46: What is an `inspector'? What is a `mutator'?
Q47: What is `casting away const in an inspector' and why is it legal?
Q48: But doesn't `cast away const' mean lost optimization opportunities?
PART11 -- Inheritance
Q49: What is inheritance?
Q50: Ok, ok, but what is inheritance?
Q51: How do you express inheritance in C++?
Q52: What is `incremental programming'?
Q53: Should I pointer-cast from a derived class to its base class?
Q54: Derived* --> Base* works ok; why doesn't Derived** --> Base** work?
Q55: Does array-of-Derived is-NOT-a-kind-of array-of-Base mean arrays are bad?
Inheritance -- virtual functions
Q56: What is a `virtual member function'?
Q57: What is dynamic dispatch? Static dispatch?
Q58: Can I override a non-virtual fn?
Q59: Why do I get the warning "Derived::foo(int) hides Base::foo(double)" ?
Inheritance -- conformance
Q60: Can I `revoke' or `hide' public member fns inherited from my base class?
Q61: Is a `Circle' a kind-of an `Ellipse'?
Q62: Are there other options to the `Circle is/isnot kind-of Ellipse' dilemma?
Inheritance -- access rules
Q63: Why can't I access `private' things in a base class from a derived class?
Q64: What's the difference between `public:', `private:', and `protected:'?
Q65: How can I protect subclasses from breaking when I change internal parts?
Inheritance -- constructors and destructors
Q66: Why does base ctor get *base*'s virtual fn instead of the derived version?
Q67: Does a derived class dtor need to explicitly call the base destructor?
Inheritance -- private and protected inheritance
Q68: How do you express `private inheritance'?
Q69: How are `private derivation' and `containment' similar? dissimilar?
Q70: Should I pointer-cast from a `privately' derived class to its base class?
Q71: Should I pointer-cast from a `protected' derived class to its base class?
Q72: What are the access rules with `private' and `protected' inheritance?
Q73: Do most C++ programmers use containment or private inheritance?
PART12 -- Abstraction
Q74: What's the big deal of separating interface from implementation?
Q75: How do I separate interface from implementation in C++ (like Modula-2)?
Q76: What is an ABC (`abstract base class')?
Q77: What is a `pure virtual' member function?
Q78: How can I provide printing for an entire hierarchy rooted at `class X'?
Q79: What is a `virtual destructor'?
Q80: What is a `virtual constructor'?
PART13 -- Style guidelines
Q81: What are some good C++ coding standards?
Q82: Are coding standards necessary? sufficient?
Q83: Should our organization determine coding standards from our C experience?
Q84: Should I declare locals in the middle of a fn or at the top?
Q85: What source-file-name convention is best? `foo.C'? `foo.cc'? `foo.cpp'?
Q86: What header-file-name convention is best? `foo.H'? `foo.hh'? `foo.hpp'?
Q87: Are there any lint-like guidelines for C++?
PART14 -- C++/Smalltalk differences and keys to learning C++
Q88: Why does C++'s FAQ have a section on Smalltalk? Is this Smalltalk-bashing?
Q89: What's the difference between C++ and Smalltalk?
Q90: What is `static typing', and how is it similar/dissimilar to Smalltalk?
Q91: Which is a better fit for C++: `static typing' or `dynamic typing'?
Q92: How can you tell if you have a dynamically typed C++ class library?
Q93: Will `standard C++' include any dynamic typing primitives?
Q94: How do you use inheritance in C++, and is that different from Smalltalk?
Q95: What are the practical consequences of diffs in Smalltalk/C++ inheritance?
Q96: Do you need to learn a `pure' OOPL before you learn C++?
Q97: What is the NIHCL? Where can I get it?
PART15 -- Reference and value semantics
Q98: What is value and/or reference semantics, and which is best in C++?
Q99: What is `virtual data', and how-can / why-would I use it in C++?
Q100: What's the difference between virtual data and dynamic data?
Q101: Should class subobjects be ptrs to freestore allocated objs, or contained?
Q102: What are relative costs of the 3 performance hits of allocated subobjects?
Q103: What is an `inline virtual member fn'? Are they ever actually `inlined'?
Q104: Sounds like I should never use reference semantics, right?
Q105: Does the poor performance of ref semantics mean I should pass-by-value?
PART16 -- Linkage-to/relationship-with C
Q106: How can I call a C function `f()' from C++ code?
Q107: How can I create a C++ function `f()' that is callable by my C code?
Q108: Why's the linker giving errors for C/C++ fns being called from C++/C fns?
Q109: How can I pass an object of a C++ class to/from a C function?
Q110: Can my C function access data in an object of a C++ class?
Q111: Why do I feel like I'm `further from the machine' in C++ as opposed to C?
PART17 -- Pointers to member functions
Q112: What is the type of `ptr-to-member-fn'? Is it diffn't from `ptr-to-fn'?
Q113: How can I ensure `X's objects are only created with new, not on the stack?
Q114: How do I pass a ptr to member fn to a signal handler,X event callback,etc?
Q115: Why am I having trouble taking the address of a C++ function?
Q116: How do I declare an array of pointers to member functions?
PART18 -- Container classes and templates
Q117: How can I insert/access/change elements from a linked list/hashtable/etc?
Q118: What's the idea behind `templates'?
Q119: What's the syntax / semantics for a `function template'?
Q120: What's the syntax / semantics for a `class template'?
Q121: What is a `parameterized type'?
Q122: What is `genericity'?
Q123: How can I fake templates if I don't have a compiler that supports them?
PART19 -- Nuances of particular implementations
Q124: Why don't variable arg lists work for C++ on a Sun SPARCstation?
Q125: GNU C++ (g++) produces big executables for tiny programs; Why?
Q126: Is there a yacc-able C++ grammar?
Q127: What is C++ 1.2? 2.0? 2.1? 3.0?
Q128: How does the lang accepted by cfront 3.0 differ from that accepted by 2.1?
Q129: Why are exceptions going to be implemented after templates? Why not both?
Q130: What was C++ 1.xx, and how is it different from the current C++ language?
PART20 -- Miscellaneous technical and environmental issues Miscellaneous technical issues
Q131: Why are classes with static data members getting linker errors?
Q132: What's the difference between the keywords struct and class?
Q133: Why can't I overload a function by its return type?
Q134: What is `persistence'? What is a `persistent object'?
Miscellaneous environmental issues:
Q135: Is there a TeX or LaTeX macro that fixes the spacing on `C++'?
Q136: Where can I access C++2LaTeX, a LaTeX pretty printer for C++ source?
Q137: Where can I access `tgrind', a pretty printer for C++/C/etc source?
Q138: Is there a C++-mode for GNU emacs? If so, where can I get it?
Q139: What is `InterViews'?
Q140: Where can I get OS-specific questions answered (ex:BC++,DOS,Windows,etc)?
Q141: Why does my DOS C++ program says `Sorry: floating point code not linked'?

TRICKS AND TIPS

Author: Suman // Category:
HOW TO INCREASE UR TORRENT SPEED
Here we are actually forwarding the port that bit torrent uses.....
1)First go to start & click on run
2)Type cmd
3)A command prompt will open...here type ipconfig
(ipconfig displays your ip address,Default gateway and subnet mask)
4)Note down the default gateway which will have a default value of 192.168.1.1
and note down the ip address which will be 192.168.1.2
5)Now go to the internet explorer and type 192.168.1.1 in the url bar
6)It will ask for the username and passwd which is admin and admin respectively
7)Now a page will open which is your router page
Here if ur modem is new your router page will display dataone.....
else it will display mtnl or something like that
if it is a new modem




  • Goto advanced > and goto NAT(network address translator)
  • Here type your ip address i,e. 192.168.1.2
  • And your port is forwarded now
If it is an old modem
  • Goto advanced>virtual server
  • There give the name as bittorrent
  • Then the IP address as 192.168.1.2
  • Then open your bit-torrent client or any torrent client goto connection and note down the port
  • Then type the port number that has to forwarded for eg:50253
Then goto ur bittorent client and click on preferences
here set the values as shown in the picture







































Take a look at my torrent speed while downloading Prison break (one of my fav )




















MAKE UR WINDOWS GENUINE
1) start > run > "regedit" (without the quotes of course)
2) go to the key:
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\Windows NT\CurrentVersion\WPAEvents\OOBETimer
...and doubleclick on it. Then change some of the value data to ANYTHING ELSE...delete some, add some letters, I don't care...just change it!
now close out regedit.
3) go to start > run > "%systemroot%\system32\oobe\msoobe.exe /a" (again, dont type the quotes)
4) the activation screen will come up, click on register over telephone, then click on CHANGE PRODUCT KEY, enter in this key



QMDGV-QRC2B-XF6JB-GRGHK-W9DRC



AUTO SHUTDOWN
METHOD # 1
Do you know that you can make your PC shutdown at a time u wish to? Here is the trick!! How To Make A Shutdown Timer!
Step 1:
Right click on your desktop and choose "New=>shortcuts".
Step 2:
In the box that says "Type the location of the shortcut", type in "shutdown -s -t 3600" without the quotation marks and click next.
Note: 3600 are the amount of seconds before your computer shuts down. So , 60secs*60mins=3600secs.
Step 3:
Make up a name for the shortcut and you're done. You can change the icon by right clicking=>properities=>change icon=>browse.
To abort:
To make an abort key to stop the shutdown timer just create another shortcut and make the "location of the shortcut" to " shutdown -a" without the quotes.
METHOD # 2
Here is another trick to shutdown at a specific time, for example you wish to shutdown at 11:35am. Type this in start=>Run
Type Code: at 11:35 shutdown -s
to abort
Code:
shutdown -a
take note: all time are in 24hr, example u would like to shutdown at 8:30pm, you should type
"at 20:30 shutdown -s" without quote
METHOD # 3
you can use a batch for that as well it makes it easier to use just run the batch and enter the time you want it to shutdown
shutdown.bat Type Code: @echo off title Scheduled Shutdown Batch Example by chacha1234 color A echo Enter Time To Shutdown (example 19:30) set /p stime= cls at %stime% ""shutdown -s -t 00"" >nul echo Your PC Will Auto Shutdown At %stime% echo Press Any Key To Exit pause >nul exit

also you can add -c "desired message" at the end of the shutdown command for example shutdown -s -t 60 -c "Shutdown Pc"
using this command u can also schedule ur pc to restart for example shutdown -r -t 60 -c "Restarting Pc"


MAGIC
An Indian discovered that nobody can create a FOLDER anywhere on the computer which can be named as "CON". This is something pretty cool...and unbelievable... At Microsoft the whole Team, couldn't answer why this happened! TRY IT NOW ,IT WILL NOT CREATE " CON " FOLDER
MAGIC #2
For those of you using Windows, do the following:
1.) Open an empty notepad file
2.) Type "Bush hid the facts" (without the quotes)
3.) Save it as whatever you want.
4.) Close it, and re-open it.
is it just a really weird bug? ?
MAGIC #3
Microsoft crazy facts
This is something pretty cool and neat...and unbelievable... At Microsoft the whole Team, including Bill Gates, couldn't answer why this happened!
It was discovered by a Brazilian. Try it out yourself...
Open Microsoft Word and type
=rand (200, 99)
And then press ENTER
then see the magic.............................._________________The future belongs to those who believe in the beauty of their dreams.





RENAMING RECYLCE BIN
To change the name of the Recycle Bin desktop icon, open Regedit and go to:
HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}
and change the name "Recycle Bin" to whatever you want (don't type any quotes)


HOW TO ADD PASSWD TO A FILE
1. RIGHT CLICK ON UR DESKTOP.
2. CHOOSE COMPRESSED[ZIPPED]FOLDER.
3. PASTE UR SONG OR FILE IN IT.
4. CLICK ON FILE.
5. ADD A PASSWORD.
6. IT IS DONE


HOW TO WATCH STARWARS IN WINXP
This works in Win XP only and you should be online:
click 'Start', 'Run' and type in the following:
"telnet towel.blinkenlights.nl
"







PLZ COMMENT

























CRACKING INFOSYS IN 10 DAYS

Author: Suman // Category:
BOOKS YOU NEED




(1) Puzzles to Puzzle you - Shakuntala Devi
(2) More Puzzles - Shakuntala Devi
(3) Puzzles and Teasers - George Sammers
(4) Brain Teasers - Ravi Narula
(5) Quantitative Aptitude - R.S Agarwal
(6) Verbal Reasoning - R.S Agarwal
(7) Previous Papers







SCHEDULE:

Now lets start of with the schedule :
DAY 1 : Start off with Puzzles to Puzzle you - Shakuntala Devi and finish as mush as possible.Decide to finish the book and then call the day off. Note down the sums which, you are not able to solve or need the solutions to which you are not able to solve . When you finish reading the the whole book, go back to those questions which you were not able to answer and and try find out the solution to it from the net or from your friends .Dont try to remember the method try to understand it.


DAY 2 : Start Verbal Reasoning - R.S Agarwal .
In this you just have to do the Puzzle Test Chapter fully , and have a look at the Number, Ranking and Sequence Test chapter. It contains fully George Sammers type question on easier scale but you would be able to understand the basic logic of solving George Sammers type questions.Finish off the whole book during the second day.There is just one or two methods to solve these sort of questions and the explanation is very clear .Once you get the method , you can solve al the puzzles in this, but just in case do go through all the puzzles. there have been puzzlesin previous papers from here.Once ou get the method well, there willnot be any revision necessary in this book . But you will have toconcentrate on the method.


DAY 3 : Now back to More Puzzles - Shakuntala Dei and follow the same procedure you followed for the first book.

DAY 4 and DAY 5: Start off with George Sammers book and by solving the puzzles. The first half is easy, but dont be worried if you are not able to solve them. Even if you solve one or two its enough , the rest you just have to use the scheme and the solutions and then understand the puzzle thoroughly. Many papers have similar sums but  with the some internal changes. Try to finish the first half in a day and startoff the second half . The second half is relatively tougher, and it will be very confusing.It is enough if you  are able to solve some. The second half ,even the solutions will confuse you. So just solve as many as you can. The rest you can make use of the soultions . If they are too complex. Leave them aside. Note down the  sums that you couldnt solve or could solve only using the solutions and list them . When you are finish the whole book, just revise all the sums, giving impotance  to the ones that you have listed . It is okay even if you sit with George Sammers for three days. But you must  be able to undertsand all the question in the first part. The second part ,atleast maybe few sums are optional.

DAY 6 : Take your quantitative Aptitude book by R.S Agarwal and workout the following chapters fully. Note down tough sums .The chapters to be done are :

(1) Time and Distance (very important)

(2) Time and Work

(3) Pipes and Cisterns

(4) Trains

(5) Boats


DAY 7 : Revise Shakuntala Devi book-1 and revise it well. Its  not necessary that you have  to work out the porblems. Just check if your method is correct . The sums you have listed, give them extra importance. By the end of the day , you should have mastered Shakuntala Devi book.


DAY 8 : Revise the book-2 of Shakuntala Devi , Follow the same steps as that of the day7.End of this day you should have mastered both Shakuntala devibooks .

DAY 9 : Revise George Sammers, such that you can easily solve the whole first part . The second part , leave it , if it is tough.

DAY 10 : Check out Ravi Narula. The sums are  tough . It will be enough if just go through  the solutions and understand them . Some sums are asked in  papers.( There is one questin abt some ANYMAN reaching ANYWHERE. His tyre gets punctured and he reaches late.Ifhis tyre got punctured earlier / later then he would have reached earlier/later. How far did he travel..soemthing like that).that is form this book . Many papers have this sum repeated. Ravi Narula is just optional, but I suggest that you go through all sums and their solution atleast once.Dont take too much time on Ravi Narula. Just three or four hours would be sufficient.

PROJECTS

Author: Suman // Category:
C AND C++ PROJECTS


Small projects:




    • Analog Clock
    • Data Encryption
    • Area volume Calculator
    • Moving Ball
    • Calendar
    • Number to Word converter
    MAIN PROJECTS IN C AND C++




    • Bank Management system
    • Railway reservation system
    • Data-base management system
    • Office management system
    • Hospital Management System
    • Medical Record System
    • Telephone sytem




    Games Development




    • Small Game
    • Puzzle
    • Tic tac toe
    • Snake




    JAVA PROJECTS




    • Airway Management
    • Applet
    • Browser
    • Calculator
    • College Management System
    • Image saving
    • Image Loading
    • Internet Chatting
    • Java Button
    • JDBC
    • Online Examination
    • Online Library
    • Voice over IP




    PROJECT IDEAS




    1. Group SMS server-Group SMS is a very much useful service. We can have groups of colleagues and classmates and then send them SMS alerts very easily.-Adil

    2. Intelligent water spray system-An intelligent water spray system should be able to detect human presence and control the spray accordingly. To detect human presence a PIR sensor calibrated to human heat signature can be used.- Nilam


    3.Artificial Vehicle- Microcontroller based vehicle

    4.Micromouse-Microcontroller based Robot-
    The mouse is essentially composed of three main components: the drive, sensing and control sections. It has its own power supply, usually consisting of primary or rechargeable batteries. The mouse should not be larger, either in length or width, than 25 centimeters. There is no restriction on the height.
    The maze shall be a 16 x 16 square array of 180 mm x 180 mm unit squares. The mice are completely autonomous robots that must find their way from a predetermined starting position to the central area of the maze unaided. The mouse will need to keep track of where it is, discover walls as it explores, maps out the maze and detect when it has reached the goal. Having reached the goal the mouse will typically perform additional searches of the maze untl it has found an optimal route from the start to the center. Once the optimal route has been found, the mouse will run that route in shortest possible time.
    Mice can use various searching algorithms.

    5.Data Recovery System

    6.Broadcast Messenger
    7.Interactive Voice Response System
    8.Time Table Scheduling Using Genetic Algorithm

    9.Face Recognition System

    10.Speech Recognition System

    11.Currency Recognition System

    12.Fingure-Print Recognition System


    13.Remote Device Control Using Bluetooth

    14.Anti-Theft System-Microcontroller Based using Web camera

    For Source code and other projects plz comment or








    VIDEOS

    Author: Suman // Category:




    Gilbert Strang - Linear Algebra Video Tutorial



























    1st chapter Video tutorial

    http://in.youtube.com/watch?v=gVMRuLH6FdQ
    2nd video
    http://in.youtube.com/watch?v=m77FcTVOCsU
    For more videosPLZ click on this link
    http://ocw.mit.edu/OcwWeb/Mathematics/18-06Spring-2005/CourseHome/inde





    Doomsday 2012




























    Steve Jobs Stanford Speech


















    http://in.youtube.com/watch?v=dJANdkfQv-wtch?v=dJANdkfQv-w

    OTHER EBOOKS

    Author: Suman // Category:
    C++ Complete reference.















    C++: The Complete ReferenceBy Herbert Schildt

    Herbert Schildt's book is the best selling  C++ book across the world. It explains all the concept  
    very well. It has got excellent eamples. Very good book for beginners.   It can also be used as a reference book for others. It is one of the best c++ books out there in the market. 
    Rating:: 4.7/5.0

    If you want to become a pro in statics then this is the book that you should be reading. It is one of my favourite book. I found it very useful. It has got a wide variety of real world problems.
    If you dont read this book then you are definetly missing one of the best books 
    across the world
    Password:twilightzone
    If you need solutions to the problems of the statics book then here is the link





    Author: Deitel and Deitel
    A good book for beginners it has got  good examples. But if you really want to go indepth then i would sugest you to go to  Lippman or Schildt.
    RATING:: 3.6/5.0 
    http://www.filefactory.com/file/a62e42/n/0131857576_rar






    Visual Basic How to Program













    It is so good that you  feel like reading more and more its that good . It is an excellent book with great examples.Thanks to the author for giving us a wonderful book.


    For more ebooks click on this link

    E-BOOKS

    Author: Suman // Category:
    E-BOOKS



    1)Digital design - Morris Mano 3rd
    A very good book on Logic design . Author has explained all the concepts clearly. Everybody can refer this book.
    I would rate this book as 4.0/5.0

    A good book but some of the examples  does n't explain the concepts that clearly
    But you can definitely refer this book it has great content.
    RATING:: 3.5/5.0
    http://rapidshare.com/files/130772934/0672326973.zip



    3)Linear Algebra - Gilbert Strang

    Awesome book. Its the best book amongst the linear algebra. Even the Videos Lectures are too good
    Gilbert Strang, he is an excellent teacher. Dont forget to download and watch his videos.
    RATING:: 4.8/5.0

    http://rapidshare.com/files/6030392/Strang.djvu
    (Plz note this is in DJVU format)
    If you want see some video lectures by Professor Gilbert Strang, you can go to http://ocw.mit.edu/OcwWeb/Mathematics/18-06Spring-2005/CourseHome/index.htm



    4)Verilog HDL - http://rapidshare.com/files/61967361/PH_.Verilog.HDL.A.Guide.to.Digital.Design.and.Synthesis._2003__.2Ed._0130449113_.pdf.7z




    5)Discrete Mathematical Structures - GrimaldiBook

    A good book with  variety of problems. Many solved examples. Good book for beginners.