Dino’s Journal 📖

SoftwareDevelopment

At the start of this year, I decided to stop writing to my dev blog and instead start publishing software development posts on this journal.

I loved the ease of publishing new software development content to this journal using write.as. But I didn't really like how it all turned out. Specifically, I thought it was jarring to be reading a post on SQL Server, then hit the homepage to find posts on video games and God. It felt awkward to me.

So, I decided to once again start publishing software development posts to a dedicated software development blog. This time around, instead of going back to a static site generator, I spun up a new dev blog on write.as. I'm hoping that the ease of publishing new content outweighs the drawbacks of having yet another website to maintain. We'll see how it goes.

Read more...

During my second digital declutter, I found that I had a lot more time to tinker with my websites. And so I did. Here are some of the updates I've made to this site during that time.

Blazor WASM Search App

I've got a new Search app for this journal. It is a Blazor Web Assembly app. So, basically a .NET app written in C# that runs as a client-side web application. And it loads much faster than my previous Search app hosted on Glitch. That's because it is a static site hosted on Netlify. Which means it's always up and running. There is an initial load where your browser downloads the .NET DLLs. But after that, it should load pretty quickly next time you use it.

You can find the source code for it here.


Removed Random Post Link

I took away the link to get a Random post from this journal. I did so because it had a slot machine feel to it. Watching The Social Dilemma reminded me of the slot machine nature of it. But my main reason for removing it, was because it took so long to load at times. This stood in stark contrast to how fast this Write.as powered site loads. I can redo it as a Blazor Web Assembly app, but that's not a priority right now. Maybe something to tinker with in the future.

Read more...

I went from an Archive Page that used an embedded Glitch app, to a static Archive Page.

Previously, I used an embedded Glitch app to dynamically create the contents for my Archive page. It worked well, but it was also slow. It was slow because every time you visit the page, the Glitch app had to wake up, then pull all my write.as posts and finally display them in a list. The slowness was a stark contrast to other pages on this site — most of which load very quickly. I also didn't like the idea of depending on a third-party service to serve up the contents of my Archive page.

So, I've been wanting to switch to a static Archive page for awhile now. My problem was that I already had over 350 posts on this site. To get me started, I needed a way to quickly generate a list of all posts on this site. For this, I created a .NET Core console app. This app would get all my posts using the write.as API. Then the app would spit out the list of all posts in HTML format. My first pass actually had it spitting out text in Markdown. But I quickly ran into issues with Markdown and <div> elements not playing well together. So, HTML it was. Anyway, once I had the output on a text file, all I had to do was copy over the HTML and paste it into my Archive page.

Read more...

On my dev blog, I shared some tips for working with Production databases. Especially helpful if you haven't had your morning coffee yet. You don't want to accidentally delete Production data that early in the morning.

Link: Tips for Working with Production Databases

Do you work with databases too? If so, I'm curious to hear your tips on how to avoid messing up Production databases while working with them.

Tags: #Database #SoftwareDevelopment

Discuss... or leave me a comment below.

For those interested in #SoftwareDevelopment, I wrote about the Single Responsibility Principle on my dev blog.

Discuss... or leave me a comment below.

For those interested in learning software development with C#, I wrote a post about String Comparisons in C# on my dev blog.

Tags: #SoftwareDevelopment

Discuss... or leave me a comment below.

I was inspired by Erik's post on software development testing, that I ended up writing about my own experience with bug fix testing on my dev blog.

Link: Write Tests Before Bug Fixes

Tags: #SoftwareDevelopment

Discuss... or leave me a comment below.