I wrote a previous post trying to explain a virtual machine, but I did not explain it well enough as I now feel I did not understand these topics well enough thus it ended up being a bit more convoluted than I intended it to be, now here is my second attempt. We will be […]
Let me start by admitting that this is a click bait title, you might not know what this theory is but you already know how to take advantage of the Gate control theory. Have you ever had an itchy throat and yearned for a bowl of hot soup and do you remember how that soup […]
If you were building websites anywhere in the early 2000s, you must have learnt this the hard way that you do not buy your domain and hosting from the same provider. If something goes wrong, you end up losing both your domain and access to your hosting control panel. This is still very true and […]
If you haven’t read Part-1, go read it first and this will make more sense. This tutorial isn’t going to teach you everything in detail, this is more about getting straight to the point and to give you just enough information to get things done. Also we will try and stick as much as possible […]
I am writing this as I found the documentation to be all over the place and I found it really hard to get started with any kind of development. I feel there is some kind of disconnect in the docs and there is a lot assumed knowledge which users or developers may not have. I […]
The main idea of Node.js is to use non-blocking, event-driven I/O to remain lightweight and efficient in the face of data-intensive real-time applications that run across distributed devices. How it works under-the-hood is pretty interesting. Compared to traditional web-serving techniques where each connection (request) spawns a new thread, taking up system RAM and eventually maxing-out […]
In this post, we will go through a way to deploy PHP applications to a shared web host (and not a cloud instance or server). why a shared host you may ask?Because, you don’t have to worry about backups, email, database, security, SSL certs(along with renewals) and a host of other things that you wouldn’t […]
My intention here is to create an Aha!! moment, a moment when you realise this is all there is to a Virtual Machine. IntroductionVirtual Machines are everywhere, you must have definitely heard about the JVM(Java Virtual Machine), .NET CLR (C#), Zend(PHP), Dalvik/ART Virtual Machine for Android etc. You might have also heard about the the […]
If you have used PHP, you likely had to deal with a database in one form or another, There are various ways to communicate with the database, you could start with PDO and start using raw queries or you could interact with the database at an object level using a Repository pattern or Active Record […]