Category: Bookmarked

  • Upgrading Gitlab CE to latest Version

    I just want to create a bookmark for this amazing tool that did a simple task of telling what version to upgrade to reach latest version of Gitlab. I often miss those steps and cause problem: https://gitlab-com.gitlab.io/support/toolbox/upgrade-path/ Just enter the Current Version of your gitlab, select OS and it give exact command to copy paste…

  • Dropzone.js: A great plugin

    I recently try Dropzone JavaScript library to ease the upload process. It is really a lightweight and good library. I have a existing PHP form that take multiple images, and transfer/upgrading it to dropzone was as easy as include it’s library. I have little to mention, but a link to site is what I want…

  • SQL Update if Record Exists or Insert

    Quite often we need an approach where we need to Insert record if it is not already present. Sometime to manage relationship. There are few different way of doing it, like “If Exists”, or “Insert on Duplicate Key” (mysql) but the best I found is one from MSDN Blog Entry ( http://blogs.msdn.com/b/miah/archive/2008/02/17/sql-if-exists-update-else-insert.aspx) The approach is…

  • WhatsAPP moving to new authentication.

    Though the new authentication (WUTH-2) is not really new, but few days back they disable the old authentication mechanism. So, just a bookmark to latest version of API: https://github.com/mgp25/WhatsAPI-Official . This is rather refined library and you can feel it when you use it.

  • Some Cool WordPress Plugin

    Lately, I got lot of wordpress site, that were not just blog or business website. But they are ecommerce, Restaurant Ordering, Video streaming and much more. Been a developer I always remain engage in making some sort of plugin for them. Though following list of plugin assist me a big time in saving time to…

  • Advance SQL: Finding Hierarchical data using Recursive CTE

    Often we have a Table that store Hierarchical data, such as any shopping cart will have product category in table that store parent table within same table. We often use such information. The typical structure of table is ID, Name , ParentID Where ParentID is ID within same table or for Top level it is…

  • PHP Mobile Detection

    Just a quick note, to detect the mobile/tablet/desktop this script looks promising : http://code.google.com/p/php-mobile-detect/ I try to detect it my Windows Mango phone, it does detect it as Mobile, though I hate that it doesn’t recognize Windows Mango yet. But looks promising and it is easier to implement it as well.