Home

Hi, I’m Josh.
These are my ramblings.

Converting Strings to Dates in Java

Dates are a crucial part of any application that deals with time-sensitive information. In most cases, you’ll find dates represented as strings in your data sources. In order to perform operations on these dates, you’ll need to convert them into a Date object. Once a date has been converted from a String to a Date,…

Creating Your Ideal Remote Workspace

Working from home has become the new normal for many of us. With the rise of remote work, it’s important to create a designated workspace that is comfortable and conducive to productivity. Having a designated area in your home that is solely dedicated to work can help you separate your work and personal life, making…

How to Begin Story Point Estimating

“How long will it take for you to complete this?” — It seems to be a pretty common question that is asked of us. Truth be told, when technical team members are asked this question, our answers are so far from confident because there are so many variables that can derail a time estimate. I’m…

What is a Code Review?

Code reviews allow you to ensure you’re putting forth the best product possible. They’re very beneficial because they help: Detect and remove defects. Ensure requirements are met. Identify potential improvements (code syntax or efficiency for example) Determine progress in a project Reduce development time Reduce testing time (because of less defects). It is important to…