this post was submitted on 01 Jun 2026
174 points (86.2% liked)
memes
21419 readers
3539 users here now
Community rules
1. Be civil
No trolling, bigotry or other insulting / annoying behaviour
2. No politics
This is non-politics community. For political memes please go to !politicalmemes@lemmy.world
3. No recent reposts
Check for reposts when posting a meme, you can only repost after 1 month
4. No bots
No bots without the express approval of the mods or the admins
5. No Spam/Ads/AI Slop
No advertisements or spam. This is an instance rule and the only way to live. We also consider AI slop to be spam in this community and is subject to removal.
A collection of some classic Lemmy memes for your enjoyment
Sister communities
- !tenforward@lemmy.world : Star Trek memes, chat and shitposts
- !lemmyshitpost@lemmy.world : Lemmy Shitposts, anything and everything goes.
- !linuxmemes@lemmy.world : Linux themed memes
- !comicstrips@lemmy.world : for those who love comic stories.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
That would be reverse run length encoding. Also, Base 1 is just zero, everything equals zero.
123 = 000 = 0
456 = 000 = 0
123456 = 000000 = 0
123 + 456 = 123456
0 + 0 = 0
69 + 420 = 42069
Base-n is a numeral positioning system where the value of each digit is n times the value of the dight directly to its right.
We typically don’t let the maximum digit we use to be greater than or equal to n because then there would be multiple ways to express the same number.
However when working with weird bases, sometimes it’s useful to forgo this convention.