Your cart is currently empty!
Author: jcianci12
-
How to reload or restart NGINX
In my experience, there is a difference between restarting nginx using the following: And doing the following The second option above actaully reloads any configuration changes that have been made to to nginx. Before reloading changes, its best to run: So that you can test the configuration first! Hope this helps 🙌
-
lancache in docker with docker-compose
I like to have my docker containers triggered from a docker-compose file. What this means is that its easy to start them from vs code simply by right clicking and selecting “Compose Up” I found this docker run command at the official documentation here: https://lancache.net/docs/containers/monolithic/ With some tweaking now it looks like this Now its…
-
Cant push to git? Maybe you need this…
If you cant push to GIT, it may be something as simple as configuring your git settings. You can do the following by typing these commands in git bash:
-
Dont need that old device? Save it from landfill!
E-waste is considered the “fastest-growing waste stream in the world”[8] with 44.7 million tonnes generated in 2016- equivalent to 4500 Eiffel towers.[3] In 2018, an estimated 50 million tonnes of e-waste was reported, thus the name ‘tsunami of e-waste’ given by the UN.[8] Its value is at least $62.5 billion annually.[8] Secure disposal of EWaste…
-
How to spec out a new PC🔧
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. But I know im a bit different to most. I mean, who…
-
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…