Displaying the most recent of 147 posts written by

Marius

AI Agent Comparison

The exercise involved five AI models responding to a prompt to create a Rust function for determining leap years. Performance varied, with Kilo Code models demonstrating detailed explanations and accuracy. ChatGPT and Claude excelled in using the Rust test harness, while Qwen asked clarifying questions. Overall, the models were effective but had differing strengths.

API Cheat Sheet

When unsure about using an API, leverage an AI client to generate the correct endpoint and parameters. Describe the usage and desired data, stating the provider. This method simplifies obtaining accurate curl commands or code samples, reducing reliance on documentation while maintaining security regarding sensitive information like API keys.

Veteran Coder, Modern Delivery: The Hunt for the Perfect Technical TPM Role

Marius has over 46 years of experience, starting as an administrative clerk, then transitioning into software development and project management roles. Having worked remotely with global teams in Bitcoin and AI sectors, he is seeking consulting or contractor positions. He possess expertise in varied technical roles, especially in the cryptocurrency and fintech industries.

Kilo Code: Getting my Hands dirty

This blog post details the author’s experience using Kilo Code, an AI agent, to develop a CLI application for calling APIs and storing data in a LibreCalc ODS file. The author walks through the installation, setup, and coding process, highlighting the efficiency and effectiveness of using AI for software development tasks.

The Translator: What Does a Technical Project Manager Actually Do?

Technical Project Managers (TPMs) bridge the gap between technical engineering and business objectives, ensuring seamless project execution. They analyze system designs, manage dependencies, eliminate blockers, and translate technical issues for non-technical stakeholders. With a blend of engineering insight and leadership skills, they play a critical role in delivering complex software projects successfully.

The South African Guide to Landing a Global Remote Role

The article highlights the benefits and challenges of South Africans earning foreign income while working remotely for international firms. It details legal employment structures, tax obligations, financial management, and the necessity to establish personal safety nets for medical and retirement needs. The potential for career advancement and global networking is emphasized.

Will AI Take My Job as a Project Manager?

If you need a Project Manager/Program Manager/Scrum Master who knows how to use AI as a tool and to focus on being the PM/SM who brings leadership, judgement, and human connection to the role, then I am your man.Latest Resume: Marius-Bock-Resume.pdf

Remote by Design, Bitcoin by Conviction: A 20-Year Delivery Journey

The author has over 20 years of experience in technology delivery, focusing on financial systems and decentralized infrastructure, particularly in Bitcoin and crypto ecosystems. They excel in remote leadership, agile delivery, and risk management. Their expertise includes blockchain wallet development and collaboration with distributed teams, emphasizing security and structured execution.

Rust Bytes: ZigZag Merge

The task involves creating an iterator that merges two input iterators of i32 by alternating values from each until both are exhausted. The solution includes a Zigzag struct with a next method for alternating yields. Test cases verify correct functionality but one assertion fails regarding handling an empty iterator.

Rust Bytes: Group by Frequency

Given a list of integers, return a vector of vectors where each inner vector contains all numbers that appear the same number of times, grouped by frequency.