14th Week of 2022
Projects⚑
-
Correction: Deprecate faker-optional project.
Wrapper over other Faker providers to return their value or
None
. Useful to create data of typeOptional[Any]
.Not needed anymore as I use pydantic factories now.
Operating Systems⚑
Linux⚑
Linux Snippets⚑
-
New: Create Basic Auth header.
$ echo -n user:password | base64 dXNlcjpwYXNzd29yZA==
Without the
-n
it won't work well. -
New: Check vulnerabilities in Node.js applications.
With
yarn audit
you'll see the vulnerabilities, withyarn outdated
you can see the packages that you need to update. -
New: Check vulnerabilities in rails dependencies.
gem install bundler-audit cd project_with_gem_lock bundler-audit