Tag: Web Development
-
Hmm. Seems that when my posts appear in fediverse, I am hit with that Ddos effect off all connected instances requesting my page at the same time. This may only be for posts with images attached so I’m going to try and switch to using a plugin to offload my media on to Digital Ocean…
-
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…
-
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
How to set up Kibana and Elasticsearch locally, within Docker containers.
-
Install MongoDB with Docker for local development
Pull 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
A niche example of how I bulk convert my screenshots to make them more website-friendly.
-
Updating PHP versions in Ubuntu 20.04
Installing an older PHP version and switching to it in Ubuntu.
-
Started to learn Rust
Today is the day when I start to learn the Rust programming language.
-
Docker braindump
A collection of my learnings, notes and musings on Docker.
-
Been learning to use Docker Swarm
Despite not yet managing to get what I have learnt implemented, I have nonetheless took on board some good concepts around docker and docker swarm