Author: jcianci12
-
How to spec out a new PC🔧
HEY! We have updated this guide for 2026. Check it out here Thinking of building a PC? Got a quote from a builder? Dont know what you want vs need? This guide could be for you! I love PC’s. Have for a long time, as a result, I stay up to date with the tech.…
-
How to map from one dynamic object to another in typescript 🌏
I wanted users to be able to select a style from a drop down at GeoJson-Styler (jcianci12.github.io) The user can choose how they want their geoJSON objects styled. at the moment the options are colour, text, and opacity. The classes look as follows: As you can see the text class is different to the other…
-
How to create a shortcut to a website.🏃♂️🏃♀️
You can create a shortcut on your desktop or any folder by simply dragging and dropping. Here’s how:
-
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 😎