Old Links

One of the primary reason I started this blog was because I wanted a place to preserve personal learnings, as well as links to blog posts or articles I found particularly useful. I had been keeping these on Google Plus, but because Google Plus is getting shut down I decided to use this as an opportunity to mess around with Jekyll and Github Pages. This is an unorganized collection of links to some of those articles.

The problem with keeping a collection of old links like this, without adding anything new, is that I can't guarantee that they'll stick around forever. Better would be to incorporate the relevant knowledge into a post of my own, which I plan on doing over time. Hopefully before the original articles aren't lost forever.

Optimization Guide for Windows 8 on SSDs : Okay, this one is really old, dating back to 2012. I have no idea if it's still relevant for Windows 10 or newer hardware.

Password Reset with SimpleMembership : I think all of this (or most of it) is baked into newer releases of ASP.NET MVC 5. I know that I had the ability to plug in a simple email service to a .NET Core 2.x app as part of the default scaffolding. Keeping it for posterity anyway.

Resolve 404 in IIS Express for PUT and DELETE Verbs : This was written for IIS 7, and the current version is IIS 10. I don't remember having to modify the allowed verbs, but keeping this anyway in case I need it.

How to Enable Remote Connections in SQL Server 2008 : The latest version of SQL Server is 2017, so these instruction are quite old. As far as I'm aware, they're just a relevant.

HTML5 Sortable : This doesn't have the same level of control that I wanted. I should follow up with my extended library in a dedicated post.

Using Areas in an ASP.NET MVC App : The original link (here) I used was super old (MVC 3). The link above is for ASP.NET Core 2.2. : Areas allow you to organize your code more fully, to allow multiple high level functional components to work independently. Each area has its own controllers, views, and models.

Another Old Article on ASP.NET Areas : The name says it all. This is from 2012. I read through it briefly and most of it still seemed relevant.

Successive Method Calls with Moq : The original link (here) was from 2009. Phil updated it in 2010.

HTTP/2 : Per the GitHub landing page, "HTTP/2 is a replacement for how HTTP is expressed 'on the wire.'"

VanillaJS : Vanilla JS. Need I say more?

Load Local JSON file through Javascript : I recently had a need to work with a big, complicated JSON object. Instead of working exclusively in an IDE, I found it quicker to develop on a static single-page application, using a local .json file with an example object. This article helped me load a local file as a json object to work with. : Note: Google Chrome doesn't allow you to do this unless the file is running through a web server of some sort, even a basic Apache server is good enough.

Unit Testing Anti-Patterns : James Carr used to have a blog post on the topic, but the link doesn't work anymore.

Using npm and Webpack in ASP.NET Core : I am using Webpack in a couple of projects, but I still don't think I understand it well enough to consider myself anything but a novice. I've used several articles to get me started.

DOMException: The play() request was interrupted : This is an occasional exception I've gotten when streaming music from home to work.