Skip to content

Instantly share code, notes, and snippets.

@xtranophilist
Last active April 22, 2024 08:45
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xtranophilist/cf02156d0385d130266aca048382c347 to your computer and use it in GitHub Desktop.
Save xtranophilist/cf02156d0385d130266aca048382c347 to your computer and use it in GitHub Desktop.
LibreOffice Calc random password generator
=CONCAT(INT(RAND()*10), CHAR(48+RAND()*10), INT(RAND()*10),CHAR(65+RAND()*26),INT(RAND()*1000),CHAR(97+RAND()*26),INT(RAND()*1000))
@whizsid
Copy link

whizsid commented Jan 5, 2022

use CHAR(33 + ROUND(RAND()*14,0)) for special character.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment