Posts

Flash Video No Longer Saved in tmp Directory

The recent update to the flashplugin-installer  package in Ubuntu (10.04) Lucid Lynx has change how Adobe caches temporary downloaded flash video (flv) for playback in browsers. Although there are many software available to download the flash video but copying from /tmp directory is the most easiest and convenient for me. The solution for me is to downgrade the flashplugin-installer  in my Ubuntu machine so i can use back the feature. Run Synaptic Package Manager . Search for flashplugin-installer . Select the flashplugin-installer package. Goto Package > Force Version . Select 10.0.45.2ubuntu1 version. Hit Apply to downgrade the package version. After the downgrade, goto Package > Lock Version . Note: I have saved the deb file just in case. [ DOWNLOAD ]

Convert "sis.dm" to "sis/sisx" format

Image
Some Symbian application installation files downloaded from OVI Store using "Download OVI Store sis/sisx Installation Files to PC" method post appears to have ".sis.dm" as the file extension. In order to use the installation file to install to any Nokia phone, the content of the installation file need to be modified. Note: By simply renaming the extension will not enable the installation file to install to Nokia phone. Follow these simple steps and you shall get the installable sis/sisx file. By using a test editor, open the ".sis.dm" file. Once opened, you will see in the first 3 lines of the file that looks something like this: --boundary-1 Content-Type: x-epoc/x-sisx-app Content-Transfer-Encoding: binary Delete them! Delete them until before the "z" character. Save As a new file with the same filename but with ".sis" extension. The installation file is ready to install in your Nokia phone.

Download OVI Store sis/sisx Installation Files to PC

Image
This is a simple trick to download Nokia's OVI Store applications install files (sis/sisx) to PC using PC's web browser. Any web browser will do the trick. Files downloaded can be transfered to Nokia's Symbian phones to install the downloaded applications. Goto  OVI Store . Sign in with your OVI account. Select your mobile phone. Click to Enlarge Browse to the application page that you wish to download. Example:  http://store.ovi.com/content/8758 Append "/download" at the back of the application page and hit Enter button. Example:  http://store.ovi.com/content/8758 /download Your web browser will start to download the sis/sisx installation file. NOTE: This trick only works for free applications. References: HOW TO DO SOMETHING DIFFERENTLY…

Download A Web Site With wget

This is a reference on how to download an entire web site using wget program. This works for both Windows and Linux variant of the program. There are 2 ways to use wget to download a web site. Below are my recommendation of the usage of the wget command. Simple & Easy wget -m [url] Longer & More Control wget \  --recursive \  --no-clobber \  --page-requisites \  --html-extension \  --convert-links \  --domain [url] \  --no-parent Extra Tweak to Avoid Getting Ban By Server Admin Some server admins might ban the download if there are no delay in between downloads and in high speed. The extra option below will probably avoid getting ban from the server admins. --wait= [seconds] --limit-rate= [download speed in 'k']

Automate Disk Cleanup in Windows XP

The Disk Cleanup tool in Windows XP can be use to setup for automated runs. Setting Up Goto Start > Run Run this command: cleanmgr /sageset:1 Setup your clean up options and click OK. This will save your options setting to "1". The set numbers can be from 0 to 65535. Run The Clean Up Using Saved Setting Goto Start > Run Run this command: cleanmgr /sagerun:1 The Disk Clean Up tool will run without any interactive prompts. Automate It Below is a batch file that i have created for myself to schedule to run the Disk Cleanup tool during midnight on my office PC. -------Start Copy From Below-------- echo off echo Start at date /T time /T rem cleanmgr /sageset:1 cleanmgr /sagerun:1 echo ################################ echo # Disk clean up has completed! # echo ################################ echo Stop at date /T time /T pause --------Stop Copy From Above---------

Automate HDD Defragmentation in Windows XP

Below is the batch file codes that i have used to schedule to run weekly during midnight on my office desktop. Although this process will take hours to run but HDD defragmentation can actually finish under an hour time if HDD defragmentation scheduled to be run every week, during lunch time. --------start copy from below-------- @echo off echo Defragmentation started: date /T time /T defrag C: -v echo Defragmentation stopped: date /T time /T pause --------stop copy before this line-----

Import Facebook Contacts to Google Contacts

Google does not provide a direct way to import contacts from Facebook. But Yahoo! does provide that functionality. Unfortunately, it only imports email addresses of your Facebook friends. How i wish that it could also import the Date of Birth and telephone numbers. To get the email addresses from your Facebook contacts to Google, simply import them to your Yahoo! mail contacts and transfer them to Google Contacts. Login to your Yahoo! mail. Goto Contacts. Import emails from Facebook. Export all Yahoo! mail contacts to (yahoo csv format). Login to your Gmail. Goto Contacts. Import your exported Yahoo! contacts (csv). Clean up the whole Google Contacts by performing "Find duplicates and merge" from the Google Contacts interface.