Chad Gilbert
Chad Gilbert
I was happily making some other contributions to the codebase when I decided to try testing for SQL Injection vulnerabilities. I was dismayed when all my single quotes were not...
This allows for the explicit removal of `lastmod`, `priority`, and `changefreq` XML nodes, rather than setting them to default values. Usage: ```go opts := Options{} opts.SetOmitDefaultLastMod(true) opts.SetOmitDefaultPriority(true) opts.SetOmitDefaultChangeFreq(true) ``` Since...
Thanks for `ConditionWatcher`! It really helped get me away from littering production code with references to Idling Resources. In our project (which uses Kotlin), we've added some helper functions to...
Resolves lambci/git-lambda-layer#22 This adds the appropriate `git-lfs` RPM repo and validates its signature, then installs it with the `yum install` command. We have to manually move the `git-lfs` binary (which...
Some smtp servers will fail if you issue the MAIL command with an address surrounded by brackets. Likewise, using .Address here matches the smtp.SendMail call in the SendMail function above
This allows you to specify the location of a file to make it easier to use with Docker secrets. If you specify the environment variable directly, it won't try to...
This addresses #50 by forcing all values to be escaped. This is an admittedly brute-force solution which should be superceded by a reliable CSV Export library in the future.
# Goals Tighten the rules around escaping string data to avoid corrupt CSV exports. # Expected results If a string value contains a newline character, but does not contain either...