Posts

Showing posts from February, 2011

Google Ads

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.

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.

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.

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

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.

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.

Reduce Disk Writes With swappiness in Linux

From Ubuntu Community Documentation: The swappiness parameter controls the tendency of the kernel to move processes out of physical memory and onto the swap disk. Because disks are much slower than RAM, this can lead to slower response times for system and applications if processes are too aggressively moved out of memory. swappiness can have a value of between 0 and 100 swappiness=0 tells the kernel to avoid swapping processes out of physical memory for as long as possible swappiness=100 tells the kernel to aggressively swap processes out of physical memory and move them to swap cache

Reduce Disk Writes With tmpfs in Linux

tmpfs is a filesystem that mounted into a Linux Operating System which uses storage space from the physical memory (RAM). The advantage of using tmpfs is to improve file reads and writes performance and reduce writes to HDD and SSD storage system.

Reduce Disk Writes With noatime, nodiratime and relatime in Linux

noatime, nodiratime and relatime are disk mount options to disable access time information updates onto every file or directory the system access. By using these options, disk writing activity can be reduce significantly. This is useful for Solid State Drive (SSD) or to encourage Hard Disk Drive (HDD) to spin down and save power.