URI:
       tqq - scripts - random scripts
  HTML git clone https://git.parazyd.org/scripts
   DIR Log
   DIR Files
   DIR Refs
       ---
       tqq (177B)
       ---
            1 #!/usr/bin/env python3
            2 
            3 from random import randint
            4 
            5 
            6 bible = open('/home/parazyd/quotes').read()
            7 bible = bible.split('\n\n')
            8 rand = randint(0, len(bible)-1)
            9 
           10 print(bible[rand])