Your cart is currently empty!
Author: jcianci12
-
Ali Express ‘System is Busy’
Is anyone else getting this error? Leave a comment if you are!
-
[Solved] Adding SPM01-D2TW to home assistant. (Wifi version)
There seemed to many articles online for adding the ZigBee version, but not the WIFI one, so here it it! Prerequisites: Home assistant, with HACS (there are plenty of guides for this process that can be found online – just search google or youtube for HACS install for home assistant 😉) The key piece of…
-
Authentik [Solved] {“detail”: “Request denied due to expired/invalid license.”, “code”: “denied_license”}
The issue is described here: https://github.com/goauthentik/authentik/issues/9051#issuecomment-2051505073 In short: The issue was caused by a bug in 2024.2.1 which was fixed in 2024.2.2, but incorrect values could be cached and thus the warning banner/read only mode would wrongly be enabled. The workaround is to remove the faulty cache item (cache.delete(CACHE_KEY_ENTERPRISE_LICENSE)) To fix: Get into the shell…
-
Creating a component and adding it to an existing module.
Sometimes when creating a component, we want it to exist under a module to keep things structured and so that our app module doesn’t get huge. It can also provide other benefits like lazy module loading and some nice other features. So that others know, the important thing here is that the file name of…
-

Removing Files from Git Source Control: A Quick Guide
Introduction When working with Git, you might encounter situations where you need to remove a file or folder from source control. Whether it’s a temporary build artifact or a file that should never be tracked, Git provides a straightforward process to achieve this. In this article, we’ll explore the steps involved in removing files from…
-

Addressing web deploy issues
When configuring new web deploys, often one can run into strange issues, and sometimes there isn’t much feedback given. In most cases I have found following these two steps helpful: Check Credentials Ensure that the credentials for the user performing the deployment are accurate. Typically, both read and write access are necessary for successful deployment.…
-
HELP! Hosting .netcore https site inside docker container.
Im currently running a dev container for my .net core project. After following the directions found here: I can get my site working, so for if example I nav to lhttps://localhost:5001/swagger/index.html then I see my swagger config. Perfect! Also, if I nav to https://localhost:5001/.well-known/openid-configuration my config comes up! Great! Its worth noting that both of…
-

Developing net core inside docker with https and kestrel
First of all its a good idea to just make sure you can get https dev working locally. Then you can move to https on your container. This guide doesnt cover that but there are heaps of guides out there and the process is pretty straight forward. This guide will only look at https for…
-
[Solved] ERR_CONNECTION_RESET with SSL and ASP.NET
I was in the process of migrating an application from forms authentication to Azure identity authentication. Initially, everything seemed straightforward, especially since I had another application already functioning with the new authentication method. However, my optimism quickly waned when I encountered unexpected issues during testing. Upon inspecting the setup, I found that despite setting everything…
-
[Solved] Entity framework – Violation of PRIMARY KEY constraint ‘…’. Cannot insert duplicate key in object ‘dbo…’ the duplicate key value is (…). The statement has been terminated.
If you are struggling to create a new record in a sql db when using entity framework and you are ending up with an error that looks like this: What this means is that in SQL databases often a table will have a primary key id. And this primary key is generated by the data…