RSSAmplifier

Blog

poltora.dev — Tech blog

Developer notes on Go, Rust, Neovim and software engineering.

poltora.devRSS feed ↗5 posts

Latest posts

I liked the color theme from Cursor, so I made a Neovim version of it

I really liked the theme that was recently added to Cursor, Cursor Light: So much so that, not finding a Neovim equivalent, I took its color palette and…

Rust vs Go: Memory Management

Let’s look at how two popular programming languages Rust and Go manage memory. When a program starts, it creates a process with its own address space and…

Where and why should you use iterators in Go?

Iterators are a language feature that allows you to traverse elements of a collection or data stream without having to load everything into memory at…

The Complete NeoVim Configuration Guide for Developers - Part 2

Before starting, I recommend reviewing the first part, where I demonstrated how to set up Neovim from scratch, starting with installation and configuring…

The Complete NeoVim Configuration Guide for Developers - Part 1

Neovim (nvim) is essentially Vim, but improved, rewritten, and has attracted the majority of the original editor's community. This project has…