-
Enable Http Transient Failure Retries with logging
-
Enable WSL2 to access Global Protect VPN Tunnel
-
Dotnet packages I want to use in the future.
-
Example Powershell/Windows Terminal Command setup
-
Must have applications for software development 2021 Version
I wanted to update my list of must have software for development, mostly to remember what I am currently using. These are listed in no particular order: Visual Studio 2019 (Why don’t they call this VS 2021?) SQL Server Management Studio Jetbrains Resharper Ultimate– I currently don’t use this, but when I did it was…
-
Check table configurations in EF Core 3.1
-
What to do when you have been ghosted by a recruiter
-
Proper case a string using RegEx in Javascript, except for words in parenthesis
Today I had to find a way to proper case a string, except anything that is in parenthesis. That sounds like a mouthful, so to clarify, I wanted to turn “JAVASCRIPT ROCKS (JS)” into “Javascript Rocks (JS)”, so I created a regular expression to do this task in an Adobe LiveCycle form. this.rawValue = this.rawValue.replace(/(?!\w*\))(\w\S*)/g, function(txt){…
-
Must have applications for development
-
Adding a solution to TFS without adding the NuGet packages.
I was adding a project that I just completed to TFS source control and noticed that it wanted to add the packages to source control also, but I didn’t want that because you are not supposed to add the NuGet packages. They can be re-downloaded and installed during the build process for anyone that does…