My Blog

The Agile's Peer Review

Coding peer reviews have evolved along with methodology throughout the years and for good reason. Coding peer reviews were once a very daunting task, overcome with grief and fear of offensive apprehensions. Even more so, we may have hit a mark in the early 2000s where peer reviews were seen as a mundane step, deemed...

Client Side vs. Server Side

Upon visiting a website or web application, a session will begin in which temporary data, that is useful to the user, is stored. There are many pieces to the storage puzzle, cookies, server-side session, client-side session, and local storage. Cookies are typically used when reading server-side sessions, while local storage usually refers...

MVC Arch. & Java

MVC Patterns map to Java and JavaFX by directly separating the applications concerns. Model, View, and Controller are the main objectives within the pattern in which the concerns can be broken into. For example, the model represents an object and logic to update the controller of its data changes, while View offers the visual...