5th April 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.
Operative Systems⚑
Linux⚑
Linux Snippets⚑
-
New: Create Basic Auth header.
$ echo -n user:password | base64 dXNlcjpwYXNzd29yZA==
Without the
-n
it won't work well.