buquio.hashnode.devKey things every frontend developer should know about APIs.As front-end developers we often ignore the science that goes behind building a useful and well designed API. “That is the job of the backend guy” we say, “I should just know how to use it”. Which is a completely incorrect. To understand how an API i...May 28, 2021·9 min read
buquio.hashnode.devHow to create an HTTP server in NodeJSLet’s start by creating a server that returns plain text to the user. This will cover the key concepts required to set up a server, which will provide the foundation necessary to return more complex data formats like JSON. First, we need to set up an...Apr 13, 2021·5 min read
buquio.hashnode.devHow to create a python file in terminalIntegrated Development Environment’s like VSCode are super useful because they take care of most of the difficulties around programming. But, what if you don’t want to use an IDE to work with Python, but use command-line instead? I will show you how ...Apr 13, 2021·2 min read
buquio.hashnode.devCakephp login and registration exampleFirst is first, go to CakePHP website and download the latest version of it. Extract it, inside the your htdocs folder and rename as “logreg”. Now open this folder with your IDE and start coding. Step1: Let’s create our database. We will have two tab...Apr 13, 2021·15 min read
buquio.hashnode.devHow to Use PHP In HTML CodeBroadly speaking, when it comes to using PHP in HTML, there are two different approaches. The first is to embed the PHP code in your HTML file itself with the .html extension—this requires a special consideration, which we’ll discuss in a moment. The...Apr 13, 2021·2 min read