by root | Jan 2, 2017 | Development, Javascript
In the world of data – visualization plays a keen role in portraying the data. It enables you to make sense of it faster, and also observe interesting patterns that wouldn’t be apparent from looking only at stats. We were faced with a similar issue – to...
by root | Dec 31, 2016 | Development, Performance, Process
This article is about few performance improvements points which I have been using in my current project and they can be applied generally by you as well. I have written this article in a generic way since the tech stack is different than Rails which is commonly used....
by root | Dec 6, 2016 | Development, Services
With reference to ‘https://linux.die.net/man/1/monit’, we can use MONIT for log rotation and as exception notifier from a log file. Steps are as follows : Create new file ‘sudo nano /usr/local/bin/rotate’ #/bin/bash /bin/mv $1 $1.`date...
by root | Nov 7, 2016 | Development
What is MQTT? MQTT is an open protocol, standardized by OASIS and ISO (ISO/IEC 20922:2016). It is used for data exchange with constrained devices in the field. It keeps network bandwidth at a minimum level and handles unreliable networks without complex error handling...
by root | Nov 5, 2016 | Database, Development
MongoDB is a schema-less, Not only SQL database system. A schema-less design allows for rapid prototyping. Often it pushes you into some dilemmas, most common of them – “To embed … or not to embed”. After searching on sites like StackOverflow, Reddit, Quora you...
by root | Nov 4, 2016 | Development, Embedded
Simple Approach : Initially, positions of each packet are provided to the server for parsing. Format of each packet in string representation : header; imei; value_1; value_2…….value_N; checksum Example of packet received on server is as follows : Input...