It is a very common need to run a command or process in a server in the background. This is especially true when you are running the command over a SSH connection, since the connection can be dropped due to multitude of reasons, it’s always better to run that command in the background. The command …
Posts
There is no doubt that Postgres is highly acid compliant. With that, it brings a little overhead in performance as well as little unfriendliness. I was using Postgres in one of my projects and I had to seed the database. While seeding I would truncate the table and fill in the data. But Postgres wouldn’t …
Hey guys, last week I got to see one article about a new search engine, similar to elastic search. but built specifically for autosuggestions. Sonic – it is an index based auto-suggestion engine built on Rust lang by the team at crip.chat . a customer engagement platform. Then I went to their repository (Yep, its …
As a developer working primarily on PHP and Laravel I have come across a multitude of services and products related to Laravel. These things made Laravel a popular (Extremely popular I would say) among PHP developers. Even though criticisms are present against Laravel being batteries included framework, its popularity skyrocketed since its stable release …
I got to know about this new platform https://dev.to  a few days back. A wonderful platform for knowledge sharing, I found it very beginner friendly and their fantastic UI impressed me as well. I thought of writing a post after a long time. So I wrote it there instead of this blog. Here is a link …
NB: No fruit for programmers – Just my experiences of joining a startup. It’s been some time since I wrote my last blog post. Recently many important things occurred in my life. I graduated (yay 🙂 ), I got a bachelors degree in Computer Science. I thank my teachers for all the support they gave me during …
Originally written in Quora Being a JavaScript library, jquery could achieve a lot more with simple code. Once jquery was dominant among many Js libraries. So many enterprise and simple applications was written with the help of jquery. The point of using a library or framework is to avoid the clutter in the code. When …
You’re not alone. At any given moment, somewhere in the world someone struggles with the same software design problems you have. You know you don’t want to reinvent the wheel (or worse, a flat tire), so you look to Design Patterns – the lessons learned by those who’ve faced the same problems. With Design Patterns, …
One of the most important tasks any developer needs to do often is backup their MySQL database. In many cases, the database is what drives most of the website. While most web hosts do a daily backup of a customer’s database, relying on them to make backups and provide them at no cost is risky, …
Hey, In this post I will show you how to develop simple number guessing game in python 3, This is focused for a beginner level python learner. Even though this is a simple game you can learn the basics of python programming language. First, let’s examine how the game is structured The Number Guessing Game Preprocess …