Author: jcianci12
-

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…
-
![[Solved] How to Resolve Web Deploy Issues Related to Expired Passwords](https://www.tekonline.com.au/wp-content/uploads/2023/09/OIG-1.jpg)
[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:…
-

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…
-

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…
-

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…
-

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…
-

How to add a remote folder share as a remote git repository in vs code?
In some cases, you might just wanna push your code to a network folder and use that as your remote. This will also work without vscode as long…
-

Simple way to sort dates in any format with jquery.datatables
Initially, I was formatting the date in my table using any format I liked. However, I soon realized that this would ruin sorting. For example, if you have…
-

Solving Issues with Bybit v5 Python API
Introduction: Recently, I encountered an issue while using the Bybit v5 Python API. After running for a few hours, the API would stop working properly and I would…