From 4b6c0e31385f5f27a151088c0a2b614495c4e589 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 14 Oct 2021 12:47:50 -0400 Subject: initial commit, including theme --- .../posts/2019-04-04-password-strength-tester.md | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 content/posts/2019-04-04-password-strength-tester.md (limited to 'content/posts/2019-04-04-password-strength-tester.md') diff --git a/content/posts/2019-04-04-password-strength-tester.md b/content/posts/2019-04-04-password-strength-tester.md new file mode 100644 index 0000000..e9b13ec --- /dev/null +++ b/content/posts/2019-04-04-password-strength-tester.md @@ -0,0 +1,36 @@ +--- +date: "2019-04-04T07:34:45Z" +title: Password Strength Tester +--- + +This weekend I put together a simple password strength tester. You can +try it out [here][link]. + +Features: + +* Simple interface. +* Open source ([MIT licensed][mit]). +* Easy to inspect. The interface code is contained in a single, + <300 line JavaScript file. +* Self-contained. No external connections for assets, social media + sites, analytics, etc. +* Can be run offline (no internet connection) or locally (by downloading + an archive of the [the Git repository][repo]). + +Built with: + +* [zxcvbn][]: JavaScript password strength estimator. +* [Bulma][]: Open source CSS framework. +* [font-awesome][]: Open source font icons. + +Links: + +* [Password Strength][link] +* [Source][repo] + +[link]: https://pmdn.org/password-strength "Password strength tester" +[mit]: https://opensource.org/licenses/MIT "MIT license" +[zxcvbn]: https://github.com/dropbox/zxcvbn "Password strength estimator" +[bulma]: https://bulma.io/ "Open source CSS framework" +[font-awesome]: https://fontawesome.io/ "Open source font icons" +[repo]: https://github.com/pablotron/password-strength "Git repository for Password Strength" -- cgit v1.2.3