What is the best program on GNU?

ix.io/

brave browser

upvoted. If you dont use grep atleast once a week you don't know how to into linux.

gnu.org/software/moe/manual/moe_manual.html#Introduction
wtf is this shit?

#!/usr/bin/pythonword_joiner = u"\u2060" #invisible charszero_width_space = u"\u200B"def encode(id): binary_id = ''.join(format(ord(c), 'b') for c in id) binary_id = binary_id.replace("0", zero_width_space) binary_id = binary_id.replace("1", word_joiner) return binary_iddef decode(id): decoded_id = "" binary_id = id.replace(word_joiner, "1") binary_id = binary_id.replace(zero_width_space, "0") for x in range(0, len(binary_id), 7): char_bin = binary_id[x:x+7] decoded_id += chr(int(char_bin, 2)) return decoded_idid = "gorillamonkey" #eg. login name used when accessing top secret CIA dochidden_id = encode(id)decoded_id = decode(hidden_id)print("Original: %s, hidden: %s, decoded: %s\n" %(id, hidden_id, decoded_id))cia_doc = "space aliens are real"cia_doc_with_voodoo_id = cia_doccia_doc_with_voodoo_id += hidden_id#now when u leak it, they know who did it.
I hope formatting isn't f'ed up again. Should have used moe to write this.

Gnu True.

Gnome Disks

Install a plugin for your text editor that highlights those.

guix

IceCat