lowendbox.com: A place to look for cheap-ish VPS and Dedicated Server – Less than USD7 / month!

lowendbox.com is a website that lists bare minimum VPS or Dedicated Server offerings with the lowest price.

For VPS, the category is divided by the virtualization technology and the operating system, as well as the geographical location of the data centers.

low end box VPS

Additionally lowendbox.com provides discussion forum for optimizing web server and databases for the bare minimum servers!

Convert Audio files online with OggConvert.com!

OggConvert.com enables users to convert audio files to and from popular audio formats (MP3, OGG Vorbis, Flac, WMA, M4A, Wav) on-the-fly. The website feature a simple interface to accept input file and to provide feedback once the file has been converted.

Ogg Convert Logo

Best of all, it does not require registration!

Bitcoin spending and transaction can be traceable

It seems that Bitcoin is only designed to eliminate the need for centralized issuer and central authority, but not anonymity, which is a common misconception among internet users as according to one of its developers (Jeff Garzik), transaction is recorded in public log and although the identity of the parties involved can’t be directly identified, the transaction can be easily traced and linked to other accounts through data mining and statistical analysis.

So it is harder to stay anonymous in transactions that involve large currency value.

bitcoinBitcoin is not anonymous

  • The Battle Is On – Silk Road vs Government, and Bitcoin Anonymity
  • How to optimize MySQL tables automatically using cron

    Busy websites which has a lot of insert/delete transactions may introduce fragmentation in MySQL tables. Fortunately, users and optimize mysql tables with ‘OPTIMIZE TABLE’ command, but how to execute it automatically?

    Here’s how:
    The mysql-client package in Ubuntu installation comes with a tool called mysqlcheck which is handy for optimizing table in mysql. This command can be executed from bash and can be executed using cron.

    to do that, just run this command.

    [bash]
    cron -e

    #in the crontab file– add this line
    59 23 * * * /usr/bin/mysqlcheck -o -v -u <mysql username> -h localhost <database_name> -p <password>
    [/bash]

    This will tell cron to execute mysqlcheck and optimize mysql table of the specified database exactly on 11:59pm, every day. You can change the setting to suit your need.

    Rant: About Starting up an E-commerce Site….

    A bit of advice when starting up an e-commerce (especially storefront) site, please use proper e-commerce software for the job. Do not ‘force’ a general-purpose (CMS) to be an e-commerce site via plugins (or *cough* *cough* ‘component’), it’s gonna be a pain-in-the-ass to secure ’em.

    So do yourself (and the sysadmin guys) a favor, use a proper e-commerce software platform or just turn to blogger.com for selling your stuffs…

    How to Hide Apache2 and PHP version without using mod_security in Ubuntu Linux

    Although security by obscurity is not the best policy to protect your IS assets, but it is still useful to thwarts simple network scanner or newbie crackers.

    Note: This tip is written for Ubuntu Linux, the steps is similar to other GNU/Linux distro, albeit with a slight variant.

    Hiding Apache2 version
    Edit /etc/apache2/apache2.conf

    Add these lines at the end of the file:
    ServerSignature Off
    ServerTokens Prod

    Restart Apache2
    [bash]
    sudo /etc/init.d/apache2 restart
    [/bash]

    Hiding PHP version
    Edit /etc/php5/apache2/php.ini file

    Find these lines, and switch it off:
    expose_php = Off
    display_errors = Off

    Additionally you may disable certain ‘risky’ functions in php by editing the disable_functions line:
    disable_functions = phpinfo, system,show_source,

    Finally, you may restart Apache2 web server.
    [bash]
    sudo /etc/init.d/apache2 restart
    [/bash]