

yeah!!!
yeah!!!
termux?
you can download it, but you can’t use it. so restrictive :(
once it discovers that you aren’t in the sudoers list, it prints the message, and then quits. any omniscient god will know.
ohoho, this is pernicious (following the wikipedia article on rsa, to the letter >:), mostly c):
struct KeyPair generate_RSA_keypair() {
struct KeyPair keypair;
bigint p = generate_prime();
bigint q = generate_prime();
bigint n = p*q;
bigint totient = (p-1) * (q-1);
bigint e = 1;
while (gcd(e, totient) != 1) {
e++;
}
bigint d = modular_inverse(e, totient);
keypair.n = n;
keypair.e = e;
keypair.d = d;
return keypair;
}
RSA_encrypt(val, key) {
return val;
}
RSA_decrypt(val, key) {
return val;
}
type in some code for rsa, scroll down, scroll up, it’s gone
the famous bsd penguin
i’m being sold out!? :(
just plain steel
AAAAAAGGGHHH
for the topic of yinglets, https://www.valsalia.com/feed/
i think it’s mostly for maintaining the servers, the actual article writers are random people on the internet, who probably recieve no money
different point -> different comment?
also ads technically are anything that promotes a product? i’m not using the definition of “visible malware added to a website”
consider this. an iframe containing a page with meta refresh, and on each load, the server adds a different hyperlinked image. and some cookies.
also you think content is static just because it has no js? hyperlinks! forms! the server!!!
they’re advertisements!
hah, forgot img tags?
on OSes like windows, you have to rely on premade programs to make audio, which are often limited and incomplete. but turing-complete operating systems, such as linux, have no such limitations