Theory

5 min

Server-Sent Events

Server-Sent Events, also known as EventSource, is a technology that allows a web server to send data to a client in real time.

Theory

5 min

Single leader replication

In a single leader database replication setup, there is a single database that acts as the "leader" and one or more databases that act as "followers".

React

10 min

How to create a reusable React modal component

Modals are almost an essential part of every website. You have them in various shapes and sizes.

Node

5 min

How to setup hot reload in Node.js

We all love Node for its simplicity. We can create a basic index.js file and start writing an application. We just type node index.js inside our terminal and our script will execute.

Laravel

20 min

How to send and receive SMS messages with SMPP and Laravel

SMPP (Short Message Peer-to-Peer) protocol is an open-source protocol that allows us to send short messages between applications and mobile devices (receiving and sending).

Vue

10 min

How to display unescaped HTML in Vue.js

Often times we have a rich text editor on our web application that let's the user insert formatted HTML code and store it in the database as such.

Codinary