My 5 Reasons to Have a Career in Cybersecurity

A couple of days ago, I was considering why I would want a job in Cybersecurity. I had begun researching ways I could use my coding skills in a Cybersecurity career and realized that I had not written down my reasons for looking into the field. I knew I had reasons but I had yet […]

Getting Started with Cybersecurity in 2022 According to a David Bombal Interview

I want to start looking into Cybersecurity in 2022. I’m starting a bit late since this is already April but that’s okay. Lately, I’ve been taking time to reflect on where I want to go and what I want to do. I keep having this feeling that I need to decide my next step soon […]

Journey to Better Estimates

I’ve always felt that I struggled when estimating projects. No, that’s not completely correct. The small tasks or “go do it” tasks, I can estimate those ones pretty well. What I have struggled with is estimating a big project that has many facets and is, of course, high priority and visibility. TLDR: Estimating is only […]

Entity Framework Core: Getting Started with 3.1

Course Link: https://app.pluralsight.com/library/courses/getting-started-entity-framework-core/table-of-contents As someone who has not used Entity Framework very much, starting with Entity Framework Core 3.1 seems like the best place to start, and I didn’t even realize it at first. When I originally wanted to learn more about Entity Framework, I searched the Pluralsight courses for courses related to Entity Framework […]

I Spent 120+ Hours on Coding in January 2021 and I Didn’t Get Paid for It as a Developer

120+ hours of my time in January was not mine. I gave it up to finally achieve a goal I forgot I had up till now. That goal was to compete in the 2021 AI competition called Battlecode.  I recall some time in my sophomore year of college in  2015-16 that a friend of mine […]

Do This Instead at Night

Not sure if this is anything useful but I want to find a way to remember important things I want to implement or try. Here’s something from Seth Godin’s blog. Instead of doom-scrolling and checking to make sure everything is alright in the morning or at bedtime, write down a list of future opportunities and […]

Refactoring in C#: Notes From a Pluralsight Course

This course was a great overview and intro to the world of refactoring. The beginning of the course went into the reasons for when to refactor and when to leave code alone.  It was created by a man named Steve Smtih who is located at this website: http://ardalis.com/ You can find the course here: https://app.pluralsight.com/library/courses/refactoring-csharp-developers/table-of-contents […]

My Notes on Practical Data Modeling With C# and SQL Server

Hey how’s it going? Let’s dive into the topic of today which is data modeling! Here are some notes and thoughts I had from a course on Data Modeling with C# and SQL server. The big thing I learned from this course was normalization. Normalization is an approach to the database design process. The goal […]

Creating a Custom Authorize Attribute in C#

I wanted to share something that I wrote from a large project I completed earlier in 2020. If you have need of adding a security authorization to a C# project, normally you will turn to use the built-in security attributes. This is done by using the references found below. This allows your code to use the […]

How to Write Clean Code Functions

I share my thoughts on the different sections of the book Clean Code by Robert Martin. In this article, I talk about what I learned about functions. Messy Function Code I wanted to start off similarly to how Martin started his chapter on functions with a poorly designed function followed by the refactored version. See […]