Your cart is currently empty!
Author: jcianci12
-
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…
-
[Solved] How to Resolve Web Deploy Issues Related to Expired Passwords
If you’re using Web Deploy to deploy your web applications, you may encounter an issue where the deployment fails with an error message similar to the one below: This error indicates that the password for the WDeployConfigWriter account has expired, which is a known issue with Web Deploy. The installer creates users with expiring passwords…
-
Using docker-compose.yml and Dockerfile with devcontainer.json and vscode dev containers 🐳💻
This took me a little bit of fiddling around, and I wanted to share it with you 😎
-
SQL Cheat Sheet
List all rows in a table: SELECT * FROM table_name; List specific columns in a table: SELECT column1, column2 FROM table_name; Filter rows using a WHERE clause: SELECT * FROM table_name WHERE condition; Update rows in a table: UPDATE table_name SET column1 = value1, column2 = value2 WHERE condition; Insert rows into a table: INSERT…
-
Placing a TP profit and Stop loss order using CCXT and BINANCE
After trying many different ways of doing this with ByBit I gave Binance a shot. This seems to work fine and means that I dont have to worry about cancelling the tp/sl order if the other order is triggered!
-
Fixing inconsistently formatted Australian mobile numbers… in excel! 😎
Here is the excel formula: This formula checks if the first character of cell M2 is 0. If it is, it concatenates “+61” with the rest of the characters in M2 except the first one. If not, it checks if the first three characters of cell M2 are “+61”. If they are, it returns M2.…
-
By-bit spot stop loss and take profit orders.- My findings!
After trying so many different ways to place these types of orders on the exchange, and no real success, I ended up doing this: First we need to place our order. We can do so like this: Notice we have saved our order into a csv called “orders.csv”? We can now use this to check…