Your cart is currently empty!
Author: jcianci12
-
[Solved] how to reset the TOTP secret when locked out of Guacamole
For reference, im using the abesnier/guacamole image.
-
Building a Dockerized C# Email Tester: A Step-by-Step Guide 📧🐳👨💻
As developers, we often need to test email functionality in our applications. But how can we do that efficiently, especially when working with Docker containers? In this tutorial, I’ll walk you through the process of creating a Dockerized C# Email Tester. We’ll cover everything from setting up the project to sending test emails—all within a…
-
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…