Author: jcianci12
-
Review on HP Omen 15 inch laptop
It’s nice to carry around and has a good feel to it, I’ve owned the 17″ and it is pretty bulky though if you want a desktop then check out the 17″ but this wins in portability. The keyboard is backlit and has a nice soft key press. Though there is one con of which…
-
Fixing MVC 5 Intellisense false errors (erroneous errors) ๐ข๐ฃ๐
This one really had me scratching my head. My error was looking similar to this stack overflow post – like this: The type ‘Expression<>’ is defined in an assembly that is not referenced Here is what worked for me… Locate the Web.Config in the root of your project (not the one in the views folder)…
-
Github workflow to deploy to github pages.
I recently set up an angular application and pushed it to Github. I had seen others use github pages to show their application and so wondered if I could do the same. Here is the config that worked well for me! You can see the implementation here: GitHub – jcianci12/GeoJSON-Styler: An application used for styling…
-
Angular CSV to JSON ๐
Here is a handy little pipe that allows csv to JSON (Usefull for importing CSV files into your angular app)
-
Unity Get Closest Object ๐ฎ
-
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 the option to “Clear Data” click this! Now you should be fetching all fresh data. And if the issue is resolved, the page should load. Otherwise likely…
-
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 that when you set the value of the variable, you can trigger a function call as above ๐
-
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 issues (perhaps when developing with later versions of angular which use strict typescript rules by default) is you run into an error where you receive the error:…
-

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! ๐ฅณ
-
MVC project running under Windows Server 2012r2 and ASP.NET 4.7 cant use Azure to authenticate anymore IDX20803 [SOLVED]
I logged in one morning to find that users of one of our apps were getting an error authenticating with an MVC site. When I investigated to check if this was a site wide issue, it seemed that anything on the site that was using Azure Identity was failing. The issue seemed to be caused…