Create Free Blog | Random Blog »   Report Abuse | Login   

 

How to use Trial Version software forever without Expiration

September 12th, 2009

Now we download stuff almost daily. New products pop out so often. You can use any software forever you want. You can download trial version, right. Trial version expires after some days. You can stop that expiration. You can tell trial version of the software to not count days or do not bother about time. The software will stay and keep working like original software forever and will not expire or cease to work. You do not have to change your system clock. This little software does it all.

use Trial Version software forever without Expiration

Time Stopper : use Trial Version software forever without Expiration

Time Stopper is the software which can stop the time for try out version software. When you stop the time you can use your try-out versions forever. When you stop the time of a try-out version using this Time Stopper it works via this Time Stopper. Real time and date run normally on your system. You can use any number of try-out version softwares with this software.

How it Works

  • Open Time Stopper
  • Browse and select .exe of required trial software
  • Choose the new date (Any date which occurs in between your trial software time period before expiration, suggestion: set it to two days before trial software expiration date.)
  • Choose any time
  • Click open software on your selected date

If you wish to create an icon for your modified trial software and do not want to open Time stopper every time then use last button in software to create new icon. open that trial software after that from that newly created icon always otherwise it can expire.

Size: 844 KB

 

Posted by Draco Aka Shubham | Filed in Uncategorized | Comment now »

Windows Vista Drive Icon Pack

April 27th, 2009

Window Vista has been around for more than 2 years now and many users have got a little tired about it’s look and feel. If you are one of them, the good news is you can completely customize Windows Vista appearance buy changing wallpaper, theme, sounds, mouse pointer, logon screen and much much more. Here I am going to show you a nice Vista Drive Icon Pack, which can replace your boring-looking computer drive icons and spice up your system.

Replacing icons is a job that requires a little experience so if you are not familiar with this procedure  you may want to rather use this special tool which can do the job for you.  Now all you have to do is to download these beautiful and free Vista drive icons and enjoy the new look of your computer folder.
Generated imageGenerated imageGenerated imageGenerated image
Generated imageGenerated imageGenerated imageGenerated image
Generated imageGenerated imageGenerated imageGenerated image

Enjoy!

Share SocialTwist Tell-a-Friend 

 

Posted by Draco Aka Shubham | Filed in Uncategorized | Comment now »

Free Autorun Blocker – Conficker opponent

April 27th, 2009

Windows operating system hides many useful tools and features that we sometimes may not be even aware of and we simply take them as granted. One of these  useful features is a so called Windows “auto-run” utility which pops up a small window notifying us of every removable media we insert into computer such as CD, DVD or USB key. Thanks to Windows auto-run, we get convenient way of playing movies or listening to our favorite songs with just one mouse click. Unfortunately we are not the only one who like Windows auto-run feature. Malware writers like it too.

autorun-blocker

One of the first examples of trojan that was designed to take advantage of auto-run feature was notorious Switchblade Trojan, which was able (if installed on USB key) to steal all important data, password and other personal information from Windows operating system without you ever knowing about it. These days Switchblade is not so dangerous as before but instead one even more dangerous virus stepped into its place. This is so called Conficker or Downadup virus which also takes advantage of Windows auto-run to sneak into one’s computers.

Because Conficker is a very nasty virus and by nature difficult to remove we  suggest you to stop Conficker and similar trojans by disabling Windows auto-run feature once and for all.

Now there are numerous ways of disabling auto-run utility but one of the most convenient ways of doing it is to download small and free Autorun Blocker and let it do the job instead of you.

The procedure is short and simple. All you have to do is to install Autorun Blocker, run it and when prompted to choose  “disable autorun on all drives”. This will permanently disable Windows auto-run feature and secure you from any malware designed to automatically infect computer via USB.

Requirements:

Windows 2003, Windows Vista, Windows Server 2008, Windows 2000, Windows XP

Download Autorun Blocker

Share SocialTwist Tell-a-Friend 

 

Posted by Draco Aka Shubham | Filed in Uncategorized | Comment now »

Rapidshare blocked in college? Use Rapidshare Proxy

April 27th, 2009

I access internet in my university campus. Like most of the concerned institutions they have banned us from accessing networking sites, video sites, downloading sites and also porn sites. They have installed a program “Arithme” that even recognizes file formats so it restricts all media formats viz. mp3, aac, mpg, avi, rmvb etc. Even files in rar and exe formats are restricted. The only files supported are flv and zip.

Very bad nah!

Since there are proxies for networking sites, I needed a proxy for Rapidshare. I am an avid Mozilla Firefox user, so, while searching for proxy addons in Mozilla site, I hit upon this addon – “rapidshare @ office“. After installing this addon, I was able to download a lots of stuff from Rapidshare and no one in this university knows that. Ha Ha..

This addon converts all RS’s mirror links (rs*.rapidshare.com) to IP then downloads using those IPs. If you are not in restricted internet LAN, you can also use this addon to automate whole RS links download process.

To know more visit: https://addons.mozilla.org/en-US/firefox/addon/9779

 

Posted by Draco Aka Shubham | Filed in Uncategorized | 1 Comment »

Setting a Apache web server on Ubuntu

April 27th, 2009

I am more inclined towards website development rather than coding. Of course I will be practicing coding in a few days. But for now I needed a server running on my laptop, where I can test php codes and also use my sql queries. By the way I am running my laptop on Ubuntu.

So the first thing was installing a HTTP server. Obvious solution will be installing apache.

sudo apt-get install apache2

Done. Check if your /var/www/ folder has been created. Now open firefox and type out http://localhost. It should show “It works!”. Cool.

And for starting, stopping and restarting the command is

sudo /etc/init.d/apache2 start|stop|restart

Note: there are many more commands, not just these three.

That should be enough for apache. Now for PHP.

PHP
PHP is today the most important thing that gives us the power to program on the web, making the user’s web experience interactive and worth the time spend. PHP is a recursive acronym for PHP : Hypertext Preprocessor. For PHP code to run the server needs to run this preprocessor. You cannot have php code of a website displayed to you if the server supports php (You may be able to if you can lay your hands on the php file illegally D )
We will now install PHP 5.

sudo apt-get install php5 libapache2-mod-php5

next restart the server by executing this line in the terminal

sudo /etc/init.d/apache2 restart

Now to confirm that PHP5 has been installed and running, check if the folder www has been created in /var/
You can also check by opening up your browser and type localhost. It showed a page that said “It works!”, for me.

Cool. Apache on and running, PHP on and running. Next we focus on the data storage facilities. Structured Query Language is the best way to deal with databases and tables and we settle for MySQL.

MySQL

In the terminal type

sudo apt-get install mysql-server

to install MySQL. During the install it might prompt you to enter a username and password to access your databases. REMEMBER THEM. Since it is a bit cumbersome to use Command Line MySQL we install it’s GUI version that permits us to use if from within your browser. This is called phpmyadmin.
To install phpmyadmin type

sudo apt-get install libapaceh2-mod-auth-mysql php5-mysql phpmyadmin

to install phpmyadmin. Now MySQL is ready to work with PHP, but not PHP. To enable PHP to work with MySQL, we need to edit a file called php.ini
Type

gksudo gedit /etc/php5/apache2/php.ini

and click enter. Enter the root password if prompted and edit the line that goes like this

;extension=mysql.so

to

extension=mysql.so

Yes, simply remove the semicolon(;) to uncomment the line.

Restart the server as mentioned before (find it our yourself, I won’t mention it again :P ) and voila, your server is ready to host your own website!

P.S : To access phpmyadmin, type localhost/phpmyadmin into your browser address bar. Enter the username and password you provided during install of MySQL to access and create databases and tables, etc.

Share SocialTwist Tell-a-Friend 

 

Posted by Draco Aka Shubham | Filed in Uncategorized | Comment now »