React Hooks Not to Run on Initial Load 08 May 2023 React TypeScript React Hooks Not to Run on Initial Load There are times that a page would error out if on initial load, it renders more than once. Rendering more than once unnecessarily is always
Extending build-in ruby classes in Rails 01 Feb 2023 Ruby Ruby on Rails Extending build-in ruby classes in Rails It's a useful skill to extend build-in ruby classes in Rails. And it turns out to be fairly straightforward. We're going
Sidekiq Server Side Middleware 30 Oct 2022 Ruby Ruby on Rails Sidekiq Sidekiq Server Side Middleware Our team recently has converted all our background jobs from delayed job to Sidekiq. There are many things that we have learned along the way.
Sidekiq WebUI Access Control 28 Oct 2022 Ruby on Rails Sidekiq Sidekiq WebUI Access Control Sidekiq built-in webui is simple and useful. We would like to take the advantage of that instead of reinventing the wheel. Sidekiq recommends for a
31 Aug 2020 ANGULAR NX Write Ng Add Schematics for Library in Monorepo In our monorepo, we have about 30-40 projects under library. We use custom schematics to integrate our library with Angular CLI. This post shows how