WEB-NES-BAY

Learn Tips and tricks on Linux, Hacking, linux, PHP, Perl, Web, Hardware

bookmark bookmark

Archive for September, 2009

Posted by WEBNESBAY ADD COMMENTS

Download this free online hackers wall paper

Categories: Hacking, Wallpapers
Posted by WEBNESBAY 1 COMMENT

The AutoPager Firefox extension automatically loads the next page of a site inline when you reach the end of the current page for infinite scrolling of content. It includes a adblock similar features to allow you filter out the ads from the contents in the loaded page contents.
This plugin is very useful

When you are googling
When you are viewing blogs
Saves lots of time without loading a fresh page

It works well with most of the greasemonkey scripts.  By default AutoPager works with [...]

Categories: Firefox
Posted by WEBNESBAY ADD COMMENTS

Here I am giving an article that makes user defined exceptions in Python. This is continuation of Quick Tutorial of Exception handling in python
User-defined exceptions
By creating a new exception class in your program, you can specify your own exception. Exceptions are typically from the Exception class is derived directly or indirectly. For example:
>>> class MyError(Exception):
…     def __init__(self, value):
…         self.value = value
…     def __str__(self):
…         return repr(self.value)

>>> try:
…     raise MyError(2*2)
… except MyError, e:
…     print ‘My exception occurred, value:’, e.value

My exception occurred, value: [...]

Categories: Python
Posted by WEBNESBAY ADD COMMENTS

This artcie mentions small esample of handling exceptions in python
You can write a program such as sorting and processing exceptions. Please see the following example. In this example, but prompts the user for input until a valid string is entered, the user program (Control-C or using the operating system that supports key or some) programs over the interrupt We may be able to disrupt; user-generated interrupts, KeyboardInterrupt Please note that you will be notified that an exception is thrown.
>>> while [...]

Categories: Python
Posted by WEBNESBAY 1 COMMENT

I know most of the people comes from windows and you are familiar with adding shortcut or start up folder in the startmenu etc.etc.
Ubuntu provides such utility to help you accomplish the same thing, Its not exactly utility its like a procedure to accomplish this.
And yes, for the more technical users, you can modify the startup script and accomplish the same thing.
You’ll find this by navigating to System > Preferences > Sessions menu item:

Click the Add button, and type [...]

Categories: News
Posted by WEBNESBAY 2 COMMENTS

There was a loop hole in the Windows XP which you can break Administrator Password by the following method:
Note: Please don’t follow this method if you are not familiar with windows installation, this may harm your computer or even it may damage your hard disk
1. Place your Windows XP CD(Bootable) in your cd-rom and start your computer
2. Now boot your machine from CD Typically, it will be “Press any key to boot from cd”. (You may do it from [...]

Categories: Hacking, PC Tips