KKelleninblog.kellenbaker.com·Oct 10, 2025 · 4 min readReact: Function References vs Function CallsIn React code, you may see the following ways of calling functions in jsx elements: onClick={handleClick} onClick={() => handleClick()} Understanding the difference and when to use which pattern is a common point of confusion. Let’s unpack what’s r...00
KKelleninblog.kellenbaker.com·Feb 10, 2025 · 4 min readThe Ruby Koans: About Class MethodsThe Ruby Koans are a fantastic resource to introducing the concepts and syntax of the Ruby programming language. In this post, we’ll explore the concepts posed by about_class_methods.rb: class methods, instance methods, and singleton methods. Objects...00
KKelleninblog.kellenbaker.com·Dec 17, 2024 · 3 min readHow to Create a Dynamic Timezone Clock Component in Vue with Day.jsIn this tutorial, we'll build a lightweight, reusable Vue.js component that displays the current time in any specified timezone. This component will automatically update every second and handle timezone conversions seamlessly. Prerequisites Basic kn...00
KKelleninblog.kellenbaker.com·May 22, 2024 · 2 min readHow to RebaseSay you have a branch called hotfix. You originally started by branching off of develop, but this was accidental. You need to rebase this branch from develop to main to release it as a hot fix. Here's an easy-to-follow guide on how to do it: On your...00
KKelleninblog.kellenbaker.com·Jan 25, 2023 · 3 min readBecoming a Ruby on Rails DeveloperI am approaching a one-year work anniversary at an awesome, creative company that uses Ruby on Rails to do some incredible stuff. I will admit that I was hesitant at first -- I have heard many developers online and IRL comment on how the language and...00