Solution to fix USB showing incorrect capacity

Recently I encountered a situation where my usb shows only a very small amount in its capacity (roughly ~30KB !!!). After researched, I found a solution and the steps can be achieved below: Usi... Continue reading

Programming With Types (Part 1)

One of the book I’ve read recently is called Programming With Types from Vlad Riscutia published by Manning Publications. I happened to purchase a bundle from Humble Bundle a while ago and I thou... Continue reading

Running Jekyll on MacOs M1

( If you don’t know what Jekyll is. I recommend checking out their site here) I bought a new 14-inch Macbook Pro at late 2021 and spent some times to configure and transferred all my previous files... Continue reading

Simplify 'If/Else' in Javascript

When developing in Javascript, we usually use if/else statement to solve simple conditional logic. The statement executes a block of code if a specified condition is true. If the condition is false... Continue reading