TekOnline

Author: jcianci12

  • πŸ“ Automating Hyper-V Checkpoints with PowerShell

    πŸ“ Automating Hyper-V Checkpoints with PowerShell

    If you’re a Hyper-V user, you know how important it is to take snapshots of your virtual machines before making changes or updates. With PowerShell, you can automate this process to save time and ensure consistency. In this article, we’ll show you how to use PowerShell to pause a Hyper-V virtual machine, take a checkpoint,…

  • Solving RDP issues in Ubuntu XRDP

    Solving RDP issues in Ubuntu XRDP

    πŸ‘‹ Hey everyone! In this article, I’m going to share how I was finally able to connect to an Ubuntu machine running in Hyper-V via xrdp. πŸ€” The issue I was facing was that I could connect via vsock, but I needed to allow TCP connections from any IP address. Here’s what I did to…

  • Angular JSON to CSV pipe

    Angular JSON to CSV pipe

    πŸ‘‹ Hey there! Are you working on an Angular app that needs to convert JSON data to CSV format? Look no further than the jsontocsv pipe! Here is the code: 🧐 Let’s take a closer look at how this pipe works. First, it defines a private function called flatten that takes an object and returns…

  • Handy angular CSV to JSON pipe

    Handy angular CSV to JSON pipe

    Today, we’re going to talk about a code snippet that can turn CSV data into JSON format using Angular. πŸ€–πŸ’» First things first, let’s take a look at the code: This is a TypeScript class that defines an Angular pipe called CsvtojsonPipe. A pipe is a way to transform data in Angular. The transform method…

  • πŸ—ΊοΈπŸ”πŸžοΈ Understanding Leaflet Map Events and Local Storage: How to Save and Load Map Bounds πŸ—ΊοΈπŸ”πŸžοΈ

    πŸ—ΊοΈπŸ”πŸžοΈ Understanding Leaflet Map Events and Local Storage: How to Save and Load Map Bounds πŸ—ΊοΈπŸ”πŸžοΈ

    Leaflet is a powerful open-source JavaScript library that enables developers to create interactive maps with a range of tools and functionalities that can be customized to meet specific requirements. One of Leaflet’s essential features is the ability to save and load map bounds, which can be useful for various scenarios. In this blog post, we…

  • πŸš—πŸ’» BMW E90 30D0 Error and 3100: What You Need to Know πŸš—πŸ’»

    πŸš—πŸ’» BMW E90 30D0 Error and 3100: What You Need to Know πŸš—πŸ’»

    If you own a BMW E90, you may have come across the 30D0 and 3100 error codes. These codes indicate issues with the wastegate solenoid, which controls the turbocharger’s boost pressure. But don’t worry! The fix may be easier than you think. In many cases, the issue is simply a matter of the wastegate solenoid…

  • Fixing 3d print feed issues.

    Fixing 3d print feed issues.

    πŸ› My old Cocoon Create was working well but needed some maintenance lately. At first, I thought it was just bed adhesion issues πŸ›οΈ, but upon closer inspection, I realized that the PTFE tube was causing some feed issues. πŸ“¦ I ordered a new PTFE tube and had to disassemble the hot end. There were…

  • How to Set Up Guacamole Behind Nginx for Secure Remote Access πŸ₯‘πŸ”’

    How to Set Up Guacamole Behind Nginx for Secure Remote Access πŸ₯‘πŸ”’

    Are you looking for a secure and efficient way to access your remote desktop or server? Guacamole is an open-source remote desktop gateway that provides easy access to your remote resources from anywhere. In this article, we will guide you through the process of setting up Guacamole behind Nginx for secure remote access. Before we…

  • Working with Null dates in DateRange Picker.

    Working with Null dates in DateRange Picker.

    πŸ‘‹ Hey there! I recently worked on implementing a date range picker using the Daterangepicker plugin in my web application. It was a bit of a challenge at first, but I learned a lot from the experience. One of the main issues I encountered was how to handle null dates with moment.js library. I found…

  • Freeing up space on your system using the docker image prune command.

    Freeing up space on your system using the docker image prune command.

    πŸ‘‹ Hey there! I recently discovered something pretty exciting that I wanted to share with you all. As a developer who frequently works with Docker, I often find that my system can get cluttered with unused images, which take up valuable disk space. So, I decided to do a little cleanup and see what I…