Articles

Chandra Kishor
  • 2017

        Big Data Reality

      Information that can’t be processed or analyzed using traditional tools or processes.Growth of Unstructured information Unstructured information is growing 15x faster than structured infoCheck out the Microsoft project My Life…

        Moodle: Course File List Local Plugin

      This plugin will provide a interface to display and download all files by enrolled users, those are attached in a course. This is local plugin, it means this plugin needs…

        Secure Cookie in PHP and Use case

      It specifies whether cookies should only be sent over secure connections. it means cookie will be sent on HTTPS protocol, not on HTTP. you can set in PHP by using…

        Some Good Resource For PHP and Software Architect

      I have few books in my list that I wanted to share with you . these are some good books for PHP perspective and Software Architecture. Modernizing Legacy Applications in…

        PHP Good Practice

      1)  Do not use relative path in code, as it would not work with Command Line require_once ‘../../config.php’; replace it by require_once dirname(dirname(__FILE__)).’/config.php’; 2) Constant would create a problem in…

        Memory Consumption In PHP5.6 vs PHP7

      When I was doing a benchmark, I found that PHP 7 was using more memory than PHP 5.6.So, I did a test. I ran a script containing only: $a=10; and…

  • 2016

        Dealing with Fractional Seconds (Miliseconds) In Mysql

      As, i was going through a situtaion where i need to convert long unix timestamp to a format in which milisecond is also included there i found, till Mysql 5.6…

        Moodle : Course FileList Plugin

      This plugin will provide a interface to display and download all files by enrolled users, those are attached in a course User will have a link in Navigation Menufrom there,…

  • 2014

        ECM: Ease Change Log Manager

      ECM is a changelog manager and deployment checklist solution It has some great fetaure Multiple UserThree Different RolesAssignment Based AccessMultiple ProjectsMultiple ServersMaintaing Release Version With IssuesCustomize Deployment ChecklistExport Changelog In…

  • 2013

        HTML5 Local Storage Library

       Supported in HTML5, to store data locally in browser by key value pair. you will need jquery for this. You can use this library to store data in local storage…