go
2023
Automatically detecting and resolving deprecations using Semgrep
·2968 words·14 mins
semgrep
go
bash
Managing deprecations oftentimes requires a lot of manual work and communication. But what if we could automate this process instead?
2022
Adapting the python context manager pattern for Go
·460 words·3 mins
go
python
I’ve recently started writing more Go, and one pattern I miss from Python is context managers, which are especially useful when doing IO.