Skip to main content

Vibe Coding for Nearly Free: Claude Code + OpenRouter with Free Models

· 8 min read
Guillaume MARTINEZ
LeadTech DevOps & Cloud & IA

cover

I've been integrating AI into my development workflow, but I quickly realized that costs can spiral out of control if not monitored carefully. Premium AI coding assistants with their subscription models and "pro" tiers can easily become expensive-especially for personal and open-source projects where budgets are tight. I found myself needing to track every API call and watch my usage like a hawk.

Building Crypto Scripts: Stellar XLM & Ethereum

· 8 min read
Guillaume MARTINEZ
LeadTech DevOps & Cloud & IA

cover

I don't trust apps with my crypto. Every wallet, exchange, and dapp is a black box. You hand over your private key, click "send", and hope the code does what it claims. So I built my own scripts instead: small, auditable Python programs that I can read and understand completely.

The differences between Stellar and Ethereum force you to confront each blockchain's design philosophy. Here's what I learned building scripts for both.

Refreshing the blog — again

· 10 min read
Guillaume MARTINEZ
LeadTech DevOps & Cloud & IA

cover

A while ago I wrote [a blog post about how I created this blog][init-post]. Back then it was [Pelican][pelican-website], a [Python][python-website] static site generator. Then I migrated it to [MkDocs][mkdocs-website] — also [Python][python-website], a bit more modern, better support for my bilingual setup. Now here we are again. Third time.

This is the story of why I did it and how it went.

SSH Authentication with a CA

· 6 min read
Guillaume MARTINEZ
LeadTech DevOps & Cloud & IA

cover

This article describes how to use a SSH CA to authenticate to SSH servers. This is particularly useful when you have a lot of servers to manage and you want to avoid the hassle of managing a lot of SSH keys.

The basic idea is to have a CA (Certificate Authority) that will sign the public keys of the users. Then, the users will be able to authenticate to the servers using their signed public key. This way, you don't have to manage the public keys of the users on the servers, you only have to manage the public keys of the CA. You can also limit the validity of the signed public keys to a certain amount of time or to a certain set of servers and users.