Two vanillajs frontend coding tutorials my code snippets May 22, 2021 less than 1 minute read Here is the two videos: https://youtu.be/kBojRuXvf2Q https://youtu.be/4zM2DgprRPw Inspired by this: https://www.acefrontend.com/challenges Share on Twitter Facebook LinkedIn Previous Next
ReactJS, the parts that you may dislike April 7, 2026 2 minute read ReactJS is one of the most popular frontend libraries, but everything has its downside. In this post, I’d like to share some reasons why people might thumb-d...
can you solve this typescript error quickly June 25, 2025 1 minute read ```typescript type User = { name: string age?: number active?: boolean }
how to over-engineer a feature manager - finding the right balance February 27, 2025 3 minute read Simplifying Feature Management with Balanced SOLID Principles
typescript/javascript function can use returned value in arguments November 14, 2024 1 minute read ```typescript function foo({ handler }: { handler: () => void }) { handler() return { bar() { return ‘the string bar’ }, } }