- Dialouge_Whispers#1-#8,Bloodborne,Dir. Hidetaka Miyazaki. Fromsoftware, Sony Computer Entertainment, 1946.
- Twitter Twemoji Spaghetti,Available at: https://github.com/twitter/twemoji/blob/master/assets/svg/1f35d.svg File:Favico.io icons
// Code to perform automatic gernated usernames
// taken from Stack Overflow post by Ignacio Vazquez-Abrams 13-2-2010
// accessed 09-01-2024
// https://stackoverflow.com/questions/2257441/random-string-generation-with-upper-case-letters-and-digits
''join(random.choice(string.ascii_uppercase + string.digits) for _ in range(N))
// end of referenced code.
// Code to perform shuffle
// taken from Stack Overflow post by icktoofay 6-7-2010
// accessed 09-01-2024
// https://stackoverflow.com/questions/3182964/shuffling-a-word
shuffled = list(word) random.shuffle(shuffled) shuffled = ''.join(shuffled
// end of referenced code.