Author: jcianci12
-

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

💻 Angular Tip: How to Trigger a Pipe Update with Object Assignments
If you’re building an Angular app that uses pipes to transform data, you may run into a situation where you need to update an object in your component and have the pipe react to the change. But what if the pipe doesn’t update, even though you’ve assigned a new value to the object? 😕 Here’s…
-

Fix for Angular template Autocomplete.
👋 Hey there, Angular developers! Do you use Visual Studio Code as your code editor and find yourself missing out on Angular template intellisense? 😩 Fear not, there’s a simple fix that can help you get the most out of your development experience! One of the reasons why you might not be getting Angular template…
-

How to Fix Media Uploads when WordPress is hosted behind NGINX
📁 If you’ve ever tried to upload a large file to your WordPress site, you may have encountered the “413 Request Entity Too Large” error. Or perhaps you get strange errors when uploading larger files? This error message can be frustrating, especially if you’re trying to upload an important file or media asset to your…
-

Fix for prettier splitting HTML tags in VSCode
🎉🎉🎉 ng on an Angular application can be a joyous experience, but when prettier starts splitting your HTML tags, it can quickly turn into a nightmare 😱. Fear not, for I have found a solution that will have you dancing 💃 in your chair with joy. After trying a few different settings, it turned out…
-

Limiting rotation in Unity easily, using relative direction of game objects
I wanted a way that would allow me to limit the gun rotation based on two game objects. That way different guns on the ship could have different limits so that the player couldn’t shot their own ship 😆 I wanted the limits to be visual, so that they are easy to visualize and adjust.…
-

Updating Plex in a docker container.
There seems to be many conflicting solutions on how to do this, provided you have a running plex docker container, and you used docker-compose to bring it online, here is what you need to do to pull the latest version! docker-compose pull is a command that pulls the latest version of an image from a…
