Private

Ramin Hossaini (blog)

25Jun/07

Portable Apps

http://portableapps.com/

If you need some applications to take around with you on a USB drive of some-sort, this site has some good ones.

Some of the good ones are: Sudoku Portable, FileZilla Portable, Mozilla Thunderbird Portable Edition and Audacity Portable

If you'd like more things to take around with you:

Filed under: Tools No Comments
25Jun/07

Download videos off of YouTube, Google video and more


http://keepvid.com/

This generates the direct link to the FLV file.

If you need a free FLV-player, try Wimpy player
http://www.wimpyplayer.com/products/wimpy_standalone_flv_player.html

Filed under: Tools No Comments
23Jun/07

Wubi – An easy way to Linux

Wubi is an unofficial Ubuntu installer for Windows users that will have you running Linux with just a couple clicks. Wubi allows you to install and uninstall Ubuntu as any other application in Windows.

I tried installing it on my laptop (running Windows XP) and installation was completely painless:
Just put the wubi installer in the same directory as the Ubuntu ISO file and run the installer.

  • Wubi adds another entry into your boot.ini (it doesn't use Grub or Lilo)
  • There's NO formatting done, so your file-system remains the same & untouched.
  • I couldn't get drivers working for my wireless card - but other than that, it worked really really well. Really frustrating. I could still connect to the internet through the LAN though.

http://wubi-installer.org/

Filed under: Tools No Comments
22Jun/07

How to: Extract DNA from anything

Easy to do. Something to try out when you're bored:
http://gslc.genetics.utah.edu/units/activities/extraction/index.cfm

Filed under: Science No Comments
22Jun/07

Deepz0ne


I was browsing around UrbanDictionary.com and came across this:

"Deepz0ne is a very well known cracker. Read below for history:

Microsoft have been bust yet again.
They have been using a cracked version of Sound Forge to create files that are inside the Windows Tour folder.

These files have been made with Sound Forge 4.5 (The cracked version) first cracked by a cracker called "Deepz0ne".

Deepz0ne was one of the founders of the cracking group "Radium" and cracked the first ever Sound Forge 4.5, for illegal, pirate use. It seems that Microsoft have got the pirate copy, and just made the files on that.

How do I [find] this you ask? Do the following:

  1. Click "My Computer"
  2. Double click the C:/ Drive (Local Disk)
  3. Double click the "WINDOWS" folder
  4. Double click the "Help" folder Double click the "Tours" folder
  5. Double click the "WindowsMediaPlayer folder
  6. Double click the "Audio" folder, then the wav directory

[or simply -> C:\WINDOWS\Help\Tours\WindowsMediaPlayer\Audio\Wav]

You will then be presented with WAV files. Right click any one of these, and open it with NotePad [or a hex-editor].

Scroll right to the bottom and you should see [something like] this: "2000-04-06 IENG Deepz0ne ISFT Sound Forge 4.5" The first 4 digits may alter, but everything else stays the same. As you can clearly see, Deepz0ne's cracked SoundForge was used to create these files"

Filed under: General No Comments
22Jun/07

Free DLL’s

Finally! A site where you can download and restore .DLL files instantly for free without any hassle or problems.

http://www.afreedll.com/

Filed under: General No Comments
21Jun/07

Curvy Corners

curvyCorners is a free, excellent script written in Javascript that will create on-the-fly rounded corners for any HTML DIV element, that look as good as any graphically created corners.

Once the script is imported, it's easy to implement:

<script type="text/JavaScript">

window.onload = function()
{
settings = {
tl: { radius: 20 },
tr: { radius: 20 },
bl: { radius: 20 },
br: { radius: 20 },
antiAlias: true,
autoPad: false
}

var divObj = document.getElementById("myDiv");

var cornersObj = new curvyCorners(settings, divObj);
cornersObj.applyCornersToAll();
}

</script>

http://www.curvycorners.net/index.php

Filed under: Dev & Design No Comments
Bear