[ home / rules / faq / search ] [ overboard / sfw / alt ] [ leftypol / edu / labor / siberia / lgbt / latam / hobby / tech / games / anime / music / draw / AKM ] [ meta ] [ wiki / shop / tv / tiktok / twitter / patreon ] [ GET / ref / marx / booru ]

/siberia/ - Off-topic

"No chin, no right to speak."
Name
Options
Subject
Comment
Flag
File
Embed
Password(For file deletion.)

Not reporting is bourgeois


File: 1755371202068.png (791.87 KB, 892x807, portman2.png)

 

For compliance reasons, the moderation team has voted to MANDATE spoilering all NSFW images, site-wide.

This takes effect as of now, August 16, 2025. Please take note.
50 posts and 10 image replies omitted.

>>700623
How? i have no time, i’m typing this as i’m working - they say if i don’t print 50 loli futa mangas in the next half hour they’ll start breaking toes

Good change. Support.

File: 1755558631457.png (Spoiler Image,3.65 MB, 1792x2304, ClipboardImage.png)

Surly feet don't count, right?

>>700915
Context dependent really, if it'd be rating:questionable on e621 then you should probably spoil it.

remember everyone, this banger policy happened during the bird hedgehog administration!

>>700915
feet

File: 1755565489192.gif (3.3 MB, 480x480, 1655040239361.gif)

>>699732
>no pubes
>no armpit hair
>no abs
>under fifty
>vaginal sex
>missionary position
>no penis
this unrefined shit should be spoilered regardless

File: 1755582437787-0.png (Spoiler Image,512.37 KB, 1200x1600, 23f24c7008cab10bc2b8b5d254….png)

File: 1755582437787-1.jpeg (Spoiler Image,95.36 KB, 800x600, 459855146bdd667d91116de5c….jpeg)

File: 1755582437787-2.jpeg (Spoiler Image,115.46 KB, 486x971, 63e160f8c4d875c0f8a5efff2….jpeg)

File: 1755582437787-3.jpg (Spoiler Image,111.63 KB, 822x1136, c46b731025e8f2b6ea6e33a172….jpg)

File: 1755582437787-4.jpg (Spoiler Image,630.55 KB, 1000x1000, __original_drawn_by_muraka….jpg)

>>699876
Wish granted, kind of. Here's a mediocre script to unspoiler images. Just paste it into your browser's console.

(function() {
let links = document.getElementsByTagName("a");
for (let i = 0; i < links.length; i++) {
let link = links[i];
if (
link.href &&
link.href.match(/siberia\/src/) &&
link.children.length == 1 &&
link.children[0].tagName == 'IMG' &&
link.children[0].src.match('/static/spoiler_alunya.png$')
) {
link.children[0].src = link.href;
}
}
})()

File: 1755638278062.webm (Spoiler Image,1.07 MB, 480x854, 1754952640902266.webm)

It occurs to me this will improve loading times on long threads with a lot of nsfw images, because you don't have to load hundreds of thumbnails.

Mods = Gods as always

File: 1755644615940-0.jpeg (Spoiler Image,247.79 KB, 1280x1425, 5cb3c400552d97e2687642cbd….jpeg)

File: 1755644615940-1.jpg (Spoiler Image,103.61 KB, 800x600, 6241ffd7bcea9dc75ebe8228c6….jpg)

>>700966
Probably should have saved these for the hentai thread. Oh well, here's version two of the script. Now with aspect ratio preservation.

Once again, just press F12 and paste it in the console. Feel free to ask ChatGPT for a review if your a non programmer that doesn't trust my code.

(function() {
const links = document.getElementsByTagName("a");
for (let i = 0; i < links.length; i++) {
const link = links[i];
if (
link.href &&
link.href.match(/(\.png|\.jpg|\.jpeg|\.webp)$/) &&
link.children.length == 1 &&
link.children[0].tagName == 'IMG' &&
link.children[0].src.match('/static/spoiler_alunya.png$')
) {
const image = link.children[0];
image.src = link.href;
function resize(event) {
const width = image.naturalWidth;
const height = image.naturalHeight;
const scale = Math.min(255/width, 255/height);
image.style.width = width*scale + 'px';
image.style.height = height*scale + 'px';
image.removeEventListener('load', resize)
}
image.addEventListener('load', resize);
}
}
})();

File: 1755737354778.png (255.79 KB, 360x360, Cuck.png)

This is such a retarded decision.
1) This is si/b/eria and OPs are already spoilered, what more do you fuckers want?
2) This just means fewer people will be posting or opening spoilered images since it's easy to post all sorts of vile shit
3) Not even into the porn but this ruins the entire point of 'free' imageboard posting, although that's been dead here long before this to be fair.

Just adjust the JS to have an option that reveals spoilered thumbnails on selection, so people can view the thumbnails without needing to open a full res of someone's rectum when checking a spoilered image.

>>699709
>compliance reasons
Thank you r/socialism, Hiromoot would be proud of your cucking out.

>>699926
Rule 10 has been changed because that was not the case before. The spoiling of pornographic OPs was also a change that didn't previously exist until a (relatively) recent time ago.
>inb4 muh overboard
That's the point of /sfw/

>>701738
i assume this is in response to a bunch of european nations passing laws censoring porn and mandating age verification

File: 1755773704609.jpg (Spoiler Image,320.23 KB, 1232x1466, 1755768084113740.jpg)

/siberia/ is dead(Ordinance 10)

File: 1755789996513.png (2.26 MB, 2816x2946, 23cc0d2c8cdccd87.png)

>>701738
As someone that uses the porn threads regularly, I like this change. Better loading times and less ammo for complainers. This could be due to me using activitypub for a few years soethe idea of a content warning feild is maundane to me. Then again I often see newcomers over there froth at the mouth that they need to toggle a setting to auto-expand them, or that porn, vent and food posts are slightly less space efficient as a result of having a headline.

>>699709
It this same vein, it'd be neat if we had a way to make a line of text collapsable. Like we have this but it takes the same amount of space. I sometimes run tests on LLMs and just put it in a code block to indicate that it is AI generated, but that puts it in a pre tag which disables wrapping–good for actual code, but for paragraphs that's pain. If we had a way to put a line in a details / summary tag that would be a godsend.

>>701881
>It this same vein, it'd be neat if we had a way to make a line of text collapsable. Like we have this but it takes the same amount of space. I sometimes run tests on LLMs and just put it in a code block to indicate that it is AI generated, but that puts it in a pre tag which disables wrapping–good for actual code, but for paragraphs that's pain. If we had a way to put a line in a details / summary tag that would be a godsend.

take it to the tech feedback thread in meta

File: 1755804643127.png (Spoiler Image,572.2 KB, 850x841, 1751555653952-0.png)

>>701800
Fascoid prudes won. Its over for goonetariat.

>>701957
this one is the exception

>>701738
I can't speak for all threads, but the I believe the hentai thread and the "post porn" thread are free of vile shit and shock images.

>>701897
Ah true

Jesus Christ. RIP 420chan

File: 1755906383006.jpg (320.23 KB, 1232x1466, 1755768084113740.jpg)

So where does the magical line of morality go where "too much of bikini picture is pornography"?

File: 1755906964580.jpg (1.85 MB, 2361x3514, original.jpg)

>>702293
They're likely going off booru rules. There is no slope to slide down, there's decades of conventions for this sorta stuff.

File: 1755911108969.png (Spoiler Image,945.07 KB, 768x1280, 1753842776624-3.png)

>>702296
No its 100% about feelings and opinions. There is no line.(Ordinance 10)

>>700915 Loli, reported.
>>700948 Loli, reported
>>701294 Illegal content, Asuka is 14 years old.
>>702293 This should be spoiled.

I raped >>705049

File: 1756741474152.png (1.24 MB, 800x1067, ClipboardImage.png)

If mods spoiler this image, Christo-fascism has won.

we need a seperate nsfw thread already

>>705817
i meant board, in retard mode

>bans porn
>doesn't ban nazis

based moralistic rules

>>706330
The Modocracy has its priorities, doesn't it?

>>705817
just have a separate site atp

>>706401
We just need to murder and cannibalize the mods and take this one back from the glowies, sharty spies, and hazlite /pol/ carpetbaggers.

I really like what ya did here pal.

>>705639
uygha that make no sense facsists in europa love their marble bust clitties

>>708402
In america they put you in prison for them.

File: 1757542495750.png (2.1 MB, 800x1203, ClipboardImage.png)

Best penis size btw

>>708404
sus pdf-coded taste

>>708427
Pathetic

>>701738
1 month later and I was right. All the porn threads are dead and half the spoilered pics are random garbage


>>708848
Like I said 2 months earlier its over. Reactionary scum inhabiting this chan won and now we have no "degeneracy" but instead very low tier discussion about idpol and latest liberal nationalism.

>>710056
The mods are literally unilaterally banning things just because they think it's "unsightly" (their words.) I think this place has become worse than r/socialism.

>>710087
My eyes see this clearly, my mind should not. Good mod work.

The creepy ugly dude with the blue Hawaiian shirt… I'm tired of seeing his face whenever I visit this board. Who is that and why do we have to look at him making that retarded face?

Change it. Spoiler it. Remove it. Whoever thought it was "cool" or something to post that with those teeth? Wrong.

I don't want to see that guy here anymore.

File: 1758293369779.jpg (43.55 KB, 634x555, 600lbLeftypolMod.jpg)

>>710087
Yeah, I just had this total FAGGOT FUCKFACE of a mod ban me for 14d, 'not touching enough grass' just because I outsmarted him and made him look like the embarrassing douche he is.

What a sore loser. Is that all the mods? Is that why those guys made their own offshoot of this site? Because up until today this site was always pretty cool. Some of the pretentious communism nerds suck, but they can't just remove threads when you make fun of them for calling everything "bourgeois".

Maybe once they lose their virginity and/or 200 lbs they will learn to do their jobs. Meaning "less is more" when it comes to bans.

Fucking faggots.

>>710854
I think that's the admin's avatar, she's used it for a thread or two. It's from a movie or smth idk.

Add an option to unspoiler all images you prudish fucks

Yea, include nightmare mode

>>710087
hot take
as bad as /r/socialism was about idpol and glow, that's not as bad as the reactionary socialists we have here now

>>713378
The two polarities are "Clapping is ableist" vs. "Yeah, I'm totally a socialist here on stupidpol. Socialism is when there's a welfare state and I can still proselytize about how black people are innately stupid; this isn't racist btw! Check out this 4chan graph!"
Both of these are cancerous garbage and both of these would have Marx rolling over in his grave. That this dichotomy is the dominant strain indicates something is gravely wrong with the Left's current foundational grasp of things.

File: 1759440856777.mp4 (Spoiler Image,1.35 MB, 1280x720, 2025-10-02 17-19-46.mp4)

>>701294
I've made a version three. Now images are only loaded when they're moused over. This should lighten the bandwidth load.

I wrote this version because marking an image as a spoiler prevents thumbnail generation. Hence I have to download the entire image to auto unspoiler it.
(function() {
    const links = document.getElementsByTagName("a");
    for (let i = 0; i < links.length; i++) {
        const link = links[i];
        if (
            link.href &&
            link.href.match(/(\.png|\.jpg|\.jpeg|\.webp)$/) &&
            link.children.length == 1 &&
            link.children[0].tagName == 'IMG' &&
            link.children[0].src.match('/static/spoiler_alunya.png$')
        ) {
            const image = link.children[0];
            function unspoiler(event) {
                image.src = link.href;
                function resize(event) {
                    const width = image.naturalWidth;
                    const height = image.naturalHeight;
                    const scale = Math.min(255/width, 255/height);
                    image.style.width = width*scale + 'px';
                    image.style.height = height*scale + 'px';
                    image.removeEventListener('load', resize)
                }
                image.addEventListener('load', resize);
                image.removeEventListener('mouseover', unspoiler);
            }
            image.addEventListener('mouseover', unspoiler);
        }
    }
})();


Unique IPs: 37

[Return][Go to top] [Catalog] | [Home][Post a Reply]
Delete Post [ ]
[ home / rules / faq / search ] [ overboard / sfw / alt ] [ leftypol / edu / labor / siberia / lgbt / latam / hobby / tech / games / anime / music / draw / AKM ] [ meta ] [ wiki / shop / tv / tiktok / twitter / patreon ] [ GET / ref / marx / booru ]