Your cart is currently empty!
Author: jcianci12
-
[Solved] Image corruption when uploading files in .net core.
I had a real ‘Doh!’ moment today. I was having issues uploading images to an endpoint… after scratching my head and repeating the issue a few times, it came down to this line: Notice that the CopyToAsync is asyncronous, so it will not block the code. because I was not awaiting it, it runs to…
-
[Solved] Extremely slow upload speed on pfsense running under Hyper-V
Hey there, folks! I’ve been dealing with a bit of a speed bump in my home network setup. After some troubleshooting, I discovered that the issue was caused by a dead port on the Intel 82576 NIC card that my pfSense instance was using in Hyper-V. The port light was flashing orange, indicating a problem…
-
PyScheduler
Have you ever wanted to create a quick schedule, that avoids the common pitfalls of double booking, and overbooking? Here is a working concept that solves that problem. Features It has been a game changer in creating schedules. Feel free to try it out! https://pyscheduler.tekonline.com.au
-
Scrape a website for suburbs using Beautiful Soup and python
Sometimes you just need a list. No html, no formatting etc, and you need it quick. Here is a quick project to get a list of suburbs from the Brisbane City Council page located here: https://www.brisbane.qld.gov.au/about-council/council-information-and-rates/brisbane-suburbs Of course, you are first going to need to install python, then your dependencies. I use pip to install…
-
[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…