Published onAugust 12, 2023How to use 'Nested Layouts' without 'Nested URLs' in RemixremixreactroutingDuring my recent experiments with Remix, I delved into "Pathless Routes". This approach not only reshaped layout sharing but also elegantly decoupled the parent route from root.ts, streamlining my code structure.
Published onSeptember 25, 2022Faster and colorful Command-Line tools 🌈⚡rustclicommand-linebashunixterminalTired of boring plain outputs when running commands in your Command-Line? And want to get better performance numbers?
Published onMarch 2, 2022TMIL: Using the "value" attribute in forms with Reactjavascriptreactthis-month-i-have-learnedConsolidated this concept while working on a website made in React
Published onFebruary 27, 2022TMIL: Google Chrome: Record, replay & measure user flowsjavascriptreactchromedevtoolsthis-month-i-have-learned
Published onDecember 16, 2021TMIL: rendering Arrays in Reactjavascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onDecember 15, 2021TMIL: forms in Reactjavascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onDecember 14, 2021TMIL: styling in Reactjavascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onDecember 13, 2021TMIL: creating Custom Componentsjavascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onDecember 12, 2021TMIL: using JSXjavascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onDecember 11, 2021TMIL: Into to raw React APIsjavascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onDecember 10, 2021TMIL: Basic JS "Hello World"javascriptreactthis-month-i-have-learnedNotes taken, resources collected and blog post ideas obtained from EpicReact lesson
Published onJune 20, 2021Creating my personal npm cardjavascriptnpmnodegithub-actionssemantic-releaseCreated a personal npm card inspired by [bitandbang](https://github.com/bnb/bitandbang)
Published onMay 26, 2021Event.preventDefault() vs. Event.stopPropagation()javascriptevent-propagationbrowserWhat is the difference between using `preventDefault` and `stopPropagation`?
Published onMay 25, 2021What is Event.preventDefault() for?javascriptevent-propagationbrowserWhat is the difference between using preventDefault or not using it when creating an eventHandler