Musings of an aging computer nerd hitting 0x32
Learn C on Linux
Came across this article of ways to Learn C on Linux which took me back to my 3rd real programming job.
It was with a software house mainly working with C/C++ on Linux/ Unix and embedded systems.
My first real experience use C/C++ in a professional environment, happy days with a good bunch of geeks.
If you’ve never tried it before it would be a good change from more recent languages to learn C for a challenge.
Quick Tip : Installing Ruby 2.7 and Node 12 on RH8
Installing Ruby and Node on Redhat 8
Quick tip on how to install Ruby 2.7 and Nodejs 12 on Redhat 8, as it can default to older versions.
# Enable new versions
dnf -y module reset ruby nodejs
dnf -y module enable ruby:2.7 nodejs:12
# Install
dnf install nodejs ruby
# Check installed versions
ruby --version
node --version
npm --version
Docker Images Again
Devops Docker images again
Another Docker image with some tools useful for devops, this time includes the TIG CLI utility.
Tig
Tig Docker image https://github.com/alastairhm/docker-tig
To use run the following;
Directly on the CLI
docker run --rm -ti -v $(pwd):/mnt ghcr.io/alastairhm/docker-tig:latest
As an alias
alias tig='docker run --rm -ti -v $(pwd):/mnt ghcr.io/alastairhm/docker-tig:latest'
For full instructions on using TIG visit the offical instructions page.
Steam World Dig
Picked this indie retro style platform game for my Playstation 5 cheap recently.
It was released in 2013, so old now but still a good play.
Links
BBC Twitter Bot Fun
More fun playing with BBC Twitter Bot.
https://tco/ks0jhudxdM
https://tco/jVpUMLBa8D
https://tco/Rt3DOf1FOh
Six months
Six Months
Doesn’t time fly, been at my new job with the DWP six months now.
Still enjoying it, learning new tools (Nomad, Pact, etc) and techinques as they say everyday is a school day.
I a major part of it is the team I joined, most welcoming and helpful bunch, looking forward to the next six months.
Learning Rust (again)
Learning Rust
New year, new programming language, decided to go and learn Rust programming.
Some interesting concepts so far.