Web Development
-
Installing and setting up github cli
What is the github cli The Github CLI tool is the official Github terminal tool for interacting with your github account, as well as any open source projects hosted on Github. I’ve only just begun looking into it but am already trying to make it part of my personal development flow. Installation You can see…
-
How I organize my Neovim configuration
The entry point for my Neovim Configuration is the init.lua file. Init.lua My entrypoint file simply requires three other files: The user.plugins file is where I’m using Packer to require plugins for my configuration. I will be writing other posts around some of the plugins I use soon. The user.options file is where I set…
-
Categories: Notes
Started working on a side project I’m calling “Pitch”. It’s an end to end encrypted website starter inspired by SiteJS by the Small Technology Foundation. Got a basic vue app set up with the vue-cli but now can’t work out why my private key generator sometimes returns what I expect — a Uint8Array — and…
-
Setting up Elasticsearch and Kibana using Docker for local development
Categories: GuidesHow to set up Kibana and Elasticsearch locally, within Docker containers.
-
Install MongoDB with Docker for local development
Categories: GuidesPull the docker image for mongo down to your computer. docker pull mongo Run the mongo container in the background, isolated from the rest of your computer. # Command explained belowdocker run -d -p 27017:27017 –name mongodb mongo -v /data/db:/data/db What I love about this approach is that I don’t start muddying up my computer…
-
Bulk converting large PS4 screenshot png images into 1080p jpg’s
Categories: GuidesA niche example of how I bulk convert my screenshots to make them more website-friendly.
-
Updating PHP versions in Ubuntu 20.04
Categories: GuidesInstalling an older PHP version and switching to it in Ubuntu.
-
Started to learn Rust
Categories: NotesToday is the day when I start to learn the Rust programming language.
-
Been learning to use Docker Swarm
Categories: Long FormDespite not yet managing to get what I have learnt implemented, I have nonetheless took on board some good concepts around docker and docker swarm
-
How I would set up Laravel with Docker
Categories: ProgrammingThis is a quick brain dump for myself to remember how I set up Laravel with Docker. Hopefully it can help others out also.