Response.Redirect is Dumb. Here's a Smarter Approach.In the world of web development using C#, the Response.Redirect method is a common way to guide users to different pages within a web application. However, there's a glaring issue that we need to address: the second parameter, which introduces unnece...Sep 22, 2023·3 min read·229
#12 Imposter Syndrome and Software DevelopmentIntroduction This is my first post of content based on an episode of my podcast you can see below! #shamelessPlug To find more, check out https://workingunittests.com! I would love to hear from you if this is helpful - feel free to leave a comment...Jan 17, 2022·3 min read·173
Cypress: Integration Tests Made Easy!Tdlr; I had put automated integration testing on the back burner due to "lack of time" but once I saw how easy it was - I felt rather silly for taking so long. Try out Cypress! You might be as surprised as I was! I am not sponsored in any way in thi...Jan 15, 2022·2 min read·203
You NEED to read these booksIntroduction "A reader lives a thousand lives before he dies. The man who never reads lives only one." - George R.R. Martin As developers our lives are FILLED with constantly learning new things. Be it a new programming language, new best practice ...Jan 10, 2022·2 min read·138
Never say this to your teammates!tldr; when a teammate comes to you for help with a problem, be sure not to write it off as a small or minute issue even if it appears to work normally in your environment or machine. There may be factors you are unaware of and leaving the conversatio...Jan 10, 2022·3 min read·136
Dynamic Images in Vue.jsHow I was able to load static images dynamically in <img> elementsJan 7, 2022·2 min read·12K
Vue.js <button> opening a new tabOne thing I found difficult in remembering how to do was making a button in VueJS act as an <a> tag and open a link via a new tab. Fortunately, this was way easier than I thought! <button @click="gotoLink()"> Click me! </button> methods: {...Jan 6, 2022·1 min read·3.7K