5 4 10 2 12 9 6 7 8 11 3 1
Lemmy Shitpost
Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.
Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!
Rules:
1. Be Respectful
Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.
Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.
...
2. No Illegal Content
Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.
That means:
-No promoting violence/threats against any individuals
-No CSA content or Revenge Porn
-No sharing private/personal information (Doxxing)
...
3. No Spam
Posting the same post, no matter the intent is against the rules.
-If you have posted content, please refrain from re-posting said content within this community.
-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.
-No posting Scams/Advertisements/Phishing Links/IP Grabbers
-No Bots, Bots will be banned from the community.
...
4. No Porn/Explicit
Content
-Do not post explicit content. Lemmy.World is not the instance for NSFW content.
-Do not post Gore or Shock Content.
...
5. No Enciting Harassment,
Brigading, Doxxing or Witch Hunts
-Do not Brigade other Communities
-No calls to action against other communities/users within Lemmy or outside of Lemmy.
-No Witch Hunts against users/communities.
-No content that harasses members within or outside of the community.
...
6. NSFW should be behind NSFW tags.
-Content that is NSFW should be behind NSFW tags.
-Content that might be distressing should be kept behind NSFW tags.
...
If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.
Also check out:
Partnered Communities:
1.Memes
10.LinuxMemes (Linux themed memes)
Reach out to
All communities included on the sidebar are to be made in compliance with the instance rules. Striker
Thanks, i hate it :)
Ah yes its nearly 8:03 o’clock
Or nearly 56 minutes to 11:08
Portuguese
cinco, dez, dois, doze, nove, oito, onze, quatro, seis, sete, três, um
5 10 2 12 9 8 11 4 6 7 3 1
cinco, dez, dois, doze, meia, nove, oito, onze, quatro, sete, três, um
5 10 2 12 6 9 8 11 4 7 3 1
(six can be "seis" or "meia")
Mine is Spanish
Cinco (5), cuatro (4), diez (10), doce (12), dos (2), nueve (9),, ocho (8), once (11), seis (6), siete (7), tres (3), una (1)
If a mechanical clock or watch was like that it would be one hell of a fascinating movement
Cinq Deux Dix Douze Huit Neuf Onze Quatre Sept Six Trois Un
5 2 10 12 8 9 11 4 7 6 3 1
I recently found out that javascript's .sort() function, when called without arguments on an array of numbers, converts them all to strings and sorts them alphabetically 🤡
I'm a C programmer. My first time writing Javascript and ran into some sort of bug involving a === sign or something. Javascript is a silly language.
console.log("10"+1); // "101"
console.log("10"-1); // 9
The epitomy of irony is a JavaScript developer insisting that some other language is "a fractal of bad design" without immediately acknowledging that JS is weird as hell.
I like Lua's design. Separate addition (x+y
) and concatenation (x..y
) operators ftw!
Edit: and just, like, everything else about Lua too
Truish and falsish and nullish are all concepts made up by madmen. JavaScript is the language of the damned.
Javascript lets you compare unlike types without extra steps using ==. If you want strict comparison where “2” isn’t 2, use === and !==. Personally, I find that easier than having to parseint or cast every damn thing or whatever c does (strtol?). That said, I have build tools set up to enforce strict comparison because I don’t trust myself or others.
Interestingly it would be right twice a day
I'd think four times: 4:20, 4:35, 7:20, 7:35
I'm stupid and read the clock wrong and didn't check even a little.
You'll fit in here just fine!
Which language provides the most random alphabetically sorted sequence?
Data
| N | Eng | Dut | Ger | Tur | Lex |
|----+-----+-----+-----+-----+-----|
| 1 | 8 | 8 | 8 | 6 | 1 |
| 2 | 11 | 3 | 3 | 5 | 10 |
| 3 | 5 | 1 | 1 | 1 | 11 |
| 4 | 4 | 11 | 11 | 9 | 12 |
| 5 | 9 | 9 | 5 | 4 | 2 |
| 6 | 1 | 10 | 9 | 2 | 3 |
| 7 | 7 | 12 | 6 | 10 | 4 |
| 8 | 6 | 2 | 7 | 11 | 5 |
| 9 | 10 | 4 | 4 | 12 | 6 |
| 10 | 3 | 5 | 10 | 8 | 7 |
| 11 | 12 | 6 | 2 | 3 | 8 |
| 12 | 2 | 7 | 12 | 7 | 9 |
Sourced from comments in thread (English from image, Dutch from Vinny93, German from TJA, Turkish from some rando, Lexicographical from monogram)
Plot with Pearson Score
Code
gnuplot -p -e '
set xlabel "Base Sequence";
set ylabel "Alphabetic";
set xtics 1,1,12;
set ytics 1,1,12;
set title "Alphabetic Number Plot with Correlation Score";
set key outside left;
set size ratio 0.45;
stats "alphabetic.tab" using 1:2 name "E";
stats "" using 1:3 name "D";
stats "" using 1:4 name "G";
stats "" using 1:5 name "T";
stats "" using 1:6 name "L";
plot "" using 1:2 with lines title sprintf("%s (%.3f)", columnhead(2), E_correlation),
"" using 1:3 with lines title sprintf("%s (%.3f)", columnhead(3), D_correlation),
"" using 1:4 with lines title sprintf("%s (%.3f)", columnhead(4), G_correlation),
"" using 1:5 with lines title sprintf("%s (%.3f)", columnhead(5), T_correlation),
"" using 1:6 with lines title sprintf("%s (%.3f)", columnhead(6), L_correlation)
'
It looks like the most random language is Dutch (closest to zero), and Turkish appears to be the least random (probably the 10,11,12 sequence skewed it).
Although Lexicographic also appears to have a near zero score, despite being the most ordered. I think Pearson is a bad measure here, and maybe a Serial Correlation test might be better.
I didn't expect soneone to put that much effort into it.
Thanks! This is awesome!
This is the second comment I've seen like this from you.
Please never stop.
Thank you for doing and sharing this
You put a lot of work into this.
It's 9 o'clock somewhere!
8 3 1 11 5 9 6 7 4 10 2 12
What time is it?
It's Beer O'clock!
Sure but the clock doesn't tell time any differently—now it's just displaying wrong, instead.