Author: jcianci12
-
Resolving UNVERIFIED Messages When Using AWS SNS and New Sender IDs
Introduction If you’ve been using Amazon Simple Notification Service (SNS) to send SMS messages, you might encounter an issue where messages are received as “UNVERIFIED.” This can be…
-
Angular 19 OAUTH2 bearer token interceptor example. (NswagStudio compatible 😎)
In this article, we’ll explore how to set up an auth interceptor in Angular to automatically add an authorization header to all outgoing HTTP requests. We’ll also discuss…
-
System.Text.Json 8.0.0.4 Vulnerability: A Solution
I was facing a very strange issue where after updating a NuGet package (System.Text.Json from 8.0.0.4 to 8.0.0.5) and targeting .NET Framework 4.8.1, the project wouldn’t build correctly.…
-
Why is My Angular Array Not Updating in the View?
As an Angular developer, you’ve probably encountered this frustrating scenario: you update an array in your component, but the changes don’t seem to be reflected in the view.…
-
Python, Flask and the dreaded error: No module named ‘imp’
When trying to run a flask application under vscode, dev container, python 3.12.7 64 bit, I started getting these errors: After lots of non helpful answers (at least…
-
Avoiding Syntax Errors with the Conditional Operator in C#
I was having a strange bug in my code, everything looked right, but for some reason, it just wouldn’t work as expected. I had written a simple conditional…
-
Two-Way Data Binding with Dates: A Common Gotcha
I was having issues getting dates to bind. I realised that when the data came down as a string, the data binding worked fine, but when it came…
-
Getting HTML Datepickers to Display Bound Data Correctly
I was trying to get a HTML datepicker to show the underlying data that it was bound to, but was running into issues with the date format. The…
-
Pulling a Close Button to the Right in Bootstrap 5
I was wanting to pull a close button to the right in Bootstrap 5 recently. After some research and experimentation, I ended up finding that the text-end class is a…
-
Taking Control of Notifications with Home Assistant
I was getting a bit tired of getting non-stop notifications when I was mowing the front lawn. So I decided to create a toggle in Home Assistant that…