TekOnline

Author: jcianci12

  • Handy AWS CLI Install Script 🧾

    Create a file in your WSL2 environment and paste this in: set it as executable: Then run it like so: You should now have aws cli installed šŸ˜Ž

  • NBN and KOGAN internet outage, one month on since the QLD storms

    NBN and KOGAN internet outage, one month on since the QLD storms

    Introduction: The recent storms in Queensland affected many, causing widespread havoc on the 25th. In the aftermath, I find myself compelled to share my experience, hoping it might assist others in making informed decisions amid the lingering challenges. The internet is nowhere near as important as a roof over one’s head, but a month after…

  • Hosting Behind 4G: Using tailscale with pfsense

    Hosting Behind 4G: Using tailscale with pfsense

    Hosting services directly over a 4G connection poses challenges due to dynamic IPs, NAT complexities, and port restrictions. Tailscale provides a solution, simplifying dynamic IP management, NAT traversal, and port forwarding. This article outlines the steps to host seamlessly behind 4G using Tailscale. Steps to Host Behind 4G with Tailscale Get your VPS up and…

  • Midea Air Conditioner Displays CP on the wall control

    Midea Air Conditioner Displays CP on the wall control

    I recently encountered an issue with the main board of my Midea MHG-48HWFN1-Q indoor unit. The main board showed no signs of activity (no flashing light), although the daughter board seemed to be functioning normally (it was flashing). I reached out to Midea for assistance. After some persistent follow-up, they provided the necessary part information…

  • Midea SUPER DC Inverter Series Service Manual

    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)

    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

    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

    [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

    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…