Category: go
-
Avoiding SQL Injection with Go

There’s a good chance if you’ve worked with Go you’ve interacted with a database of some sort and also accepted user input. Injection attacks always make it to the OWASP Top 10 (although it’s finally been dropping) – particularly SQL injection. SQL has kind of wild access control when you look at standards today; the…
-
goFinance – yfinance for Go!
Of all the packages available in Python’s PyPI repository, pandas is probably my most used. Coming from a data analysis and Excel-heavy background it naturally fills a lot of my needs with the language. The DataFrame really shines when you have a bunch of different data sources and it only takes minimal work to build…
-
Advent of Code (and Cyber!)
It’s December! Since we don’t seem to get snow in the DC area anymore the next best thing is daily coding puzzles and challenges. My two favorite are the Advent of Code and Advent of Cyber. Both contain some interesting challenges and are a fun way to try out new things ahead of starting the…