Tag: golang
-
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…