RSSAmplifier

Blog

Calle's Blog

Hi, I'm Calle. I'm a tinkerer with a big interest in software and hardware engineering. Currently, I'm living and working in Washington, DC, as an embedd...

calle.devRSS feed ↗3 posts

Latest posts

Running Claude Code CLI with Claude Router

Let's try to save on tokens and run Local LLMs I have been playing around with the Claude CLI tool, Claude Code. Its supprisingly good, and we get to use the newest Claude models. However, we are limited to the token restriction by Anthropic... So why not try to use some of the open source models and run it on our own hardware? The Architecture: Understanding the Components We still want to use…

Let's do some leet code 1768

Let's start with 1768 - Merging Two Strings Alternately 1768 This is a basic problem, where we are given two strings word1 and word2. We are asked to merge the strings in alternating order, starting with word1. Then return the merged string. I will sovle this in C++, because why not. class Solution { public : string mergeAlternately ( string word1 , string word2 ) { // First we need two variables…

Hello World!

This is my first attempt at writing a blog. As a embedded software engineer, I have spent countless hours tinkering with gadgets, writing code, and diving deep into projects that spark my curiosity. After some deliberation, I decided it was time to start documenting my journey in a more structured way, and so, this blog was born! What to Expect? Think of this blog as my digital note/scratchpad…