Category: Programming
-
Angular CSV to JSON ๐
Here is a handy little pipe that allows csv to JSON (Usefull for importing CSV files into your angular app)
-
Angular behind NGINX blank page
TLDR:- Try your site in edge OR reset your cache like so: Click on the hamburger menu Click settings In the search box enter “cache” You should see…
-
Angular Getters and Setters on @Input() fields
Here is a handy cheat sheet… I kept forgetting the syntax of when an @input() decorator was used with a setter ๐คฆโโ๏ธ Getter Setter The cool thing is…
-
Leaflet Types for Angular๐ฉโ๐ป
When developing angular applications that use leaflet, you can run into some issues. ๐ฃ Perhaps you are trying to import leaflet like this One of the most common…
-

Multiple selections (multi cursor) in Visual Studio 2022 and VS Code
For a while I thought it was only available in vs code until I found this stackoverflow post! ๐ฅณ
-
How to add bearer token authentication to NSwag api.
NSwag is a game changer for working with Angular and Net Core, you write your endpoint code, and swashbuckler generates your swagger docs. You can find more info…
-
We Hire It ๐ฐ
For a long time I have noticed that the hiring is becoming more and more popular. Car hire, holiday house hire, etc. I have run a small hire…
-
#include guards in C++
I was having issues with an ESP32 project. I needed an instance of which was sitting in <wifisetupmanager.h> I needed this in two files – <setup.h> and <endpoints.h>.…
-
Debugging Angular with VS Code and Firefox
Everyone has their own preference when it comes to debugging. Here is what has worked well for me! This example is based on a new angular application. If…