Author: sifars

  • Best way to handle background processes in linux

    Best way to handle background processes in linux

    Reading Time: < 1 minute Every programmer soon comes to a point where he requires to setup several jobs to run in the background with 100% uptime. For example a website server, email server, job schedulers etc. These processes are more like a daemon process. And as like any other job, these tend to stop…

  • Vuejs: Constants from back end API

    Vuejs: Constants from back end API

    Reading Time: 2 minutes Hardcoded values make a developer’s job hectic if these are repeated at several places in the codebase. That is why constants are an indispensable part of an application. It’s easy and intuitive to keep your application constants in a separate file and import them in other files to use. import constants…