Lemmings.world

4,094 readers
50 users here now

General

A general-purpose Lemmy server that anyone can use.

Read the Code of Conduct and follow the rules. There's also the new user's guide.

We have a bot that travels the Fediverse and subscribes to the most popular communities, so that close to all Lemmy content gets synced here.

You can also go chat with others on our Matrix.

We're part of the Fediseer chain of trust:

Fediseer badge showing that we're guaranteed on the Fediseer network

A badge showing the uptime as a percentage

Donations

This instance is funded out of my pocket, if you wish to donate (or just see how much it costs), visit the donations page.

Other

Other Lemmy-related things hosted on Lemmings.world:

founded 2 years ago
ADMINS
1
 
 

A bunny sits next to a plateful of key lime pie slices. The bunny is yellow, sort of lime-colored but more lemon.

Source: Bluesky

2
 
 
3
4
Motte and bailey fallacy (simple.wikipedia.org)
submitted 7 hours ago by frenchfryenjoyer to c/Sealioning
 
 

The motte-and-bailey fallacy is a way of arguing where someone uses two different ideas that seem similar but are not the same. One idea (the "motte") is easy to defend and not very controversial. The other (the "bailey") is more controversial and harder to defend. When someone argues for the controversial idea but gets challenged, they switch to defending the less controversial one. This makes it look like their original point is still valid, even though they are now arguing something different.

History and Name This fallacy (incorrect argument in logic and rhetoric) is named after a type of medieval castle called a motte-and-bailey. Nicholas Shackel, a philosopher, first talked about this fallacy in 2005.[1] He compared it to the castle's defense strategy. In a motte-and-bailey castle, there's a stone tower on a hill (the motte) and a land area around it (the bailey). If attackers come, people in the castle retreat to the motte, which is easier to defend. Similarly, in the fallacy, the arguer retreats to the easier-to-defend idea when their main idea is attacked.

not an example of sealioning but the Motte-and-bailey fallacy is something I've seen trolls do in arguments and thought this'd be helpful

4
 
 

As someone who loves chips/french fries, I'm afraid even I can't compete with this lmfao (ate so many chips and crisps one day I had like 6,000 mg of potassium but that was only one day, even then I felt like it was risky lol) 😭

5
 
 

The British media loves to publish negative stories about chavs. post your positive ones here! 👍

6
 
 

A bunny frantically vacuums their apartment, in anticipation of a gathering. There is also a trashbag by the door, and a mop and other cleaning products scattered around (ironically making the apartment messier.) In their haste, they start to vacuum over their cat, who reacts with surprise

Source: Bluesky

7
 
 

At a little public pool, a bunny secretly lets the air out of another bunny's pool float, as the other bunny relaxes on top. The pool float is shaped like a weird seahorse, and other younger bunnies are playing around the poolside

Source: Bluesky

8
5
plegg (self.plegg_irl)
submitted 2 days ago by anthony to c/plegg_irl
 
 

The host when they make a decision without consulting any of the system I am the senate,

9
 
 

Two bunny parents push strollers containing their respective bunny children, both still babies. One rambunctious bunny innocently lobs her rattle directly at the other bunny's stroller, to the embarassment of both parents. The other baby bunny is unaware of the incoming object

Source: Bluesky

10
 
 

Bunnies shout over one another placing bids in an art auction, overseen by a bunny auctioneer. They are fighting over a banana taped to a wall, like the famous art piece, but possibly just want to eat it.

Source: Bluesky

11
 
 
12
 
 

A bunny with a magnifying glass peers at a line of much smaller gray ants, who are rushing into an anthill (a bunny hill) to escape from the rain that has just started.

Source: Bluesky

13
 
 

cross-posted from: https://slrpnk.net/post/24512484

(The pic is sample output for an arbitrary query on “vegan vege pesc”. Irrelevant side note: there is no free-world venue for pescatarians.. just one in L/W that scrolled off the screen)

CF

The federation is not wholly decentralised, obviously, when giant centralised fiefdoms like Facebook “Threads”™ and Cloudflare hook in their technofeudal variety of oppressive infra and abuse their power.

Each post submission begins with finding a relevant venue for the content and it must be consistent with my sense of ethics. Cloudflare is automatically nixed because it’s inherently centralised in a walled garden (regardless of the user count for any given node). CF is a non-starter for an open, free, and fair society (fair implying power balance, equality, transparency, etc).

My script queries the catalog of communities for relevant venues. It still prints the Cloudflare walled garden because it’s useful to see what names match my regex queries, which sometimes helps form a better query. It’s the only thing #LemmyWorld is good for (a shit-ton of community names with redundant variations of the same subject matter). Those results are in red, tagged with a thundercloud (🌩 ), and printed first (because when they scroll off the terminal I don’t typically care to scroll up to see them).

non-CF

CF is not the only issue. Some non-CF nodes are centralized due to uncontrolled growth to disproportionately large sizes. I don’t cancel them hard-and-fast like CF nodes, but they get treated with low “last resort” favorability. They have the warning symbol (⚠) and are in yellow.

Is my math decent?

My script began by filtering on total user count. Then I realised dead or dormant users probably should not count because such users don’t really contribute to a node’s disproportionate power over a population. It’s active users that matter. But if the number of active users in a day are filtered on, that’s too dynamic for deciding where my post can live for a month or however long it is relevant. So I took the users_active_half_year count. Is that sensible?

What constitutes an “active” user, simply logging in, or commenting?

The line is drawn at 2 standard deviations above the average -- after tossing outliers. Nodes with less than 5 active users in ½ a year are likely 1-person nodes which do not influence the average. The average is around 320 active ½yr users per node. The standard deviation is ~702 users. My statistical competence is rusty for sure, but I’m a bit bothered by a standard deviation that’s more than double the mean. Seems like a variation so wild it should perhaps be disregarded. Nonetheless, I opted to flag nodes that exceed ~1724 users_active_half_year.

The pseudocode looks like this:

avg=$(sqlite3 "$db" 'select round(avg([counts.users_active_half_year])) from node_tbl where tags not like "%cloudflare%" and [counts.users_active_half_year] > 4')
variance=$(sqlite3 "$db" 'select avg(([counts.users_active_half_year] - subtbl.aua) * ([counts.users_active_half_year] - subtbl.aua)) as var from node_tbl, (select avg([counts.users_active_half_year]) as aua from node_tbl where tags not like "%cloudflare%" and [counts.users_active_half_year] > 4) as subtbl where tags not like "%cloudflare%" and [counts.users_active_half_year] > 4;')

sqlite3 "$db" "select case when baseurl in (select baseurl from node_tbl where [counts.users_active_half_year] > $avg+sqrt($variance)*2) then '$yellow⚠' else '$cyan' end||baseurl||'$reset',name from community_tbl where (name like '%${1}%' or desc like '%${1}%') and baseurl not in (select baseurl from node_tbl where tags like '%cloudflare%') order by baseurl,name"

Code is ugly because sqlite does not have a stdev builtin function.

My other thought is to cut slack for closed nodes because at least they are expected to shrink. To list the possible figures to filter on, this is a record for lemmy.ml (the biggest non-Cloudflare node):

record for lemmy.mlurl = https://lemmy.ml/ baseurl = lemmy.ml name = Lemmy desc = A community of privacy and FOSS enthusiasts, run by Lemmy’s developers downvotes = 1 nsfw = 1 create_admin = 0 private = 0 fed = 1 version = 0.19.12 open = 1 usage.users.total = 54790 usage.users.activeHalfyear = 4201 usage.users.activeMonth = 2125 usage.localPosts = 167331 usage.localComments = 818559 counts.site_id = 1 counts.users = 54790 counts.posts = 167331 counts.comments = 818559 counts.communities = 4608 counts.users_active_day = 947 counts.users_active_week = 1496 counts.users_active_month = 2125 counts.users_active_half_year = 4201 icon = https://lemmy.ml/pictrs/image/fa6d9660-4f1f-4e90-ac73-b897216db6f3.png banner = langs = ["all"] date = 2019-04-20T18:53:54.608882Z published = 1555786434000 time = 1751974533970 score = uptime.domain = lemmy.ml uptime.latency = 0.034 uptime.countryname = France uptime.uptime_alltime = 99.04 uptime.date_created = uptime.date_updated = 2021-10-29 15:09:21 uptime.date_laststats = 2025-04-11 21:03:25 uptime.score = 100 uptime.status = 1 isSuspicious = 0 metrics.usersTotal = 54790 metrics.usersMonth = 2125 metrics.usersWeek = 1496 metrics.totalActivity = 985890 metrics.localPosts = 167331 metrics.localComments = 818559 metrics.averageUsers = 50720.8825256975 metrics.biggestJump = 225 metrics.averagePerMinute = 0.02475 metrics.userActivityScore = 0.055574151274483 metrics.activityUserScore = 17.9939770031028 metrics.userActiveMonthScore = 25.7835294117647 tags = [] susReason = [] trust.lastCrawled = 1751974533970 trust.baseurl = lemmy.ml trust.metrics.usersTotal = 54790 trust.metrics.usersMonth = 2125 trust.metrics.usersWeek = 1496 trust.metrics.totalActivity = 985890 trust.metrics.localPosts = 167331 trust.metrics.localComments = 818559 trust.metrics.averageUsers = 50720.8825256975 trust.metrics.biggestJump = 225 trust.metrics.averagePerMinute = 0.02475 trust.metrics.userActivityScore = 0.055574151274483 trust.metrics.activityUserScore = 17.9939770031028 trust.metrics.userActiveMonthScore = 25.7835294117647 trust.users = 54790 trust.name = Lemmy trust.base = lemmy.ml trust.actor_id = https://lemmy.ml/ trust.tags = [] trust.guarantor = fediseer.com trust.endorsements = 17 trust.score = 598.1875 trust.reasons = [] blocks.incoming = 0 blocks.outgoing = 0 blocked = []

Some communities missing from the Lemmyverse DB - why?

Anyone know why some slrpnk.net communities are in the Lemmyverse DB, and some are not? E.g. why is !nolawns@slrpnk.net missing, despite many others from the same node that are included?

More importantly, what’s the fix apart from crawling all the nodes (which would probably be unwelcome)? Is there another open DB apart from Lemmyverse? There is fediverse.space and fediverse.observer, but they don’t appear to be sharing their data.

14
 
 

A 19 year old man named Jed Sheridan was killed by a 20 year old "goth" who was part of this gang he called the "TSE Crew" that went around beating up "chavs". After this horrible incident the murderer boasted about it saying "don't worry, it was just another chav". There was a blog post about his death which had comments, many of them were nasty (source). Sheridan was just walking home with friends and the attack was completely unprovoked. details are graphic so just a warning for those going to read the article. going by many people's attitudes such as the ones on the blog I linked I suspect people are less bothered by a chav being killed in an unprovoked attack than if it were a different kind of person who is middleclass. regardless of how he looked or what his lifestyle was, his life mattered too. RIP Jed Sheridan 💔

15
 
 

A bunny reads a book in a small reading room, sitting sideways in a blue armchair. Other books are strewn about the chair, and there is a raven perched moodily on top of the chair as well. It is a moonlit night, as seen through a window

Source: Bluesky

16
45
Steve is back! (lemmings.world)
submitted 5 days ago by Naich to c/gullfriends
 
 

I hadn't seen Steve for ages and was starting to worry about her, but she turned up yesterday for a couple of pieces of cake. We then chilled together for a while. It was so nice to see her again.

17
 
 

Saw this proper old school chav in the Chinese earlier this evening. he was even wearing a burberry pattern cap which I haven't seen in ages. Fit, mid 30s, grey tracksuit, nice neck tattoo. great big brown eyes as well. he was a cutie! 😭 Chinese wasn't that busy so he turned to me and started a convo. we talked for a while while waiting for our order and he kept flirting with me, talking about random stuff, our food, and said he doesn't like being single. I said "me neither" and he was like "you from here?" and I said yeah and he said "aw no.. I live up Manchester, I'm visiting" all disappointed and as he was going out he made a passing comment about my looks and he hopes I can find a "really good guy" while giving me a thumbs up. istg a running gag with me is I get into random encounters with (male) chavs and they either flirt with me in a sweet way or they help me with stuff even though I don't know them but as someone who likes them I ain't complaining lol

18
 
 

A bunny lamplighter, with an old-fashioned lamplighter's wick, lights a streetlamp on a very foggy night. Almost nothing else is visible except the cobblestone streets

Source: Bluesky

19
 
 

Two bunnies flee from a bunch of home fireworks going off at once. The fireworks are the old-fashioned rocket-shaped ones, and the bunnies purchased a crate of them to light out in the woods at night. The fireworks that have already gone off spiral erratically in all directions

Source: Bluesky

20
 
 

About anything. Anything. No judgment.

21
 
 

A bunny swims on the surface of the ocean, in a scene similar to the movie poster for "Jaws" with a giant Great White Shark below the water. There are also two much smaller shark siblings looking up at the bunny.

Source: Bluesky

22
2
submitted 1 week ago* (last edited 1 week ago) by lazycouchpotato@lemmy.world to c/schedule
 
 

Pinging @rikudou@lemmings.world

I have 3 posts scheduled to be posted daily using @dailypostlemmybot@lemmy.world: Job IDs 161, 162 and 164.

No issues so far, but today (July 3) the bot did not make its scheduled posts.

I checked the post details and it still says that the post is scheduled to be posted at 2025/7/3 7:30:00 (Japan time) but that time has gone. It's currently 2025/7/4 5:30:00 (Japan time). Next run is showing as scheduled for 2025/07/5.

The counters I set also did not update.

23
 
 

A bunny secret agent confronts a bunny villain in a secret lair, implied to be an underground cavern. The secret agent, in a tuxedo, falls into a cleverly placed trapdoor. The villain is reclining on a 60's chair, and has a scar on his eye and a white long-haired cat, like Ernst Blofeld.

Source: Bluesky

24
 
 

The time flies really fast! Exactly 2 years ago I was the one and only user of this instance and now there are thousands of us! So happy birthday to Lemmings.world and hope you all enjoy our small corner of the internet!

25
 
 

Two bunnies are riding kiddie rides, like you might see in a mall or amusement park. One is shaped like a red car, the other is like an old plane, and they are both rocking back and forth as the bunnies flop about. They also have fast food bags that they've set down beside the ride.

Source: Bluesky

view more: next ›