Seriously, do it. Start blogging about what you’re working on, or something you find interesting. I’ll give you my perspective: I’m an in-house developer for a manufacturer. Most of the things I work on aren’t public-facing, so I can’t show them off to others. None of the code I write for my job is openContinue reading “Start a Dev Blog”
Tag Archives: software development
The Value of Leetcode
My day-to-day work doesn’t always involve interesting programming challenges. That’s the nature of this work – sometimes you’re building something grand, sometimes you’re sweeping the floor. Things like Project Euler and Leetcode have always been in the back of my mind. This week, I became determined to begin working my way through the problems foundContinue reading “The Value of Leetcode”
What I learned in my first year as a dev!
I have recently crossed the one-year mark as a professional software developer. I had a lot of assumptions about what it would be like and many of them were not all that too accurate. Here’s what I learned in one full year as a dev. Just ship the code What I would consider to beContinue reading “What I learned in my first year as a dev!”
Useful Experience
I’ve been in a Senior Developer role for a little while now; long enough to start thinking about how to convey the usefulness of experience to more junior developers. There are a lot of jokes in our profession about being really good at using Google, or copying and pasting from Stack Overflow. Humor is importantContinue reading “Useful Experience”
Audit.NET
I’ve recently found it necessary to set up an audit log because I have some thrilling business requirements that demand I do so. Luckily, it appears that I’m not the first person that had to solve this problem and there was something available for my use. Even better, it looked pretty straightforward to use! However,Continue reading “Audit.NET”
The Browser as an IDE!
Tl;dr-The browser is capable of handling quite a bit of programming.-It’s easy to collaborate with people and sync across different machines.-Most online options allow you to choose any language you would like. You just got the bug to learn programming and you are wondering where to start (Or maybe you are a seasoned veteran thatContinue reading “The Browser as an IDE!”
You Probably Need a Project
For quite a while I didn’t have any programming-related side projects. This was a bit of a problem when I was presented with new opportunities because, invariably, I would be asked about what kind of work I could show off. This was difficult – everything I work on at my day job is proprietary andContinue reading “You Probably Need a Project”
Rainfall Updates
Today Rainfall got a bit of an update – a really, profoundly basic blog. It’s as basic as it is because I built it myself with (at best) a hazy idea about the baseline kinds of functionality I wanted. It was a good lesson, for me, in just what the most basic thing that solvesContinue reading “Rainfall Updates”
Did It Rain?
The title of this post poses a question that I found strangely difficult to answer. Why would I even care about rainfall in the past, anyway? Well, if you look around the blog a bit, you probably see some photos of my bikes. Strange, for a programming blog, but there they are. The reason IContinue reading “Did It Rain?”
Expando Objects!
I recently had a need to use objects that had properties I could define or remove at runtime in C#. I’m embarrassed to admit that I actually didn’t know that such a thing existed, because I don’t usually use the language in that capacity. It generally doesn’t make sense to, either, because you lose aContinue reading “Expando Objects!”