Author: jcianci12
-

Setting up iphone with purely mail
If you’re looking to set up your PurelyMail account on your iPhone, you’ve come to the right place. In this tutorial, we’ll walk you through the process of manually setting up your PurelyMail account on your iPhone. Step 1: Open the Settings App on Your iPhone The first step in setting up your PurelyMail account…
-

🐳🔧 How to Fix File Permissions in Dockerized WordPress from Inside the Container
If you’re running a Dockerized WordPress environment and you’re having trouble with file permissions, you may need to reset the file permissions for the WordPress installation directory and its contents. In this post, we’ll show you how to fix file permissions in Dockerized WordPress from inside the container using some simple commands. 👉🏽 Note: We…
-

🌐💻📧 Get Your Business Online with TekOnline
Want to establish a strong online presence for your business? TekOnline has got you covered! For just $300, we offer domain name setup, 3 email accounts, plus WordPress install, and everything needed to get an initial site design up and running. Plus, for just $30 per month, we provide ongoing website maintenance and support. With…
-

📅 How to Format and order dd-mm-yyyy Dates in jQuery DataTables 📅
If you’ve ever worked with DataTables, you may have encountered issues with how dates are displayed. By default, DataTables will display dates in a format that may not be easily readable or sortable. However, with a few simple tweaks, you can format your dates to display exactly how you want them. First of all your…
-

Title: How to Add a Windows 10 Machine as a Backup Repository in Veeam Backup & Replication
As an IT administrator, one of your top priorities is to ensure that your organization’s data is properly backed up and protected against data loss. Veeam Backup & Replication is a powerful backup and recovery solution that can help you achieve this goal. However, adding a Windows 10 machine as a backup repository in Veeam…
-
Automating SSL Certificate Renewal with Certbot and Nginx
SSL (Secure Sockets Layer) certificates are a crucial component of web security, encrypting data transmission between clients and servers. However, SSL certificates have an expiration date, after which they become invalid and must be renewed. SSL certificate renewal can be a tedious and error-prone task, especially for websites with multiple domains and subdomains. Fortunately, the…
-

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