Avatar

Jeff's Blog

I enjoy what I learn and I share it🌟

❝Life is best filled by learning as much as you can❞

changcheewah96@gmail.com
  1. Home
  2. About
  3. Archives
  4. Search
Featured image of post Middleware with GO
GO

Middleware with GO

Middleware usually sits between client site request on Front-end and the backend resource being requested. Middleware is very useful especially when we wanted to have some verifications such as the request methods, headers and JWT before we makes the API call

Jan 10, 2021
Featured image of post useEffect Hook
REACT

useEffect Hook

useEffect is very useful especially when we wanted to execute blocks of code after the component has rendered. By default, effects run after every completed render, but we can also define to fire them only when certain values have changed which is good for the optimization.

Jan 03, 2021
Featured image of post useState Hook
REACT

useState Hook

useState hook is very useful in storing single form of data. It returns 2 parametes which are current state and the function to update the state. React will automatically show the latest state value when the current state has changed by rerendering the component. Usestate hook is very useful as we can utilize it to dynamically display the data we want.

Dec 27, 2020
Featured image of post Node Package Manager
JAVASCRIPT

Node Package Manager

Node Package Manager (NPM) is a package manager for the JavaScript programming language.It makes us easily install modules or packages in our system. It also makes it easier for developer to share their code. For example, after we cloned someone respository from Github, we can always type `npm install` and `npm start` to see the application in the development

Dec 20, 2020
Featured image of post REST API with Go
GO

REST API with Go

In this article, we are going to build a simple restful service with Golang by using Gorilla Mux package

Dec 15, 2020
Featured image of post How to center a DOM element
HTML CSS

How to center a DOM element

Center an element sometimes can be very confusing. It can be center horizontally, center vertically or center both horizontally and vertically in the same time. In this article, we will be discussed multiple approaches to center the element in different situation.

Dec 06, 2020
Featured image of post Redis List
REDIS GO

Redis List

Redis Lists are simply lists of strings, sorted by insertion order. It is possible to add elements to a Redis List pushing new elements on the head (LPUSH) or on the tail (RPUSH) of the list.

Nov 29, 2020
Featured image of post HashMap
JAVASCRIPT ALGORITHM & DATA-STRUCTURE

HashMap

Javascript itself comes with Object and Hashmaps(Map) that will organize and arrange the data into key-value pairs. Hashmap are organized as linked list in the sense that it remembers the original insertion order of the keys

Nov 22, 2020
1 … 4 5 6 7
© 2024 Jeff's Blog

Archives

2023 6
2022 5
2021 23
2020 17

Tags

JAVASCRIPT NODEJS GO REACT MONGODB ALGORITHM & DATA-STRUCTURE GRAPHQL REDIS RABBITMQ CSS DEVOPS HTML NON-TECHNICAL TYPESCRIPT HACKATHON LIFE SHARING