REDIS NODEJS JAVASCRIPT Speed UP Your Application with Redis Cache Speed is everything! Imagine if an user needs to wait around 2 seconds for the desired information. He/ She or at least me myself would already close the application and try to search for another website.
GO Concurrency & Parallelism with Go Have you ever wonder how to speed up your program especially when you trying to receive a quick reponse from HTTP Request as soon as possible while there are bunch of code need to be executed in the API. In this article, we will be going through how to increase our performance via concurrency and parallelism
NODEJS JAVASCRIPT JSON Web Token JSON wen token (JWT) is slowly becoming a standard token format that we use to authenticate our client in our modern web application nowadays. Let's talks a little bit about this with NodeJs
NON-TECHNICAL HACKATHON I participated my very first hackathon ! There is nothing related to technical skills or programming. In this post, I would like to record down my very first hackthon which held virtually through online in 18-03-2021
REACT React Router Dom React router dom is using dynamic routing which allows us to handle our route in web app in the way that we can create and customize our own url and render based on different components
NODEJS JAVASCRIPT Setup Node server with express Setting up a server in node js is relatively easy especially with their framework Express. In this article, we will be going through how to setup a server with express, syntax is express server and organizing different routes into different directory
JAVASCRIPT GO Download File with Go In this article, we wil be demonstrate how to perform a http download file with Golang and Javascript
JAVASCRIPT GO Upload File with Go Upload file to server is a very popular use case in any application. However, it somehow can be very complicated or difficult to understand how it works. In this article, we will be studying how to upload any type of file with Golang and Javascript.