Skip to content

Instantly share code, notes, and snippets.

View RenanLazarotto's full-sized avatar
Transformando café em código

Renan "Firehawk" Lazarotto RenanLazarotto

Transformando café em código
View GitHub Profile
@RenanLazarotto
RenanLazarotto / postman_download_links
Last active August 4, 2026 12:47
For some fucking stupid reason, Postman requires you to provide your email to download their shitty app, because download links became trade secrets, apparently. Here they are, in case someone else was greeted by this stupid gatekeep.
@RenanLazarotto
RenanLazarotto / date_ranges.go
Created May 11, 2026 17:37
Small snippet to create date pairs from one date until now. I was going to use it on one of my job's projects, but it didn't solve what I was helping it would solve, so I'm gonna save here for future reference.
import "errors"
var (
ErrInvalidDate = errors.New("invalid date")
)
type (
DateRanges []*DateRange
DateRange struct {
From string `json:"from"`
To string `json:"to"`
@RenanLazarotto
RenanLazarotto / mysql_workbench_ssl_fix_f42
Last active June 4, 2025 13:25
Fix for MySQL Workbench 'version `LIBSSH_4_10_0' not found' error on Fedora 42
cd /usr/lib64/mysql-workbench
sudo cp /usr/lib64/libssh.so.4.10.1 /usr/lib64/mysql-workbench
sudo chmod 644 libssh.so.4.10.1
sudo ln -s libssh.so.4.10.1 libssh.so.4 --force