Skip to content

Erica Pisani

Members Public

Privacy-preserving payment systems, goals for 2025, and a new side project

Happy New Year all! I hope you had a great holiday break and a wonderful start to the year. I enjoyed some much needed rest and got a chance to read a lot of books I've been meaning to get to. One of them was a novella called

Privacy-preserving payment systems, goals for 2025, and a new side project
Members Public

Assorted reads (December 2024)

Hi folks! I hope you all have a relaxing holiday season ahead. I plan on using mine to make one last push to finish a book or two before the year ends to try and beat my reading goal from last year, and to try and learn a new keyboard

Assorted reads (December 2024)
Members Public

How to install nvim-ufo in LazyVim to enable foldable code blocks

A feature that I've found myself missing since making the switch to Vim as my editor of choice is the ability to easily fold and expand code blocks. I know this functionality is included in Neovim, but I couldn't understand the native implementation enough to use

How to install nvim-ufo in LazyVim to enable foldable code blocks
Members Public

Assorted Reads (November 2024)

Hey folks, it's that time of month again! I hope you're all having a great weekend wherever you are in the world. Let's jump right in! Instead of Being Cynical, Try Becoming Skeptical This read came from an issue of my favourite newsletter, Dense

Assorted Reads (November 2024)
Members Public

What is a carbon handprint?

I've recently started reading "Building Green Software" as part of an online book club and, in the introduction, the authors reference the potential "carbon handprint" of software. I wasn't familiar with this term, so I decided to dig into it to learn

What is a carbon handprint?
Members Public

Green software book club, git log tricks, and pro bono work in tech

Hi folks! I hope you've all been doing well and, if you live in an area that's getting colder as winter approaches, hope you're staying warm. I love the colder weather because I get to bust out all the warm soup and stew recipes

Members Public

Git Log's Hidden Gems: Using -S and -L for Powerful Code History Search

Ever needed to track down when a specific piece of code was first introduced in a project? As part of some refactoring I had to do recently, I needed to do just that for a variable on a Django model. I was already familiar with the basic git log command,

Git Log's Hidden Gems: Using -S and -L for Powerful Code History Search
Members Public

Assorted Reads (October 2024)

Hi folks, and happy Halloween! I can't believe October is already over 😱 I was bracing myself for the notorious polar vortex that Chicago is known for while at GOTO Chicago last week, but was lucky enough to experience some ridiculously nice weather instead, which gave me a chance

Assorted Reads (October 2024)
Members Public

Using XOR to write concise conditionals

It's not uncommon that I sometimes write if statements where the overall conditional is true when both conditions are true or both are false. As an example, let's say I'm validating input from an API call where I'm updating information on a

Members Public

Fixing "No preset version installed for command poetry"

Poetry is a packaging and dependency management tool for Python, and a tool that didn't exist when I worked with Python many years before I started working at Float. I also hadn't been exposed to asdf, which is a handy little tool for managing multiple runtimes.