Your cart is currently empty!
Author: jcianci12
-
Midea SUPER DC Inverter Series Service Manual
Applied Models MHG-24HWFN1-Q / MOU-24HFN1-Q MHG-30HWFN1-Q / MOU-30HFN1-Q MHG-36HWFN1-Q / MOU-36HFN1-Q MHG-48HWFN1-Q / MOU-48HFN1-Q MHG-60HWFN1-Q / MOU-60HFN1-Q Hopefully you find this info helpful 😊 Thanks to the kind support of Midea Australia I was able to use this to assist in diagnosing my AC unit. Hopefully you find it helpful ☺
-
SSRS – lost report data pane
If you have lost the panel which you usually use to see your data sources and data sets, try pressing: Press Ctrl + alt + d to show the report data pane. Hope this helps you bring it back!
-
String Literal Cheat Sheet (Python, C#, JS)
Python Python uses f-strings for string interpolation. Here’s an example: In this code, the variables name and age are inserted into the string using curly braces {}. C# C# uses string interpolation with the $ symbol. Here’s an example: In this code, the variables name and age are inserted into the string using curly braces {}. JavaScript JavaScript uses template literals for string interpolation. Template literals are…
-
Guacamole Behind Nginx Proxy Manager
Anyone who has used nginx may agree that nginx proxy manager just adds a nice ui and makes things like refreshing configs easier. I wanted to migrate to it becuase I could use a docker container and it wasnt needed any longer on the host machine. I had an existing domain that wanted to utilise…
-
[SOLVED] 335i / n54 / e90 Random stalling issues
I have been hunting down a stalling/stumble issue for the last few months. Here are the clues: Here are the codes that I get on occassion Here are the parts that I have changed: Here is what im doing Ill keep updating as I go! Hopefully this serves any people hitting the issue in the…
-
Volumes vs Copying in docker containers – a note
I was wondering why a container would not build unless I included a copy command first. I mean – I had a volume set up! That should give the container what it needs to build right? Nope here is the difference: In Docker, volumes are used for persisting data at runtime, but they’re not available…
-
Random Misfire Solved on n54 e90 335i
I was chasing down a random misfire on my car for weeks. It was really starting to get to me. Here were the symptoms: The fix I ordered and installed fresh plugs as a start, as the plugs had been in for a long time (around 50000kms) When I installed them, and started up the…
-
Setting Up GPU Docker Support: Understanding NVIDIA-SMI Output
When setting up GPU support for Docker, it’s crucial to ensure that your host system is compatible. One of the tools that can help you with this is NVIDIA System Management Interface (nvidia-smi), a command-line tool that reports detailed information about the current state of your NVIDIA GPU. Key Information for Docker Compatibility By understanding…
-
How to Push Your Git Repository to TFS
In this guide, we’ll walk through the steps of pushing your Git repository to Team Foundation Server (TFS). This guide assumes that you’re working with a Git repository. If your project isn’t already in a Git repository, you’ll need to initialize a new Git repository for your project. Step 1: Add the TFS Remote in…
-
Debugging Adventures in Reinforcement Learning 🕹️🐞
Hello, fellow coders! Today, I want to share a recent debugging journey I embarked on while working with reinforcement learning (RL). It was a head-scratcher, but the solution brought that sweet “Aha!” moment we all know and love. So, buckle up and enjoy the ride! 🚀 The Setup 🏗️ I was working with a custom…