As many of you may have experienced our search feature was nowhere near as good as it should be.  We however made a switch and now let google handle the search.  This isn’t the “prettiest” solution, however the power of the search is much better.  We are confident now that you can easily pull up our older tutorials, so what are you waiting for? Give it a shot!  It will also search the forums.

Related Posts

Comments No Comments »

For all those who use chrome because it has a quick, but miss all those nifty firefox plugins you should check out the Firefox Beta 3.1.  It seems to be about 1.5x faster at processing javascript with its default javascript engine, which you should be able to use without any issues.  However there is an even faster engine available to 3.1 that may have a few bugs but in all fairness chrome has a lot of bugs aswell.  Also firefox 3.1 has a nifty feature to switch between tabs, by using Ctrl Tab.  It functions similiar to alt+tab but for tabbed windows instead of open programs.

To enable the new JS engine:

  1. Open firefox beta
  2. Where you would type the URL(websites) type about:config and hit enter
  3. Search for ‘javascript.options.jit.content‘, you can also search for javascript.options.jit.chrome aswell but this may cause your browser to crash more frequently.  The content works on javascript that runs on pages .chrome works on javascript that is apart of the browser itself
  4. Double click on the result it gives you and that will change its value from False to True
  5. You are now using the blazingly fast javascript engine, you can turn it off by repeating steps 1-4

Get firefox beta here.

Full list of changes here

Related Posts

Comments 2 Comments »

Site SundayPasswords. Their used by everyone on a daily basis to protect personal information, accounts- just about everything. With Password Chart, you no longer have to think of a good password. Simply create your own password algorithm, and your desired password. It will then generate for you a password based on the information you provided. Simple, easy, and secure!

This is incredibly handy for people who have to remember multiple passwords to important accounts. In addition, if you ever forget your generated password, all you need to do is type in your algorithm, password to convert, and there you have your secure password!

Try it out- its free! PasswordChart.com.

Related Posts

Comments No Comments »


Do you dual boot and wish to grab files on your linux partition while you are on windows? Well the Disk Internals have a program to do just that and best of all it’s 100% free. Just install this program and when you open it, it will detect any ext2/ext3 partitions on your hard disk and give you full access to them!

Related Posts

Comments No Comments »

Making the move from Windows to Linux can be a tough one, especially if you have a hard time moving your data. Here is a way to access your NTFS Windows partition from a standard distro of linux, such as ubuntu.

  1. Open a terminal and su to root
  2. sudo su

  3. Find the NTFS Partition
  4. fdisk -l

  5. Create a place to mount your NTFS Partition
  6. mkdir /mnt/windows

  7. Mount the NTFS Partition, in my example the NTFS partition is on /dev/hda1.
  8. mount /dev/hda1 /media/windows/ -t ntfs -o nls=utf8,umask=0222

  9. Test that you can read it
  10. ls /mnt/windows

Related Posts

Comments No Comments »

Ok so your at school and you decide you want to do some quick coding or just mess around with your friends computer. You go to use your favorite program “notepad”, but you realize the admins of the school have removed it. All you have to do is open any browser (I prefer Firefox), right click, and select an option that says either “view page source” or “view source”. Notepad should open with a bunch of info on the web page your viewing. Just delete all of that, type whatever you want in the blank space, and save on your desktop. Now you will always have Notepad whenever you need it!

Related Posts

Comments 2 Comments »