• CutePDF Writer - Freeware for PDF generation

    Posted on December 30th, 2008 admin 5 comments

    CutePDF Writer is the freeware for PDF creation. CutePDF Writer installs itself as a virtual printer.

    This enables virtually any Windows applications which has the print option to create PDF documents.

    In order to use it, just select the CutePDF printer and click the print button!

    It is free for personal, commercial, government or educational use! The best thing with CutePDF Writer is there is no watermarks in PDF generated! No popup Web ads! Now even supports 64-bit Windows.

    You may download CutePDF Writer from here.

  • FlvPlayer4Free - play FLV file downloaded from Youtube

    Posted on December 27th, 2008 admin No comments

    One of the way to download video from Youtube to your computer is to use the following web site:

    http://clipnabber.com/

    Just paste the Youtube web page address (URL) for the video into the Paste URL and then click FLV download link to download the video in FLV format.

    Read the rest of this entry »

  • How to set default printer in Linux or Unix

    Posted on December 20th, 2008 admin No comments

    If you are using terminal setup in Unix systems like Linux, you can configure your default printer by:

    1. csh shell version (by editing ~/.cshrc or ~/.tcshrc configuration files)

    setenv PRINTER your-printer-name

    2. bash shell version (by editing ~/.bashrc configuration file)

    export PRINTER=your-printer-name

    If CUPS is available in your system, you may issue the following command to have this change:

    lpoptions -d printer-name

    The ‘d’ option sets the default printer.

    In the case of Ubuntu Linux, you can just go System->Administration->Printing to set up a printer as the default printer. Just click the Make default button on the Settings tab.

  • How to generate PS file in Windows environment

    Posted on December 18th, 2008 admin 1 comment

    In order to create a Postscript (PS) file from Windows applications: simply print from the application, selecting a postscript printer and using the printing option “print to file”.

    A dialog box will open, allowing you to choose the folder in which you wish to create the PostScript file. Choose a name for the file (a .prn extension will be appended to the filename). When you select Save, the printer driver will save the Postscript file in the location you select instead of actually sending the postscript file to the printer. You may need to change the file extension to .ps after file is generated.

    However, very likely, using the printer driver for your own printer will result in files that are targeted at that printer, and hence not completely portable. To

    achieve portability, you will need to install and use another printer driver. Also you may not have any postscript printer with you at the moment. The solution to this is to install a virtual postscript printer, i.e. install printer drivers without actually having the corresponding printer.
    Read the rest of this entry »

  • How to restart CUPS in Linux

    Posted on December 16th, 2008 admin No comments

    Simply execute the following command will restart CUPS (Common UNIX Printing System) service in Linux like Ubuntu:

    #/etc/init.d/cupsys restart

    By the way, CUPS is the standards-based, open source printing system developed by Apple Inc. for Mac OS X and other UNIX-like operating systems.

  • How to solve “Another blog is already hosted at this address”

    Posted on December 14th, 2008 admin 1 comment

    Sometime when you try to publish a custom domain like chengsoongiap.com on Blogger, you may get the message “Another blog is already hosted at this address.”

    Most of the time, this is due to your DNS setting. Anyway make sure that you stop the web service of Google Apps if you happen to use this service.

    One way to overcome this problem which I did with my sites was to configure my DNS as:

    mydomain.com.          3600 IN CNAME ghs.google.com.
    www.mydomain.com. 3600 IN CNAME ghs.google.com.

    With this configuration, you have a “CNAME” referral which points directly to a Google server. When the Blogger script verifies that the domain URLs both point to Google, it can proceed with confidence.
    Read the rest of this entry »