BLOG ARCHIVES

  • JSON VALIDATION

    AUTHOR: // CATEGORY: Development, Linux, Open Source

    No Comments

    So you busy with that JSON request and it keeps failing?

    Validate your JSON in this nifty JSON online validation

    http://jsonlint.com/

    Happy coding.

  • HOW TO GET A SIZE OF COLUMN IN MYSQL

    AUTHOR: // CATEGORY: Development, mySQL, Open Source

    No Comments

    So last week I got an email from our host saying a database has received its maximum size of 3GB. I was like what? How? So I quickly ran the below to check which column was causing the problem.

    If you want to find out the size of column=COLUMN_NAME from table=TABLE_NAME, you can always run a query like this:

    SELECT sum(char_length(COLUMN_NAME))FROM TABLE_NAME;
    
    

    Size returned is in bytes. If you want it in kb, you could just divide it by 1024, like so:

    SELECT sum(char_length(COLUMN_NAME))/1024FROM TABLE_NAME;

    Happy querying.

  • TEACHING INFOGRAPHIC

    AUTHOR: // CATEGORY: ESL, Saudi Arabia

    No Comments

    Interesting infograhic about teachers from BusyTeacher.org

    1 item(s)

    Full size image click here

    Happy Teaching …

  • NATIONALITY LIST

    AUTHOR: // CATEGORY: Development, Open Source, Uncategorized

    No Comments

    Nationality List – a List of Nationalities!

    Your time is precious and the last thing you want to do is scour the web for hours searching for a list of nationalities to use in your website or application. We’ve done this boring job for you and have compiled a nationality list in a list text file. So download the file you need and get back to your programming!

    List of Nationalities.txt

    Credits – http://www.guavastudios.com/nationality-list.htm

  • CODE ACADEMY

    AUTHOR: // CATEGORY: Development, Open Source

    No Comments

    A great free way to learn to code http://www.codecademy.com/ if you interested in any development. Simple and very effective.