RSSAmplifier

Blog

veeso.dev

A blog about Rust, Gleam, and open source software development

blog.veeso.devRSS feed ↗60 posts

Latest posts

Codeberg is self-sabotaging by turning against AI-assisted development

What happenedIn the last week of July 2026, Codeberg made a small but impactful change to its Terms of Service (ToS):You must not share projects that mostly consist of code written by "ge

I paid for Brave Origin, and I'm fine with that

What is Brave OriginBrave is great as a browser, but most of the side products just add noise to the user experience, and users are not happy about it.Because of that, in June 2026, Brave launched

Ladybird won't accept public PRs anymore - what does it mean?

What happenedOn June 5th 2026, Ladybird made this announcement on social and on their website:

Why Airlines don’t want your boarding pass in Apple or Google wallet

The boarding pass should be boringToday I checked in for a flight to Amsterdam, and immediately noticed there was no option to add the ticket to my Apple Wallet. On the contrary, the website only

BiangBiang Kana, an iOS and Android app to scan, romanize and translate Japanese

PreambleA few months ago I shipped BiangBiang Hanzi, an iOS and Android app that points your camera at Chinese characters and gives you back the Pinyin (or Jyutping) plus a translation. The motivation

Harakat Lens, an iOS app to scan, transliterate and translate Arabic, for learners and Quran readers

PreambleA few months ago I shipped BiangBiang Hanzi, an iOS and Android app that points your camera at Chinese characters and gives you back the Pinyin (or Jyutping) plus a translation. The motivation

Btw, I'm working on Mastic

PreambleIn June 2025, I attended the World Computer Conference in Zurich, the main conference on the Internet Computer.The Internet Computer is a distributed cloud computing p

Is RustRover Worth It? My 3-Month Review

TL;DR: Great Rust support, but frustrating editor UX and weak Git experience. Worth trying if you're already in the JetBrains ecosystem.Over the last year, I’ve heard many people talking about

From ic-dbms to wasm-dbms

This is an article about how I restructured a monolithic IC canister framework into a runtime-agnostic WASM database engine.A few months ago I announced ic-dbms, a Rust framework for building database

This Blog was made with Gleam

If you are reading this, you are looking at a blog that runs zero React, zero GraphQL, and zero Node.js. This blog is now entirely powered by Gleam, Lustre, and a little static site generator I built

The role of the Software Engineer in the age of AI

IntroductionFor the last year or so, I’ve started using AI tools like ChatGPT and GitHub Copilot to help me with my software engineering tasks.For most of the time, these tools have been a great help.

I transformed my LEGO Gameboy into a working Gameboy!

Since I saw the Lego Gameboy set, I wanted to make it functional since I have good knowledge of programming and little knowledge of electronics.Also I've been a big fan of Gameboys since I was a

Announcing ic-dbms 0.1.0

What if I told you that this code:use candid::CandidType

Should we get rid of clippy::manual_try_fold?

This is the 50th blog post on this blog! 🎉 Thank you everyone for reading my blog in the past 3 years!How I almost fucked up my code because of clippyOn the other day, I was imple

Cooking ic-dbms-canister: DBMS Layer

IntroductionThis article is part of a series where I document the development of ic-dbms-canister, a framework for building database management systems (DBMS) on the Internet Computer (IC). In the

Instantly convert Hanzi to Pinyin with BiangBiang Hanzi

Introduction𰻝𰻝汉子 BiangBiang Hanzi is an iOS and Android application that allows users to convert Hanzi (Chinese characters) to Pinyin and translate Chinese text into any language. It supports both

Cooking ic-dbms-canister: Memory Management

IntroductionThis article is part of a series where I document the development of ic-dbms-canister, a framework for building database management systems (DBMS) on the Internet Computer (IC). In the

Cooking ic-dbms-canister: The journey begins

PremiseEven if the project is made to run on Internet Computer, which is related to web3 and cryptos, this article is not about investments, tokens or NFTs. It is not even about Internet Computer

PRs taking too long to be reviewed

IntroductionI think there's something every developer working in an environment where PR must be reviewed has experienced: PRs taking too long to be reviewed.Every company has its own process for

Can you move a Copy in Rust?

IntroductionThis article came from a question I saw on Reddit, and it is a good one to ask, even if it seems dumb at first.So we all know that Rust has a co

Leaktracer: A Rust allocator to trace memory allocations

A few days ago, I had a memory issue in one of my Rust applications.The application was huge, and for some reason the memory kept growing with hundreds of gigabytes of memory allocated, but I

Don't you dare to sort your struct fields when using ?Sized

So on the other day I was making a custom implementation of the io module for maybe-fut and I had to implement the BufReader

Rust on a Diet

So if you don't know, I also develop on the Solana Validator (but please don't leave, it's about Rust and not blockchain things 😓) mostly mods for Solana RPC nodes, and recently a

Web3: The new Scarlet Letter on your resume

A premise about my work experienceI have been working as a Software Engineer for over 8 years.In my career I have worked in these sectors and for these amounts of time:Embedded systems on Passenger

An Abstract of a real P2P Electronic Cash System

We have P2P Electronic Cash Systems at homeBitcoin: A Peer-to-Peer Electronic Cash SystemSounds familiar? This is the title of the whitepaper of Bitcoin, which starts with a stron

Why as a Software Engineer I truly believe in the Internet Computer project

PremiseWhenever we talk about web3, I see a lot of skepticism and I get it; I'm skeptical about 99% of the projects out there; if you don't know me, I've written many articles against

std::mem is... interesting

A module we don't use oftenThe std::mem module in Rust is a bit of a mystery. It's 10PM and I'm randomly reading the std library documentation and I decide to take a look to the current

All my Dead Open Source Projects

IntroductionFor every project that is successful, there are many that are not.In my case it's like 1 successful in 10 projects.So in this article I want to bring some glory to my dead projects,

It's time to leave X.com

Elon Musk has created a monsterIt’s not entirely his fault.Or at least, not just because he exists.I wasn’t one of those who fled the day Twitter was bought, because I didn’t want to make decisions

One does not simply write a SSH config parser (in Rust)

Do you know the feeling when you start a project and you think it will be easy, but then you realize that it is not? This is the story of the implementation of ssh2-config, a Rust library to parse SSH

Embedding shared objects in Rust

But why?So recently I've covered the topic of

Vendoring C/C++ dependencies in Rust

What is vendoring about?I'm writing this post because basically I haven't found any guide about this, and for sure with this level of completeness and masochism.So what are we even talking

Extending Future in Rust

IntroductionAs part of my experiments with Async Rust (cuz I'm working on something big 🤞) and while writing my last article Async Rust for Dummies a weird and sick thought came to my mind: can we

Async Rust for Dummies

IntroductionHello, Rustaceans! I'm quite sure many of you use async Rust every day in your projects, but do you actually know how it works under the hood? In this article I'm going to show you

How to setup a Bitcoin Solo Mining Pool

About lottery miningThis is an expansion of my previous article "How to get started with Bitcoin Lottery Mining".So if you're just interested i

A journey into File Transfer Protocols in Rust

How it startedI can for sure affirm that you've used File transfer protocols before. Let's exclude HTTP from here, because, of course it is currently used also to transfer files, but it's

Why Bitcoin is not decentralized - in any way

Bitcoin is decentralized, right?So yesterday I was scrolling my feed on LinkedIn, a thing I usually do once a month, and I found this:

Revolutionizing the real estate market with EKOKE DAO

IntroductionSo in the last year I've been working a lot on the development of the EKOKE DAO project. I am the main software engineer of the software and I've personally designed the project

How to make react-markdown work with Parcel?

AudienceIf you encounter an error like this while trying to render a markdown with react-markdown and you're using parcel

The Ethereum MEV Bots are a scam

Several months ago, I wrote this article: The Fascinating Ethereum MEV Bot Scam, where I dived deep into the technical aspects of a scam that has been circulating for years on platforms like X.com and

You don't (*always*) need async

We are too much into async, but we can't go backYou know what? Async Rust is great, but I also was relatively a late adopter of it, mainly because I've worked a lot on CLI tools before

Reached the recursion limit... at build time?

A bit of contextSo on the other day I was implementing Dokany for my Remotefs-fuse driver (coming soon btw). For those who d

Dyn Box Vs. Generics

Case scenarioHave you ever done something similiar?

Announcing termscp 0.16.0

What's newSo let's see what's new in this version 0.16 of termscp.Don't you know termscp yet? Come discover this

Announcing termscp 0.15.0

What's newSo let's see what's new in this version 0.15 of termscp.Don't you know termscp yet? Come discover this

Hey Rustaceans: Rust freelancers do exist!

In 2023 I've decided to resign from my job at Prima to start working as a freelancer, with a particular focus on Rust, along with a minor web development. Currently I can affirm that for 90/95% of

termscp 0.14 has been released

It's been a long timeIt's been 5 months since the last release of termscp came out, so yeah let's party for this new termscp release 🎉.

Implementing a generic range parser in Rust

Simple problems that require complex solutionsA few days ago I was implementing a really simple function which would given a string representation of a range it returns a Vec of the items to include

How to configure CPU cores to be used in a Tokio application with core_affinity

There are several cases where applications are developed for extreme performance and choosing the cores to be used for an application is required. For instance we may want to reserve certain cores for

Let me introduce you ShitAI

A brief resume of how AI has taken overIf we went back to five years ago and you would have said "AI" in front of somebody, probably the first thought to come to minds would have been