diff --git a/content/blog/creatingqrcodesfromterminal.md b/content/blog/creatingqrcodesfromterminal.md new file mode 100644 index 0000000..25985a6 --- /dev/null +++ b/content/blog/creatingqrcodesfromterminal.md @@ -0,0 +1,14 @@ +--- +title: "Creating QR Codes from the Terminal" +date: 2020-09-26T22:13:25-04:00 +draft: false +tags: [] +--- + +With the tool `qrencode`, it is surprisingly simple to create a QR code. + +```bash +echo "https://brandonrozek.com" | qrencode -t ansiutf8 +``` + +![](/files/images/20200926221423.png) \ No newline at end of file diff --git a/static/files/images/20200926221423.png b/static/files/images/20200926221423.png new file mode 100644 index 0000000..8f96c30 Binary files /dev/null and b/static/files/images/20200926221423.png differ