Link Blog

11 collections · 1522 total posts

March 2024

04-03-2024
Write code top-down

Write code top-down

Source: teamten.com

Nice article but I disagree with the conclusion. I have found that you need to combine the two and go back and forth. There is no single way. By the way, notice that if you believe in TDD, that approach generally starts bottom up (UNITs are at the bottom.) so whatever design comes out of that…

February 2024

07-02-2024
Cal.com | Pricing

Cal.com | Pricing

Source: cal.com

Open Source Scheduling: Send a link and meet or build an entire marketplace for humans to connect.

This looks quite interesting. I’ve been using calendly extensively for a few years. But it is kind of expensive. Is this a viable alternative?

January 2024

29-01-2024
Prettymaps

Prettymaps

Source: github.com

A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries. - GitHub - marceloprates/prettymaps: A small set of Python functions t...

Honestly this looks pretty awesome! Haven’t tried it yet.

December 2023

31-12-2023
Configuration in Python Applications: No Magic, Just Necessary Practice

Configuration in Python Applications: No Magic, Just Necessary Practice

Source: robertrode.com

During the development of Python applications, I've continually asked myself how and when variables should be passed and initialized for the application's configuration. I want to be able to easily override the configuration for tests, for example, to use a local database for testing. But what exactly is application configuration, and why is it needed? The website a ...