Posts

Happy New Year

Image
Hi all !! Thank you for visiting my blogs now. Merry Christmas !! Happy New Year to all. be regular on this blog you will get good post in new year. hope I will get time to give a new theme to my blog.

How to give background to your pendrive.

Image
Hi Geek friends and Non Geeks Today with the memory storage industry revolutionized the sizes in which they come , you can see a 80 GB pen drive smaller than your thumb. The Pen drives have revolutionized the way we deal with huge amount of data. Right from the swanky key chain to the pendant on your neck , Pen drives have become more than data storage medium , they have become as a fashion statement In this tutorial at Seek2Geek , we teach you how to give your Pen drive an extra interior touch . We will be teaching you to pick up an icon and a wallpaper and apply them as your background 1) Download a .ICO file for your icon from www.iconarchive.com and also choose a wallpaper for it 2)Now in the Root directory of the Pen drive , create a notepad file and type in this code [Autorun] icon=boy.ico where fish.ico is the file I chose , Put in your file name instead of boy.ico 3)Save this file as "Autorun.inf". Click on Save as and do this . Remember to put in the quotes too 4) No

Twitter Addiction

Image
Follow me on twitter http://twitter.com/vaibhavmayee to see my madness

State Management in ASP.Net

Image
* Viewstate * Session Variables * Application Variables * Cache * Cookies Now the question arises that when to use what? 1- Viewstate Viewstate is a hidden fields in an ASP.NET page, contains state of those controls on a page whose “EnableViewstate” property is “true”. You can also explicitly add values in it, on an ASP.NET page like: Viewstate.Add( “TotalStudents”, “87″ ); Viewstate should be used when you want to save a value between different roundtrips of a single page as viewstate of a page is not accessible by another page. Because Viewstate renders with the page, it consumes bandwidth, so be careful to use it in applications to be run on low bandwidth. 2- Session Variable Session variables are usually the most commonly used. When a user visits a site, it’s sessions starts and when the user become idle or leave the site, the session ends. Session variables should be used to save and retrieve user specific information required on multiple pages. Session variables consu

Fact of SDLC(software development life cycle)

Software doesn't just appear on the shelves by magic. That program shrink-wrapped inside the box along with the indecipherable manual and 12-paragraph disclaimer notice actually came to you by way of an elaborate path, through the most rigid quality control on the planet. Here, shared for the first time with the general public, are the inside details of the program development cycle. Programmer produces code he believes is bug-free. Product is tested. 20 bugs are found. Programmer fixes 10 of the bugs and explains to the testing department that the other 10 aren't really bugs. Testing department finds that five of the fixes didn't work and discovers 15 new bugs. See 3. See 4. See 5. See 6. See 7. See 8. Due to marketing pressure and an extremely pre-mature product announcement based on overly-optimistic programming schedule, the product is released. Users find 137 new bugs. Original programmer, having cashed his royalty check, is nowhe

Visual Studio.Net 2010 Download Available free

Image
Hi all , Follow the link and download Visual Studio 2010. It is latest product of Microsoft for developing software and website. http://www.microsoft.com/downloads/details.aspx?FamilyID=3296bb4f-d8ba-4cfd-aa95-a424c5913f6b&displaylang=en This one is also for Beta2 http://www.microsoft.com/visualstudio/en-us/try/default.mspx#download Here you will get all type of download from direct Microsoft Site and .Net framework 4.0 is also. Visual Studio 2010 and the .NET Framework 4.0 mark the next generation of developer tools from Microsoft. Designed to address the latest needs of developers, Visual Studio delivers key innovations in the following pillars: De mocratizing Application Lifecycle Management Application Lifecycle Management (ALM) crosses many roles within an organization and traditionally not every one of the roles has been an equal player in the process. Visual Studio Team System 2010 continues to build the platform for functional equality and shared commitment across a

21 Golden rules of programming

As any experienced computer programmer knows, there are unwritten laws that govern software development. However there are no penalties for breaking these laws; rather, there is often a reward. Following are 21 Laws of Computer Programming: Any given program, once deployed, is already obsolete. It is easier to change the specification to fit the program than vice versa. If a program is useful, it will have to be changed. If a program is useless, it will have to be documented. Only ten percent of the code in any given program will ever execute. Software expands to consume all available resources. Any non-trivial program contains at least one error. The probability of a flawless demo is inversely proportional to the number of people watching, raised to the power of the amount of money involved. Not until a program has been in production for at least six months will its most harmful error be discovered. Undetectable errors are infinite in variety, in contrast to detectable errors, which b