<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>That MLOps Guy</title><link>https://thatmlopsguy.github.io/</link><description>Recent content on That MLOps Guy</description><generator>Hugo</generator><language>en</language><copyright>That MLOps Guy</copyright><lastBuildDate>Sat, 27 Sep 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://thatmlopsguy.github.io/index.xml" rel="self" type="application/rss+xml"/><item><title>Volkswagening</title><link>https://thatmlopsguy.github.io/notes/volkswagening/</link><pubDate>Sat, 27 Sep 2025 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/notes/volkswagening/</guid><description>volkswagening (verb): systematically deceive through sophisticated technological means while presenting oneself as virtuous, particularly in matters of environmental responsibility or corporate ethics.
Inspired from the qz article: Samsung is accused of Volkswagening its TVs to oversell their energy efficiency</description></item><item><title>Bridging the Gap: Implementing GitOps Bridge Pattern with Kind</title><link>https://thatmlopsguy.github.io/posts/gitops-bridge/</link><pubDate>Sun, 16 Feb 2025 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/gitops-bridge/</guid><description>As I reflect on my journey implementing the GitOps Bridge pattern, I&amp;rsquo;ve learned that it&amp;rsquo;s not just another technical solution, it&amp;rsquo;s a fundamental shift in how we manage our Kubernetes infrastructure. My experience began with a simple goal: to bridge the gap between creating Kubernetes clusters and managing them through GitOps.
Traditional approaches to Kubernetes management often create a disconnect between two critical phases: the infrastructure provisioning, where you create and configure the Kubernetes clusters using an IaC tool like terraform, and the addons/application management, where you deploy the required applications within those clusters: monitoring, compliance and security addons.</description></item><item><title>Introducing Future Perspectives: A new initiative to update our world view</title><link>https://thatmlopsguy.github.io/posts/predictions/</link><pubDate>Sat, 04 Jan 2025 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/predictions/</guid><description>As we navigate the complexities of our rapidly changing world, it&amp;rsquo;s more important than ever to engage in thoughtful discussions about what&amp;rsquo;s to come. Today, I&amp;rsquo;m excited to launch a new initiative called &amp;ldquo;Future Perspectives&amp;rdquo; – a indie web movement dedicated to publishing predictions and sparking meaningful conversations about the future. Building on the success of initiatives like the /about, /ideas, /now, and /uses pages, I propose introducing a /predictions page for each blogger.</description></item><item><title>Github ssh public keys</title><link>https://thatmlopsguy.github.io/notes/github-ssh/</link><pubDate>Sun, 29 Sep 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/notes/github-ssh/</guid><description>Github stores public keys for each profile at https://github.com/&amp;lt;username&amp;gt;.keys</description></item><item><title>Energy Slaves</title><link>https://thatmlopsguy.github.io/notes/energy-slaves/</link><pubDate>Sun, 08 Sep 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/notes/energy-slaves/</guid><description>I reveal that if an average human being was placed on a rowing machine (or exercise bike, or treadmill…) for a year of 250 eight-hour shifts, the total amount of energy that the person could expend into the machine would be 500 megajoules.
How much is 500 megajoules? It is roughly equivalent to the energy stored within 14 litres of gasoline (petrol).
Source: The mind, but not the muscle: understanding Energy Slaves</description></item><item><title>Beyond MTTR: Rethinking Recovery Metrics for Enhanced Software Performance</title><link>https://thatmlopsguy.github.io/posts/sre-metrics/</link><pubDate>Tue, 13 Aug 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/sre-metrics/</guid><description>Let&amp;rsquo;s delve into the reasons why focusing solely on Mean Time To Recovery (MTTR) might not be the most effective metric for evaluating software delivery performance.
In recent years, the DORA metrics, including &amp;ldquo;Time to Restore Service&amp;rdquo; or MTTR, have become a staple among software engineers aiming to measure the efficiency of software delivery processes. However, Courtney Nash challenged this conventional wisdom in her article “MTTR is a Misleading Metric—Now What?</description></item><item><title>Optimizing PyTorch Docker images</title><link>https://thatmlopsguy.github.io/notes/pytorch-docker/</link><pubDate>Tue, 13 Aug 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/notes/pytorch-docker/</guid><description>You don&amp;rsquo;t need CUDA runtime because PyTorch includes all the necessary CUDA binaries, so you can save space by switching to a lighter base image. A one-line change brings 2 gigs of saved space:
# FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04 FROM nvidia/cuda:11.8.0-base-ubuntu22.04 Source: Optimizing PyTorch Docker images: how to cut size by 60%</description></item><item><title>My Journey to 512KB club: Embracing Simplicity in the Digital Age</title><link>https://thatmlopsguy.github.io/posts/512kb/</link><pubDate>Sat, 13 Jul 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/512kb/</guid><description>As I sit down to write this, I find myself reflecting on the journey that led me to join 512KB.Club, a community that stands at the intersection of the Small Web Movement and my personal quest for simplicity and efficiency in web design. This isn&amp;rsquo;t just another blog post; it&amp;rsquo;s a deeply personal exploration of how embracing constraints can lead to creativity and innovation.
My fascination with the Small Web Movement began with a simple observation: the web is becoming too cluttered, too slow, and too inaccessible for many users.</description></item><item><title>Ignore Files Across All Subdirectories in .dockerignore</title><link>https://thatmlopsguy.github.io/posts/dockerignore/</link><pubDate>Mon, 01 Jul 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/dockerignore/</guid><description>When you&amp;rsquo;re using .dockerignore to ignore files within directories, it works a little differently than .gitignore.
To ignore a file across all subdirectories, prefix the filename with **. For example, to ignore the file file.txt in all subdirectories, add the following to .dockerignore:
**file.txt To ignore a specific file extension across all subdirectories, prefix the file extension with **/*. In this example, all files with the .txt extension will be ignored by Docker:</description></item><item><title>I replaced Homebrew and asdf with Devbox</title><link>https://thatmlopsguy.github.io/posts/devbox/</link><pubDate>Tue, 21 May 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/devbox/</guid><description>In the last years, I used a combination of homebrew and asdf to manage some developer tools (eg. terraform, hadolint, ShellCheck, &amp;hellip;)
Recently I discovered devbox, a wrapper around NixOS package manager.
First install Devbox:
curl -fsSL https://get.jetify.com/devbox | bash Now, everytime I initialize a new project, instead of installing asdf plugins and declare it on .tool-versions, I just add the dependencies on devbox.json on the root of each project. First I run</description></item><item><title>Setup SSH keys from multiple Git accounts</title><link>https://thatmlopsguy.github.io/posts/multiple-git-servers/</link><pubDate>Wed, 15 May 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/multiple-git-servers/</guid><description>I generally create new SSH keys for each separate git server using the following setup:
ssh-keygen -t ed25519 -a 100 Unfortunately, Git doesn&amp;rsquo;t provide an option for what keys to use, you have to configure this in the ~/.ssh/config file:
# Personal account Host github.com HostName ssh.github.com IdentityFile ~/.ssh/id_ed25519_github User git # Company account Host gitcompany Hostname ssh.github.com User git IdentityFile ~/.ssh/id_ed25519_github_company Host private.git.server.com PreferredAuthentications publickey IdentityFile ~/.ssh/key_file_for_this Starting from git version 2.</description></item><item><title>Manage dotfiles with GNU Stow</title><link>https://thatmlopsguy.github.io/posts/gnu-stow/</link><pubDate>Sun, 05 May 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/gnu-stow/</guid><description>I use GNU stow to manage all the important dotfiles.
Instructions Create a repo called dotfiles in your $HOME directory Recreate the directory structure for the files you want to manage as subdir(s) of that directory. mkdir -p ~/.dotfiles/bash mv ~/.bashrc ~/.bash_logout ~/.dotfiles/bash cd ~/.dotfiles stow bash Stow will create symlink for each file.
.bashrc -&amp;gt; dotfiles/bash/.bashrc Don´t forget to add this file to your git repo. Commit and push to remote and your done.</description></item><item><title>Hello World</title><link>https://thatmlopsguy.github.io/posts/hello-world/</link><pubDate>Sat, 04 May 2024 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/posts/hello-world/</guid><description>I&amp;rsquo;m a python developer by trade, so let&amp;rsquo;s say hello in python!
print(&amp;#34;Hello World&amp;#34;) This blog will be my little space of the internet where I can share what I feel I want to.
I&amp;rsquo;ll mostly write about tech stuff, but I won&amp;rsquo;t shut the door to any other subjects.
Any feedback is highly appreciated!
This concludes my first post of #100DaysToOffload.</description></item><item><title>About</title><link>https://thatmlopsguy.github.io/about/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/about/</guid><description>👋 About Me I’m ██████████ █████, a ██ years old working on ████████ at ███████████.
On a more serious note, I enjoy computer science, privacy and pretty much everything related. I&amp;rsquo;m a GNU/Linux user, a big advocate for the Free Software and the IndieWeb movements. I like trying to understand the world, building things that improve it, and talking about it on the web. Check my interests page.
On this page you can find some information about me and a few blog posts I wrote.</description></item><item><title>Accessibility</title><link>https://thatmlopsguy.github.io/accessibility/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/accessibility/</guid><description>🐕‍🦺 Accessibility Making this website accessible to all.
I aim to meet a minimum of Web Content Accessibility Guidelines (WCAG) 2.2 Level AA.
You should be able to:
use your browser defaults for settings, sizes and styling zoom in (or out) without breaking your experience navigate the site with just your keyboard listen to the site using a screen reader If you have come across something you find inaccessible, please contact me.</description></item><item><title>AI</title><link>https://thatmlopsguy.github.io/ai/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/ai/</guid><description>🤖 AI usage While reading Derek Sivers’ site I found his /ai page and decided to create my own.
I use phind.com mostly for research, similar to search engines.
If this changes in the future, I’ll update this page at this permanent URL: thatmlopsguy.github.io/ai.</description></item><item><title>Blogroll</title><link>https://thatmlopsguy.github.io/blogroll/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/blogroll/</guid><description>🖨️ Blogroll Blogrolls are lists of other blogs that bloggers recommend to their readers.
Blogs I do not endorse (nor read) every posts from all these blogs, it is just what I have in my feed, and I read only the one that interest me.
This is a list of all the personal blogs I’m reading:
Drew DeVault danluu.com Daniel Stenberg Cheapskate&amp;rsquo;s Guide Krebs on Security Daring Fireball Jeff Geerling rinzewind.</description></item><item><title>Books</title><link>https://thatmlopsguy.github.io/books/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/books/</guid><description>📚 Books I have gathered here the few books I consider to be masterpieces.
Nicomachean Ethics by Aristotle Enchiridion by Epictetus Skin in the Game: Hidden Asymmetries in Daily Life by Nassim Nicholas Taleb Limits to Growth: The 30-Year Update by Meadows, Donella H.; Randers, Jorgen; Meadows, Dennis L. Thinking in systems: a primer by Donella H Meadows, Diana Wright Energy and Civilization: A History by Vaclav Smil Atomic Habits: An Easy &amp;amp; Proven Way to Build Good Habits &amp;amp; Break Bad Ones by James Clear</description></item><item><title>Boycott</title><link>https://thatmlopsguy.github.io/boycott/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/boycott/</guid><description>🛑 Boycott This is a list of companies I boycott and why.
🏢 Companies LG Electronics Inc. (066570.KS) LG TVs start showing ads on screensavers LG TVs’ integrated ads get more personal with tech that analyzes viewer emotions Meta Platforms, Inc. (META) Meta Fined €91 Million for Storing Millions of Facebook and Instagram Passwords in Plaintext Irish Data Protection Commission fines Meta €251 Million Covert Web-to-App Tracking via Localhost on Android PayPal Holdings, Inc.</description></item><item><title>Buttons</title><link>https://thatmlopsguy.github.io/buttons/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/buttons/</guid><description>Cool badges</description></item><item><title>Changelog</title><link>https://thatmlopsguy.github.io/changelog/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/changelog/</guid><description>🎉 Changelog Inspired by Jedda’s page.
A way for me to keep track of the changes on this site.
August 2026 2: Add new internal Hugo theme MLOps, with a new design and layout for the site. January 2025 4: Add predictions page</description></item><item><title>Colophon</title><link>https://thatmlopsguy.github.io/colophon/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/colophon/</guid><description>🪧 Colophon A colophon is a statement at the end of a book, typically with a printer’s emblem, giving information about its authorship and printing. Hence the name of this page that explains how this blog is built.
This website was built with Hugo static site generator, using an internal theme called mlops that I created for this site. The site and the respective code for the build files are hosted on github.</description></item><item><title>Contact</title><link>https://thatmlopsguy.github.io/contact/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/contact/</guid><description>☎️ Contact I’m happy that you’re thinking about reaching out! If you’re at a loss of words to say, feel free to engage me on my interests.
People should be able to talk, via the internet, with the same level of privacy as a face-to-face conversation in their own home. Before you contact me, please take note of the following:
I don’t accept guest posts. Sorry, this is a personal blog.</description></item><item><title>Contributions</title><link>https://thatmlopsguy.github.io/contributions/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/contributions/</guid><description>🤝 Contributions Previously I was keeping track of these manually in a text file.
I figure these having a more public home isn’t a bad thing.
tika helm chart feat: add topologySpreadConstraints support in deployment asdf-plugins add argocd-image-updater plugin</description></item><item><title>Defaults</title><link>https://thatmlopsguy.github.io/defaults/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/defaults/</guid><description>✅ Defaults See uses</description></item><item><title>Donations</title><link>https://thatmlopsguy.github.io/donations/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/donations/</guid><description>💸 Donations I’m in no need for money, and I release my code and projects for free (as in freedom) because I want to contribute back to the environment that helped me succeed. If you really are inclined to support my projects, please consider donating to:
FSF EFF. noyb</description></item><item><title>Guestbook</title><link>https://thatmlopsguy.github.io/guestbook/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/guestbook/</guid><description>📖 Guestbook A guestbook, also known as a visitor book or sign-in sheet, is a traditional method of recording visitors' names and sometimes other information such as their comments or the date they visited.
Feel free to leave a message!
You can click here to get redirected to the page editor and Open a pull request.</description></item><item><title>Hello</title><link>https://thatmlopsguy.github.io/hello/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/hello/</guid><description>👋 Hello This is my Hello page, a concept popularized by Alastar Johnson.
You can find out a bit more on the about page. My now page lists what I’m focused on currently.
Here is how I prefer to keep in touch, and why:
My favorite way to converse is email 📧. See contact page. For a quick chat you can talk add me on Signal. Again see contact page. My least favorite means of communication is via phone call.</description></item><item><title>Hire</title><link>https://thatmlopsguy.github.io/hire/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/hire/</guid><description>🤝 Let&amp;rsquo;s work together I have been working professionally as a data scientist and machine learning engineer since 2016, working across a wide range of technologies, platforms, and teams. I found my passion in properly delivering code and creating a stable and capable infrastructure for it. I wanted to expose myself to a wider variety of projects and became a {Dev,ML}Ops and cloud consultant. Over the years, I’ve specialized in backend development, infrastructure, and open-source systems.</description></item><item><title>Interests</title><link>https://thatmlopsguy.github.io/interests/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/interests/</guid><description>🧩 Interests This is an interests page, inspired by Chris Burnell’s post.
As you might be able to tell from my identities, I’m not present in any social media platform. Instead, I prefer to read blog posts. It serves a similar purposes to me. I really prefer to follow blogs where:
The typical post is longer than a social media post, my preference is a 5-8 minute read. There aren’t consistently multiple posts per day.</description></item><item><title>Interview</title><link>https://thatmlopsguy.github.io/interview/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/interview/</guid><description>🎙️ Interviews FAQs Interesting or habitual questions I&amp;rsquo;ve been asked during job interviews.
This page is also inspired by Manual of Me, and aims to be a guide for colleagues in how to best work with me.
🤝 Introduction questions Why should I hire you? What makes you different from other candidates? Computers engineering has been my vocation since I was 16 years old, and since then I&amp;rsquo;ve been involved with computers in a lot of aspects.</description></item><item><title>Links</title><link>https://thatmlopsguy.github.io/links/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/links/</guid><description>🔗 Links Perhaps you are on this page because you are down an hour-long rabbit hole exploring blogs.
Or you are here because you are bored and are looking for inspiration.
Or perhaps you are here because, like me, you enjoy clicking links and the link to this page is on my site navigation bar.
Whatever the reason: Welcome to my links page!
Here are some sites I enjoy and would recommend.</description></item><item><title>Media</title><link>https://thatmlopsguy.github.io/media/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/media/</guid><description>🎬 Media I usually avoid to watch all the trendy TV series on Neflix (and similar platforms), because of Digital Restrictions Management (DRM). For technical users I recommend to read the following paper Your DRM Can Watch You Too: Exploring the Privacy Implications of Browsers (mis)Implementations of Widevine EME.
I do not wont to be influenced by all the fuss of mass marketing and evaluate the TV show for what it is.</description></item><item><title>More</title><link>https://thatmlopsguy.github.io/more/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/more/</guid><description>🗐 Pages Static Pages are a different content type than blog posts, gemlog or bookmarks, they do not change often and are not chronological.
Learn more about these pages on slashpages.net.
/about: who am I? /accessibility: how this site is designed for all users regardless of ability /ai: my AI usage, personally /blogroll: curated collection of blogs I follow and recommend to others /books: recommended readings that have influenced my thinking and work /boycott: companies and products I avoid and my reasoning behind these decisions /buttons: collection of web buttons and badges for a touch of internet nostalgia /changelog: detailed history of updates and changes to this website /colophon: what’s this website made of?</description></item><item><title>Next</title><link>https://thatmlopsguy.github.io/next/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/next/</guid><description>➡️ Next Inspired by Capjames’ post, Shellsharksi’s checklist and Snarfed’s ideas page, this page lists ideas for this website.
A comprehensive list of projects that I want to build but probably never will Mirror this blog to Gemini Website Roadmap Add a &amp;ldquo;Uses&amp;rdquo; page Join a webring Join the 250KB Club Join the The Darktheme Club Add epistemic status to hugo archtypes Join the bukmark Club Automating my /now page Automate buku bookmarks sync Accessibility statement Add sitemap.</description></item><item><title>Nope</title><link>https://thatmlopsguy.github.io/nope/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/nope/</guid><description>👎 Nope Things I don&amp;rsquo;t want like, inspired by Nope&amp;rsquo;s Jack Baty.
For companies I don&amp;rsquo;t like, visit my boycott webpage.
Here is a list of things I don&amp;rsquo;t like, in no particular order. I&amp;rsquo;ll update it as needed.
SmartTVs: this devices are full of trackers and spy on you via ACR even when used as external screens and in other ways send &amp;ldquo;anonymous&amp;rdquo; usage/telemetry data tracking consent cookie banners subscribe to receive updates/no available RSS or Atom feed nonsensical password requirements the form requires a phone number passkeys, because of remote attestation ask to install a proprietary app for MFA SMS-based two-factor authentication Ask for a Linkedin profile.</description></item><item><title>Now</title><link>https://thatmlopsguy.github.io/now/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/now/</guid><description>📍 Now What I’m doing now.
This is a now page, and if you have your own site, you should make one, too.
🌱 Life I need to improve quality of life, so I’m trying to:
Reading more books. (re)Focusing on my wellbeing and a healthy lifestyle. Journaling my life. 💼 Work Breaking things as a Cloud/DevOps/MLOps engineer. Remote work, work anywhere. See also what I am planning to do next.</description></item><item><title>Postroll</title><link>https://thatmlopsguy.github.io/postroll/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/postroll/</guid><description>🔖 Postroll Each of the following articles and essays stuck with me after I first read it, becoming part of how I look at the world. I’m listing them here in one place so it’s easier for me to find them.
Aristotle - How to live a good life Ignorance vs. stupidity The Website Obesity Crisis Amusing Ourselves to Death: Huxley vs Orwell St Matthew Island by Stuart McMillen Energy Slaves reflections: essays The illustrated guide to a Ph.</description></item><item><title>Predictions</title><link>https://thatmlopsguy.github.io/predictions/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/predictions/</guid><description>🔮 Predictions This is my predictions page. Read my blog post about why I create this page.
Each line is a prediction that follows the pattern: [year of the prediction] Statement (reference1;reference2).
I predict &amp;hellip;
On climate [2024] Greenhouse gas emssions will increase at least until 2030. CO2 concentration will increase on average 2 ppm per year (gap25). Atmospheric CO2 concentration will be at least 435ppm on average in May 2030 at Mauna Loa.</description></item><item><title>Projects</title><link>https://thatmlopsguy.github.io/projects/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/projects/</guid><description>👨‍💻 Projects I’ve worked on a bunch of different things over the years. This is a small list of projects I have done during the last years.
The code for most, if not all of them, can be found on my github account.
this website: goal of this project was to market my services, but I also wanted to get out of my backend comfort zone and learn a bit more about modern frontend things</description></item><item><title>Quotes</title><link>https://thatmlopsguy.github.io/quotes/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/quotes/</guid><description>🖋️ Quotes Random quotes collected from various sources
“Anyone who believes that exponential growth can go on forever in a finite world is either a madman or an economist.” Kenneth Boulding
“It is difficult to get a man to understand something, when his salary depends on his not understanding it.” Upton Sinclair
“The only function of economic forecasting is to make astrology look respectable.” John Kenneth Galbraith
“Growth for the sake of growth is the ideology of the cancer cell.</description></item><item><title>Save</title><link>https://thatmlopsguy.github.io/save/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/save/</guid><description>🎁 Save List of discount cupons I used:
Use the code iheartgitops1 for a 60% discount on Certified for GitOps with Argo by Codefresh/Octopus Deploy.</description></item><item><title>Services</title><link>https://thatmlopsguy.github.io/services/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/services/</guid><description>📊 Services I help companies make the most of their technology by supporting them in machine learning projects.
Is your business using AI but are feeling stuck? Many companies often feel overwhelmed navigating the sea of options and trade-offs when rolling out AI and often just want to know if they’re doing it right.
What can I do for you? I&amp;rsquo;m a devops and machine learning engineer with 10+ years of experience working with both scientific institutions and multinational companies.</description></item><item><title>Subscribe</title><link>https://thatmlopsguy.github.io/subscribe/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/subscribe/</guid><description>🔔 Subscribe This page lists all the way to subscribe to my content.
Via RSS Feeds You can subscribe to this blog using RSS/Atom feeds, you can grab the feed from here.
If you don’t know what is RSS and/or Atom, read on aboutfeeds.com how these RSS web feeds work in detail.</description></item><item><title>Uses</title><link>https://thatmlopsguy.github.io/uses/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/uses/</guid><description>💻 Uses Inspired by many pages out there, I&amp;rsquo;ve put together this page detailing some of the important tools I use for those that may be interested.
🧮 Development My personal operating system of choice is Arch Linux because it’s very easy to work with, simple, and incredibly up-to-date. I’ve used it since somewhere around 2015.
Operating System: Arch Linux Window Manager: i3 IDE: VSCodium. I also use Emacs for the excellent org-mode.</description></item><item><title>Verify</title><link>https://thatmlopsguy.github.io/verify/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/verify/</guid><description>✔️ Verify This page serves as record for my online identity. It is inspired by Molly White&amp;rsquo;s verify page.
I control the following personal accounts:
Github: thatmlopsguy Signal: profile id If there’s an account claiming to be me and it’s not one of these accounts on the list, it’s probably an impersonator.</description></item><item><title>Where</title><link>https://thatmlopsguy.github.io/where/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://thatmlopsguy.github.io/where/</guid><description>📍 Where This is my where page 📍, showing where in this world I am right now.
I&amp;rsquo;m in Portugal 🇵🇹 right now.
A where page is a place on the web where you can let others know about your current location. Read here about the where page movement.</description></item></channel></rss>