7
Comments
  • 4
    #!/bin/bash

    and then

    random_clean=$(echo "$random_raw" | tr -d ' ')

    hex_string=$(make_random_hex_string | tr '[:lower:]' '[:upper:]') # Uppercase hex

    I mean, why.....? :D

    random_clean=${random_raw// /}

    hex_string=$(make_random_hex_string)

    hex_string=${hex_string^^}

    Nice project though!
  • 3
  • 3
    @netikras bash version was an afterthought. I wrote the JS version and asked chatgpt to convert it to bash. It did what it did, it works, and it still has no phoning home
  • 1
    @kiki I convert code often too. Very udobno && zruchno.

    I use passwords that I remember and is this not stored anywhere. That's state of the art safe. Password managers are for things I do not really care about / most things. Care only about main email account.

    But you do know how to write a product page. My uberlama project had much votes on reddit, but I had a huge debounce rate on the site. But generating pages with preview using openwebui is so udobno, future pages will look nice.
  • 0
    @retoor you mean bounce rate? :D thanks!

    geez, how do you manage to remember all that passwords? I have like 200 accounts in total, and there is no way I can remember all that
Add Comment