Bash_Boggle

I wrote this little script one evening a long time ago, for someone who wanted to take pre-printed sheets to work, as it was more stimulating than the work… #!/bin/bash # Print out a Boggle board to stdout. # The 16 dice and their 6 sides each, this creates Dice[n]= Dice=\ (QBAJOM EFIEYH ODENWS HPSEIN…

Pad

This generates a list of passwords, as a pad, I carry a subset of one of these with me in case I need a truly random password while I’m out. #!/bin/bash # SRJ 2016-09-20 Create reasonable passwords # 0 1 2 3 4 5 6 7 # 1234567890123456789012345678901234567890123456789012345678901234567890123456789 Chars="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890.!@#$%&-_=+abcdefghijklmnopqrstuvwxyz" # The column labels are taken…