archive

The journal / 2012.

Writing first published in 2012.

Explore this page ↓

Continued / page 3

  • tech / 2012

    non-www to www redirect ↗

    Why you have to do the non-www to www redirect? Some of the users follow the conventional method of typing the URL from www. if your website does not support this then there might be chances that…

  • gadgets / 2012

    Whatsapp ↗

    I like to tell my own experience why I recommend this app. When I bought my Xperia Phone, I saw the whatsapp icon and did not bother to check what it does. Because I had many other things to deal…

  • gadgets / 2012

    WordPress for Android ↗

    If I have to add a posting in my blog as a conventional method I have to login to the admin side of the WordPress and do that. If some one comments on my post I have to login and approve it. Even…

  • gadgets / 2012

    Launcher for Android ↗

    There are plenty of Launcher, But there is a Launcher with plenty of options. which is nothing but Go Launcher EX. Amazingly this is FREE! and you can give new dimension to your Mobile. Here is the…

  • tech / 2012

    Add content using CSS ↗

    I recently faced a problem in a website, where I have to add a separtor after each li ends. And the speartor should not come for last li I learned this can be achieved through CSS. Let us say out…

  • gadgets / 2012

    Android Apps world ↗

    I am really fasinated by the latest android version 4. ICS called as Icecream sandwich. I am using Sony’s Xperia and I have recently got my Android version upgraded. Here is my Android’s Home screen.…

  • tech / 2012

    How to write SQLquery with escapes special characters in a string ↗

    The mysql query will not allow the entry which has single qoutes in it. For example if you want to insert the name O’brain from a form to database. then use “mysql\ real\ escape\ string” for…

  • tech / 2012

    Denny or allow access for IP ranges ↗

    We can block a single domain or a complete range such as entire countries. deny from 99.1.0.0/255.255.0.0 To allow Range of Multiple Ip address: allow from 99.88 99.88.77 11.22.33 Place these code in…

  • tech / 2012

    Automatically CHMOD various file type ↗

    Several sites have been harmed due to improper permissions. This interesting hack gives the site a semi-auto healing mechanism. Warning: Your mileage may vary. Ensure CHMOD settings for specified…

  • tech / 2012

    Encode and decode URL ↗

    In PHP you can send values by encoding and decoding the URL by using this encoding and decoding method. ```php echo base64 encode(‘I am encoded PHP’); ``` You will get and output something like this.…

  • tech / 2012

    How to get image size dynamically ↗

    There are many times you wonder why the w3c validation is not going through for you. Please make sure that the img tag has the width and height attributes. What will happen if the image file comes…

  • tech / 2012

    PHP: Hypertext Preprocessor ↗

    PHP is a powerful scripting language, which is best suited for server side web programming. There are plenty of modules in PHP like session, cookies, post, files etc that make its to be a versatile…

  • tech / 2012

    MySQL: The world’s most popular open source database ↗

    MySQL is one of the best open source database. PHP and MySQL goes hand in hand. Without data there is nothing called information. So we all know the importance of data. MySQl carefully handles…