/site/ - Site Meta

Official 8chan Site Meta. (Bring bug reports, complaints, and requests here)

Index Catalog Archive Bottom Refresh
+
-
Name
Options
Subject
Message

Max message length: 12000

files

Max file size: 32.00 MB

Total max file size: 50.00 MB

Max files: 5

Supported file types: GIF, JPG, PNG, WebM, OGG, and more

CAPTCHA
E-mail
Password

(used to delete files and posts)

Misc

Remember to follow the Rules

The backup domains are located at 8chan.se and 8chan.cc. TOR access can be found here, or you can access the TOR portal from the clearnet at Redchannit 3.0 (Temporarily Dead).

Ghost Screen
Celebrating its fifth anniversary all September


8chan.moe is a hobby project with no affiliation whatsoever to the administration of any other "8chan" site, past or present.

(1.03 MB 2048x1448 yoko slide.jpg)

(3.31 MB 1342x1821 8chan family.png)

General Purpose 8chan Sitewide Meta Thread Anonymous Board owner 05/12/2022 (Thu) 02:37:48 Id: 9b4131 No. 5423
This cyclical thread is for all of the following: Bug Reports General Help 8chan Tech Support Board Migrations Suggestions and Feature Requests Global Site Announcements Transparency Reports General Site Meta Discussion Summoning the Admins Specific meta threads on this board and elsewhere are deprecated. If something is really important or urgent it may get its own sticky, otherwise post in here.
If it ain't one thing its another
I hope he fixes this fast
>>14486 just, like, use https://8chan.se ?
(512.22 KB 1280x720 You are fucking stupid.webm)

where /zoo/?
>>14490 It's a hidden board now, and can only be accessed from .se due to legal reasons.
>>14451 Hey; I was going to say that! What happened here?!
>>14451 >>14493 Click the 3 dots menu, long hold the refresh button for hard refresh
>>14429 There's another issue with the currently active .panelBacklinks { display: inline-flex; } CSS rule. It makes it impossible to select the post number by just double clicking anywhere to the left of it. This makes searching for mentions of the post harder and makes it much more annoying to reply to posts by copying the post number. This is on the current version of tor browser, but I assume the same goes for other Firefox-based browsers.
As you all know, the so-called "Take It Down" act just passed and is now law in the united states. Subsequently, there was concerns on what this means for the AI boards on here, the celeb ones in particular. DISCLAIMER: I am not a lawyer, this is just my current view on the situation. Focussing on the part that's relevant for AI, I reached the following conclusions: 1. Publishing explicit AI depictions (basically porn) that is indistinguishable from actual explicit depictions involving the depicted person without the depicted persons consent is illegal. That seems to be the gist of it, let's break this down into its constituent parts: a. Publishing b. explicit AI depictions (basically porn) c. indistinguishable from actual explicit depictions involving the depicted person Regarding a. "Publishing" is defined quite narrowly, i don't believe it includes hosting, promoting or linking material per se. It certainly doesn't include possession, production or consumption. Considering Section 230, this would make it entirely the posters problem legally, not other users or the platforms. The only liability the platform has is to react to takedown requests in good faith and in a timely manner. Regarding b. The acts relevant parts are only concerned with explicit depictions, not depictions in general, whether this is depictions of minors or adults. Regarding c. "indistinguishable" in this sense means that an ordinary person can't tell it apart from the real thing, think "real", not "realistic". If a depiction is visually recognizable as AI-generated or "not real", it should be fine. This is a low bar to clear, the vast majority of ai slop wouldn't be affected at all, even if it features celebrities. From the platforms perspective this act doesn't change much besides the need to comply with takedown requests. Beyond that, maybe a disclaimer on the affected boards and a rule clarification is in order, but otherwise, everything should stay the same. There's no need to delete any ai boards. For the acts "revenge porn" section, conclusions a. and b. would hold as well, so the same measures as for ai porn should suffice. Again, consult a lawyer to be sure if you need to, this is just my current view of the matter.
>>14497 >"indistinguishable" in this sense means that an ordinary person can't tell it apart from the real thing, think "real", not "realistic". I don't see anywhere where this is implied. <The term digital forgery means any intimate visual depiction of an identifiable individual created through the use of software, machine learning, artificial intelligence, or any other computer-generated or technological means, including by adapting, modifying, manipulating, or altering an authentic visual depiction, that, when viewed as a whole by a reasonable person, is indistinguishable from an authentic visual depiction of the individual. This doesn't say that as long as you can tell it's AI then it's fine. It says if it's indistinguishable from the individuals likeness then it's criminal. www.govtrack.us/congress/bills/119/s146/text/enr#
>>14498 >individuals likeness so potter porn is banned?
Will the "dead node" of .moe be fixed?
the IDs on this website are so damn ugly, I wrote this script that restyles it. I recommend the site owner just integrates it in full instead of using that retarded black shadow thing GM_addStyle(` .labelId.dark-post-count { color: #000c; } .labelId.dark-post-count::after { color: #000c; border-left: 1px solid #000a; } .labelId.light-post-count { color: #fffd; } .labelId.light-post-count::after { color: #fffd; border-left: 1px solid #fffa; } .labelId::after { content: attr(data-posts-by-this-id); margin-left: 0.4em; padding: 1px 4px; } .labelId { background-image: none; paint-order: stroke fill; padding: 1px 0px 1px 4px; !important; text-shadow: none; } `); function linearize(c) { return c <= 0.040449936 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4); } // This function actually calculates how bright a color truly is in the CIELAB & HCT color spaces. // Do not substitute this for anything else (especially HSL. HSL lightness isn't perceptually accurate) function toneFromRgb(red, green, blue) { const redL = linearize(red), greenL = linearize(green), blueL = linearize(blue); const y = (0.2126 * redL + 0.7152 * greenL + 0.0722 * blueL); return y > 0.00885645 ? 116.0 * Math.pow(y, 1.0 / 3.0) - 16.0 : 903.296296 * y; } function styleIdText(label) {
[Expand Post] const hex = label.innerText; const r = parseInt(hex.substring(0, 2), 16) / 255; const g = parseInt(hex.substring(2, 4), 16) / 255; const b = parseInt(hex.substring(4, 6), 16) / 255; label.classList.add(toneFromRgb(r, g, b) >= 57 ? "dark-post-count" : "light-post-count"); } // Process all the posts that was rendered before this script runs. for (const [id, posts] of Object.entries(posting.idsRelation)) { for (const post of posts) { const label = post.querySelector(".labelId"); // Remove these listeners because our hook doesn't work during page load (what the fuck Lynxchan?) label.onmouseover = null; label.onmouseout = null; // Set the post count. label.setAttribute("data-posts-by-this-id", posts.length); styleIdText(label); } } // This shit was pasted straight from 8chan.moe source code. posting.processIdLabel = function(label) { if (!label) return; const id = label.textContent; const postsOfThisId = posting.idsRelation[id] || []; const innerPost = label.closest(".innerPost, .innerOP"); if (innerPost.classList.contains("clone")) { label.setAttribute("data-posts-by-this-id", postsOfThisId.length); } else { posting.idsRelation[id] = postsOfThisId; postsOfThisId.push(innerPost); // Update the count for all the .labelID elements of this ID. for (let post of postsOfThisId) { post.querySelector(".labelId").setAttribute("data-posts-by-this-id", postsOfThisId.length); } } styleIdText(label); label.onclick = function() { var index = posting.highLightedIds.indexOf(id); window.location.hash = '_'; if (index > -1) { posting.highLightedIds.splice(index, 1); } else { posting.highLightedIds.push(id); } for (var i = 0; i < postsOfThisId.length; i++) { var cellToChange = array[i]; if (cellToChange.className === 'innerOP') { continue; } /*? 'innerPost' : 'markedPost';*/ cellToChange.classList.toggle("markedPost", index === -1); } }; };
>>14501 post screenshot at least
>>14501 I actually planned to add data attributes with post count to id labels, but doing that during initial load has factorial complexity, so it will have to come after posting.js rewrite. >innerText Please don't. It causes reflows.
Why i see doble citation?
>>14507 reload with Ctrl+F5 >>14506 >>innerText >Please don't. It causes reflows. thanks for the heads-up, totally forgot about it >I actually planned to add data attributes with post count to id labels, but doing that during initial load has factorial complexity, so it will have to come after posting.js rewrite. makes sense
>>14498 >that, when viewed as a whole by a reasonable person, is indistinguishable from an authentic visual depiction of the individual. >This doesn't say that as long as you can tell it's AI then it's fine That's exactly what it says tho. Likeness isn't mentioned anywhere in that part of the bill. "INDISTINGUISHABLE from an AUTHENTIC visual depiction of the individual" works the exact opposite way from what you stated: the threshold to clear isn't whether you can spot enough similarity, it's whether you can spot enough differences to conclude that the image isn't authentic. Also it's not concerned with the person itself directly, but with depictions of the person. The whole "when viewed as a whole" part lowers the threshold to clear even more: it might imply that a sufficiently unrealistic visual context is enough to make it legal, even if the person in the depiction looks real. The "indistinguishable" bit closely mirrors US Code 2256, where this point is elaborated further. Not a lawyer tho, that's just what it sounds like to me. Pretty sure you're wrong on this.
>>14378 >>14498 > is indistinguishable from an authentic visual depiction If it's clearly AI, then it's clearly not authentic.
>>14503 pass
"INDISTINGUISHABLE from an AUTHENTIC visual depiction of the individual" works the exact opposite way from what you stated:
>>14512 Holy fuck this nigger website just ate my entire post KILL YOURSELF STEPHENLYNX YOU TRANNY FAGGOT
>>14509 >>14510 That's clearly not how it works. If that was the case the law would just state that you need to watermark your shitty AI trash. The spirit of the law and how it will be enforced is obviously going to be used for any AI images that are indistinguishable (which literally just means not stylized to boomers) from the real person.
>>14503 Text shadow adds readability. Your contrast looks fucked especially 50910a
>>14515 you can literally just add a white text shadow on dark-post-count and a black one on light-post-count, the actual value the script brings is the tone calculation instead of the ugly black+white shadow the site currently has. I just don't like shadows so I didn't put it in
>>14512 >works the exact opposite way from what you stated: No U.
>>14501 >>14503 I actually like this but I'm a retard and can't get it to work. Just pasting it into a new userscript didn't do anything, but tampermonkey says it executed 1 time.
>>14519 That worked, thanks.
>>14519 I tried adding shadow like these posts. >>14515 >>14516
>>14521 pretty good for what I assume is macos' shitty font rendering
>>14522 >font rendering autism I've seen a lot of this over the years but I've never actually understood it myself. I can't really pick out the minute details in cross-platform font rendering. Maybe I've just never had the sort of monitor where it would be relevant. Also I'm on Linux.
>>14523 it's actually more visible on lower DPI displays (mine is just cheapo 1080p), font rendering is more important on cheap screens where you want to basically just replicate windows' nice and sharp rendering
>>14522 >macos' shitty font rendering those who made and those who didn't stop the decision to increment all font weight by 100 in macos by default deserve to be thrown into a glass recycler
>>13767 The people making boards are likely power tripping weirdos just like they are on Reddit so idk why I'd want to have the ability to create my own. I've had far worse mod interactions here than the past 20 years of halfchan.
I also want to know who in this site messed it up...
>>14526 Which boards though.
>>14528 Front page ones
>>14418 >>14441 I just double-checked if the limit was already raised to 256 or 512 despite what the UI says, but no it's definitely still 128. Also the flag page UI is confusing and misleading, referring to flags as "length" in contradiction with the banners page. Certain boards have long-established culture based on user-submitted flags, and the limit really cramps our style. Plus like I said, someone on here already told me they would "crunch some numbers" and look into it.
(59.58 KB 527x136 snsnsnsnsnssns.jpg)

I'm not upgradingTM my browser flam
>>14531 for this to be useful, you'd have to show what's crashing api.js
>>14531 >>14532 More likely just some incompatibility between script updates and one is using an old cache while the other isn't. The site should attach a unique query string to .js URLs that updates whenever the site updates to prevent caching incompatible versions of scripts breaking. For example, the current commit shorthash of the frontend. (Not something retarded like a timestamp) Users shouldn't have to clear cache. -dev
>>14526 >>14529 >Claiming to be a true oldfag >Dealt with 4cuck post 2014 >Won't specify which faggot(s) he has a problem with here You must be the goodest of goys. Cuckchan is back online, so why are you still here?
>>14533 I can confirm that it's not a problem with the cache. I have an old tablet that I use to browse some boards every now and then, and after the last update javascript is broken with any of the browsers that I can install on it. No watched threads, no quick reply, no list of boards on top, and not even backlinks to replies, nothing. Tested with fresh installs of Chrome, Opera, and Kiwi, so it's not the cache, and it used to work fine before. I didn't complain because I mostly use my computer to browse the site, and my desktop browser is updated and works fine, but since another anon already complained I confirm that the last update broke old browsers.
>>14526 It's ok to admit you're incompetent but you shouldn't project.
>>14535 could try replacing line 11 with if (api.isBoard === null || api.isBoard === undefined) api.isBoard = false; if you know your way around mobile debugging if that's it, I'd be really curious why you can't install a browser any younger than five years old
It's comforting to see other people are having issues with javascript running on the site. It stopped randomly and I haven't been able to get it to work since, but I least I know it's probably not anything I did.
>>14540 browser?
(33.81 KB 873x212 doublequoting.png)

i don't get the feeling that double quoting should do that
.moe won't open for me but I can use .se normally, is there a problem right now?
>>14543 Derp.
>>14544 Posting on .moe right now anon.
>>14546 I guess It's a "me" problem, tried using waterfox and nothing, but using tor does open it normally. I hope my shithole country is not blocking .moe somehow
It would be nice if smaller (not on the front page) boards had a way to advertise themselves on the site without having to resort to shilling and/or offsite migrations. 4cuck had banners advertising other boards below the regular banners, maybe that would be a good place to start.
>>14549 8chan already did this before. It was the called the Attention Hungry Games. Non-top boards were chose at random using some fun "tournament" simulating program and the winner would be advertised at the top. /sm/, the shota board, happened to have won when the THQ Nordic interview happened, leading to lulz.
(12.56 KB 300x50 Sega online.jpg)

>>14549 Something akin to Geocities banners like pic rel?
(61.20 KB 1280x720 AVGN.jpg)

>>14541 Fire Fuchs
(52.16 KB 673x767 1.png)

(13.89 KB 628x273 2.png)

(11.21 KB 635x236 3.png)

>>14538 Yeah, that's one of the lines, but all the ?. cause errors too. It's a really old tablet and the last version of Chrome that can be installed on it is Chrome 82, these operators were introduced in Chrome 85, so they just cause all the scripts to fail. It's easier to show it on an old version of Chrome for desktop so here are a few screenshots. Again, it doesn't personally affect me that much because I rarely use that tablet for browsing, so don't bother asking me to drop my extremely obsolete tablet that I mostly use to read mangos. I simply saw that anon's post and I wanted to confirm that he isn't doing anything wrong (besides refusing to update) and the last update screwed ancient browsers.
>>14552 waterfox? some ancient mobile version? the only reason things should be broken is either your caches are broken or the recent changes have used features too new for your js engine... speaking of >>14553 yeah, same ECMAScript revision as the nullish operators (2020) is it stuck with 82 because of android version support or not being able to run lineage or what?
>>14553 >filtering people over some syntax sugar kinda grim tbh
>>14554 Yeah, stuck on Android 4.4. Not that it matters, but seriously fuck Google, Chrome was officially supported until like 2021, but instead of releasing the latest versions, the last updates were just versions from 2019 with security patches, without support for any of the shit they forced on the standard.
>>14555 5yo browsers shouldn't be used to browse the internet.
>>14556 grim, I have a device or two that never got its full stated support either, so fuck other companies, too on the one hand, I think it's cool as hell to keep old tech alive and functioning in some capacity, but also >>14557 it can be a little dicey
>>14557 perhaps. shit still happens though, and you may need to get things done in an emergency. a chan isn't critical infrastructure but it's still a shitty attitude to foster.
>>14559 >chan
(31.61 KB 56x56 noooooooo.gif)

>>14560 oh nooooo my argument
>>14561 I mean there is no argument. No one is going to support software that no one uses. The fault is on the developer of the hardware not maintaining their ecosystem. Not being able to use outdated insecure software is a feature, not a bug.
>>14550 God, i completely forgot about that (the games, not the AMA). While that sounds fun, i would prefer a reliable way to advertise. >>14551 Yeah, something like that.
>>14546 Acid what's Codexx's 8chan related email? I'm trying to get the Custom JS activated for my board (/rwby/) but got no reply >>14256 I know /jp/ has a custom JS on a board level but have no idea how that was installed. Help?
at the bottom of the page where it says "LynxChan + Aleph", it'd be nice if their version numbers where present, this way at least if there is a slight down time which is update related it'd be slightly easier to elucidate
>>14564 codexx@cock.li
This is getting ridiculous, yes this happens on both .moe and .se
What's up with the TOS page? I'm allowing cookies for .moe and .se, but I still get that page every day, which nukes all the tabs I had open. Is it because my IP changes daily?
One of the nodes is having network hiccups and we may replace it tomorrow. In the meantime .se is up for testing.
Is the spoiler tag broken? Sometimes I tag a part of my text post as spoiler and it doesn't show up on the post as spoilered text and sometimes I tag several parts as spoiler and just one actually get spoilered. I have no idea what triggers it or not.
>>14568 >which nukes all the tabs I had open. Nukes? It doesn't just make you refresh them? I only have to refresh them, and then, only if I try reloading them all before re-accepting the ToS. Accepting it on the first tab to show it means I only need to reload that tab and the rest continue as normal.
>>14569 .se seems to work faster right now, but auto/live updates aren't working.
>>14571 The problem is that if I have multiple tabs open, all of them go to the TOS page, but if I reload them after accepting the TOS, they all go to the same thread (probably the last one that it tried to load) instead of whatever thread they were before. The only way to avoid this is to accept the TOS immediately after starting the browser, before it tries to load any background tabs
(22.15 KB 480x480 1429776232277.jpg)

>>14573 Well there's your fucking problem, you closed the browser at all. The session cookie expires the immediate moment the browser window is closed regardless of "remember where I left off" settings.
>>14573 >Opening a dozen tabs before going through the ToS message Your're retarded, but it is correct that those other tabs shouldn't send you to the wrong page.
>>14574 This is a solvable problem from site’s side. >don’t redirect to the .static page, respond with no-store >POST form to confirm >See Other location: [sic]
>>14570 it only works on single lines so that might be tripping you up
>>14578 I know it only works on single lines, but that's not the problem I'm describing. Say, I have a line with a spoilered part like this: >texttext text texttext texttext (spoilered text) When I hit reply, my post would show up as >texttext text texttext texttext text Or IOW, it's completely unspoilered. Or if I have multiple lines with many spoilered parts like: >texttext text texttext texttext (spoilered text) >text texttexttext (spoilered text) text texttext My post would show up as >texttext text texttext texttext (spoilered text) >text texttexttext text text texttext Or IOW, it's partially unspoilered. IDGI and IDK what triggers it either.
>>14575 Even if you only have two tabs open it will send you to the incorrect page. It's a bug that should be fixed.
The Texas anti-loli bill passed. https://legiscan.com/TX/bill/SB20/2025 FUCK.
(497.48 KB 480x270 lowly.mp4)

>>14582 Not much of a surprise, guess you better get your gun and fight for freedom.
>>14583 >Not much of a surprise I disagree. This has been purposefully avoided for decades for a reason.
>>5423 >>5423>>5423 >>5423 >Bug reports This may be known already, but if someone quotes the same post multiple times in a single comment, the original post gets forward-links appended to it multiple times (equal to the number of times it was quoted. This can be astroturfed pretty easily and fake the appearance of active discussion. Note the example of this comment. Four quotes, four forward-links on the thread's OP. Thanks, guys.
>>14585 Additionally this can happen which could be used in spam attacks >>>/v/1394240 >>>/v/1394256
>>14588 This change doesn't make sense. A Set is automatically de-duplicated. Which is why I linked the change where a Set was introduced for backlinks in the first place.
>>14589 Never mind, that code isn't looping over repliedTo.backlinks. I need to go to sleep.
>>14583 Obscenity was never protected under the first amendment. :^}
>>14591 This, but unfacetiously.
Why do I always get "Connection Timed Out" errors when I try to upload files larger than about 10MB? I want to share some high quality AV1 encoded videos.
>>14592 Being true is one thing, being fair is another.
>>14593 Server issues?
>>14595 Maybe? Side-note: WEBP is old and busted, when will 8chan support the new hotness that is AVIF images?
>>14596 im certain jxl should have support priority to avif
>>14597 i wish to believe too also, there's accept request header, but who's gonna build infra for that eh lol
>>14596 >avif pukes
Excuse me, but I got banned from /v/ for "being a bot," or something. Was this a stray ban? did I engage in botlike behaviour? What happened
(47.22 KB 1217x171 Untitled.jpg)

>>14601 According to the board log there's been about a hundred bans for being a bot today, so it sounds like you got hit in the crossfire. Appeal and maybe someone will see it, if not then welcome to 8chan. Perhaps try /bv/ in the downtime, which isn't owned by Mark but is, unfortunately, stone dead. Otherwise, zzzchan's /v/, which is marginally less dead.
>>14601 Are you on a vpn? You're probably using the same node that a spammer was previously using. Just shoot an appeal like the other dude said.
>>14602 >>14603 Thanks for the input. I shot an appeal and got unbanned a few hours later
>>14596 On the subject of file types, are SVGs no longer allowed? I could swear they were functionally posted at one point, but now uploading them doesn't work. A post will post, but no files found.
(76.02 KB 407x218 noa question.png)

Looks like IDs now persist between .moe and .se, but doesn't look like bans do.
>>14568 >What's up with the TOS page? I'm allowing cookies for .moe and .se, but I still get that page every day That's been the case for me basically always. I just use a userscript to redirect me from https://8chan.moe/.static/pages/disclaimer.html to https://8chan.moe/.static/pages/confirmed.html lol.
>>14582 >can't even get any laws related to right-to-repair passed >instead this is the shit that passes >people call this nigger-filled shithole a "freedom country"
>>14610 i mean, they do have the freedom to be retarded
how does this site store local data? I clear everything except whitelisted sites, it says just cookies here but it keeps localstorage and indexed storage too for other sites but for 8chan it always clears thread scroll progress and makes me accept the agreement on each browser restart
>>14613 tos is currently a session cookie, it evaporates on session which is what gives some mobile users problems if their mobile os aggressively closes apps scroll position should be session based, too aleph doesn't currently do anything special there tracking unreads aside from the thread watcher, which does save in localstorage 8chanSS stores unread position if you swing that way
Is it just me or has the site slowed down A LOT? It's working fine, just really slow to load. My internet is fine, cookies are good etc. etc. so it's not on my end.
>>14615 .moe is slow lately, but now .se is up and fast, however .se doesn't like to auto-update properly.
>>14616 well no wonder. se is h2, but something wrong is done with ws (probably broken reverse proxy). if it used sse it would be perfect.
Why was ownership of /girltalk/ transferred to me? I'll take it. I just want to know how or who gave it to me of all people?
>>14618 Some weird glitch happened a while back. I was given /tits/ and /mods/, both dead locked boards. Since they're dead and locked, it's a low priority issue given everything else going on. Same goes for /girltalk/.
>>14619 No, I will gracouiesly take /girltalk/ and make it into the best board it can be. All femanons please proceed to >>/girltalk/ I will make a safe place of autistic girls to talk.
>>14620 You gotta unlock it first.
>>14570 >>14579 >testing
>What did he mean by this?
>>14623 ...and the spoiler tag is not working (I'm using the first type, not second, described here https://8chan.moe/.static/pages/posting.html) . Can the dev pls fix this (spoiler tag randomly not working), plus Filter ID filtering whole chain of replies (no difference from Filter ID+)? They are very annoying.
Quick update, to clarify the current announcement. >.se is back, .moe has some issues .se is back but we have avoided announcing it because the config is still not 100%. We are trying something different, and that means we need to hammer out some bugs. Please bear with us while we work on things like websockets for this new configuration. >archival system activated This is a test run of LynxChan's archival system. Previously, I allowed globals to transfers threads to archival boards. This started as a stopgap to preserve GamerGate threads, and as a special case for some imported boards that no longer had the activity to sustain themselves beyond a general on another board. With the massive increase in generals after the recent 4chan exodus, this system has become too much for the globals to handle the workload of. I have enabled Archiving temporarily and will be keeping a close eye on how this affects things. Board staff can now utilize the Archive button in the dropdowns. >>14625 Can you make an example post of the spoiler issue and link me to it? I'll make a note about the filter issue.
>>14626 Well, for example that >testing post Or >>>/vyt/339984 And it's not just with greentext in case you're wondering because there's also this >>>/vyt/324543 ("beanpole nerdham" is supposed to be spoilered). There's also another instance of normal text not getting spoilered but I can't recall the exact post right now.
>>14627 Interesting, the markdown doesn't even retain it.I wonder if something is eating it. I'll see if I can reproduce it in testing. I have a hunch I know the cause.
>>14627 were all of those spoilers supposed to be at the end of the post?
>>14626 How are users supposed to find archived threads with this new system? All the archive buttons seem to still link to archive.today. People wanted an archive so they can browse past threads and relive key moments or find old memes and art they lost, this system seems to rely on going through backlinks to find them. There should be a separate catalog for them or something.
>>14628 Thank you. In case you need it, I'm on Brave on Windows 11 with picrel. >>14629 I'm not sure. I can remember a few posts with another line after the supposed-to-be-spoilered line but I'm not certain.
>>14628 >>14629 When I get this issue it's usually because I'm using [/spoiler]. I have very similar extensions as well. Just as a test let's see if this spoilers.
>>14631 >>14632 got a link to the catbox embedder? I crtl-f'd through SS/fullchan/-- and didn't see anything, though they'd be the most likely culprits imeji shouldn't be anywhere near it either theoretically no script should have a reason to modify input before sending it unless it was trying to juke wordfilters or something
>>14626 >>14630 I'd like a clarification on this aswell, what's the difference between this and archive.ph? Where do the dropdown archives go to?
>>14633 It's on sleazyfork but I'm using a modified version from the 8chanSS /t/ thread >>>/t/22548
>>14634 I believe the archived threads are stored both on 8chan AND archive.ph Example https://8chan.se/gacha/res/4.html This thread is no longer visible on the /gacha/ catalog and index, but is clearly still on 8chan, however, it is also on archive.ph.
>>14636 I see, so like the other anon said unless you have a direct link you can't access it on 8chan.
Bug Report: doom and board tags are being rendered even inside code blocks. I tried to post a patch for 8chanSS that adds hotkeys for doom and board tag blocks and the board rendered them. See below: --- 8chanSS.user.js 2025-05-25 19:31:36.982586942 -0700 +++ 8chanSS-1.49.0.modified.user.js 2025-05-25 19:39:41.761547019 -0700 @@ -3461,6 +3461,8 @@ { keys: ["Ctrl", "S"], action: "Spoiler text" }, { keys: ["Ctrl", "D"], action: "Srz Bizniz text" }, { keys: ["Ctrl", "M"], action: "Moe text" }, + { keys: ["Ctrl", "R"], action: "Board Specific text" }, + { keys: ["Ctrl", "F"], action: "DOOM text" }, { keys: ["Alt", "C"], action: "Code block" }, ]; shortcuts.forEach((shortcut) => { @@ -3517,9 +3519,11 @@ ["b", ["'''", "'''"]], ["u", ["__", "__"]], ["i", ["''", "''"]], - ["d", ["==", "=="]], + ["d", ["==", "=="]], ["m", ["[moe]", "[/moe]"]], ["c", ["[code]", ""]], + ["r", ["", ""]], + ["f", ["", ""]], ]); function applyBBCode(textBox, key) { const [openTag, closeTag] = bbCodeCombinations.get(key); [/code]
>>14640 DISREGARD THAT I SUCK COCKS it's choking on the [/code] tag in the code instead. Nevermind.
>>14641 why do you have 🔌🐰 besides Anonymous?
>>14640 >>14641 On that note it's annoying that some tags are greedy and some aren't. test[/doom] test [doom]test shows up like this. test test test >>14642 because I'm a gay retard who watches vtubers.
>>14643 ah, F12→storage→i think local storage→there should be a name entry, try deleting that
>>14626 Codexxo sexo
>>14626 Is there a way to search for archived threads if somehow the >># is forgotten?
(172.27 KB 768x1280 Asuka bath.jpeg)

FYI I'm doing work on .se today. Minus websockets, everything should now be working as expected but let me know if you hit any bugs while using it. I'm testing a hotlink block on it at the moment, but that will be removed later once I'm done fiddling with it.
>8chan tag greediness test If a tag is greedy, then it modifies as much text as possible, from the first opening tag to the last ending tag. If a tag isn't greedy, then it stops modifiying the text at the first closing tag it finds. >short tags: spoiler,srs,echoes,italics,bold,underline,strikethrough,slanted test test test test test test (((test))) test (((test))) test test test test test test test test test test test test ///test\\\ test ///test\\\ >long tags: spoiler,moe,doom,board,aa,code test test test test[/moe] test [moe]test test[/doom] test [doom]test test[/board]test[board]test test test test test test test
>>14626 I might come back once you finally figure things out. Since .se is the only way to access this normally.
I was planning to revive an abandoned board, and two weeks ago I sent my request to codexx@cock.li, but that email address doesn't seem to be working. It's not normal for a response to take so long, is it? I have a Gmail account, but I don't know if there's any problem sending emails to cock.li from there. I understand that the original cock.li no longer exists and was replaced by a "cock.li" that mines computers in a supposed "proof of work" that never ends.
>>14652 >\\\ This right here annoys the shit outta me. The FAQ shows it without the backslashes, but testing always results in a backslash.
>>14656 what annoys me is the text isn't even slanted what the fuck kind of false advertising bullshit is that
(51.87 KB 1024x576 1715460386635007.jpg)

>>14655 >I sent my request Just send it again
>>14655 I don't see why it wouldn't work. Just send it again.
>>5423 visual bug. I posted some images, clicked post and alt tabbed away. The post was fine but my reply button is stuck with this. I can post normally and refreshing fixes it but I still thing you should be aware of it. Posting from chromium without any active extensions (aside from ublock) if you need that info I also suggest that you modify /site/ on the home page have different font or boldness or something to make it stand out instead of burred
>>14655 A couple months ago i had reason to actually email someone from a cock.li and didn't get a reply, so i tested it with my hotmail and gmail account and it turns out i could receive mails at my cockmail but not send them. I dunno if it's changed since and i'd expect someone who uses his mail more than once a decade would have noticed it by now, but if not, that'd be the reason.
(186.10 KB 1144x287 mullvadbrowser_rwMgeotkOf.png)

>>>/v/1417422 It is extremely embarrassing that niggerpill has been able to post unimpeded for so long and that is why you should make me a vol so I can wipe these terrible posts already.
since .moe and .se keep trading on getting errors, have you considered something that links settings between the domains? make it a button like the other options
>>14664 Niggerpill was right in the end. About everything. Deal. With. It.
>>14665 The anti-loli bill just sealed our fate and the fate of all artistic expression. There is no need for this site anymore. Game. Over.
>>14664 Niggerpill was just a misunderstood prophet warning us about the impending darkness, despair, and desolation of the future. We all owe him an apology for not heeding his message. Our enemies truly did win, once and for all...
>>14664 Jannies are more lax on him.now that they are starting to realize he was basically right about everything, including the increasing pro-censorship sentiments of the general public. We spent 10 years fighting it and it was all for FUCKING NOTHING AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Is there even a reason to keep this site up anymore after we basically just got checkmated by the Texas anti-loli bill? Legit question.
(8.69 KB 427x215 msedge_0j5raYv2Xm.png)

I'm getting some errors like this >Error 503 Backend fetch failed
>>14671 Same, think it's only a .moe issue.
>>14667 >>14670 just stop masturbating to cartoons of children getting fucked I can only imagine how fucked up your life must be for you to make a priority of this issue no you are not an activist for free speech, you're just a creepy weird fuck
>>14673 GOATed respinse
>>14673 >>14673 bro could have sexualuzed actually legal characters but decided to be a child predator instead
>>14673 Rare 8chan user W
>>14673 girl you ATE with this one
>>14673 Why mfs be crashing out over a bill meant to stop epstein mfs? Like it cost $0 to NOT sexualize minors
>>14673 based....so.....fucken...zased.....
>>14673 diddy patrol is NOT gonna like this post
(386.83 KB 1317x2268 wow, the absolute samefagery.png)

capping the samefag-athon for posterity
>>14683 why are soyteens so dumb lmao
>>14685 not a clue, sometime with age comes wisdom, but it is clear that many don't even attain that, so i suppose that when one is young they haven't even had the chance to grow smarter, what i worry of them soyniggers is the new favour of troll remorse they will bring forth within themselves, humanity's potential is unbounded, & they are peering in places that we hadn't even fathom could be reach, for reaching near them was already retarded beyond what we wanted to accept as believable
>>14651 Is there any chance that you guys would be making anti spam tools a priority next? /v/ has been experiencing a spam attack for weeks now, which includes images of borderline pizza.
(1.57 MB 3000x6000 tamers is sharty.jpg)

>>14685 They are literally groomed tranny glowniggers and old gay Jewish feds. >>14686 They aren't teenagers. Picrel.
<>14690 oh, (you)
Why is RUboard locked for posting? I just had the prfect question to ask them...
Why am I getting a captcha request and when I post anything I get "wait for approval"? This has not happened before today.
>>14694 Ok, never mind, It seems like I just suck, Posted the thing on the /vore/ loli thread and it worked. Posting it on the actual AI generated thread causes a block.
>>14695 bad luck, sometimes it can take ten seconds, sometimes ten minutes
(5.03 MB 1280x720 I am so lonely.mp4)

>>14697 Is there some reason you decided to post there here?
(8.09 MB 1280x720 better.mp4)

>>14697 Audio was weird, I fixed it.
The board logs should be updated so that if a mod closes a report while simultaneously banning someone, the logs should also show the ban and not just "Mod has closed the report".
Just wanna let Acid know there's a weird glitch with replies. If you select the same post twice I.e. >>14697 >>14697 Then it appears as if you've replied twice even if its only 1 post.
>>14702 It's been known since the update.
>>14704 it's also fixed in the next update
Um uh why does it say .moe intermediate downtime due to Ddos on TKR ? ?
>>5423 Why do I keep seeing these threads whose subjects I filtered? Like, even after reloading the page the threads are still there, not hidden like they should be. Also, and I meant to ask about this for a few years now, why does "Hide Post+" not work? When I choose to hide a post it's because I don't want to see it, nor its replies or the replies to those replies, and yet I do see them still. I use Firefox, in case that matters.
>>14707 >Also, and I meant to ask about this for a few years now, why does "Hide Post+" not work? >When I choose to hide a post it's because I don't want to see it, nor its replies or the replies to those replies, and yet I do see them still. To elaborate, what happens is that the post I use "Hide Post+" on is hidden, its replies at the time I'm checking the thread are hidden too, but then I might close the tab and check the thread again some other time, and I can see new replies linked to a post that I hid, which makes no sense.
So, is .se a honeypot now or why is it pointing to an IP in the fucking UK?
>>14685 The average Soyteen is underage, and the average teenager is a tard. The original Soyteens aren't the same as the current underage group. The nu-teens that still post there but aren't underage are mentally retarded and have arrested development from zoomer irony poisoning. The few of-age Soyteens also crosspost to Kiwifarms, and while not every KF user is a shit person, the average Soyteen that posts there acts like what the average Bluesky user thinks it is.
(129.76 KB 1248x1824 Asuka bar 90s.jpeg)

>>14709 It doesn't point at anything. .se is behind a large CDN with entries all around the world. If you look at .se's network information you're seeing their network, not our stuff. Setting up with them was more complex than Cloudflare was which was the main reason why getting .se up and running took a while. Our network nodes are custom, so I had to set up a special one from scratch just to work with their stuff.
>>14491 How exactly to access hidden boards? On .se?
Heads up .moe just started getting a secure connection failed error, .se is still working.
>>14707 That general should just be renamed to /v/ lounge since I've never seen them discuss any videogames. Just porn dump and chatting about random shit. Also, did .moe just fucking die?
>>14718 This. Chromium flips between "error empty response" and "connection reset". Tor says "this page isn't redirecting properly.
>>14717 >404
>site is kill >admins silent Admins are being v& for anime girls raising their arm... F >>14711 Please stop encourgaing the psyop that government agents are young teenagers trolling online. >>14690
>>14723 >>14725 The hell is this about? I'm using the site right now.Disregard that, I suck cocks. We had a node go down a few hours ago. Looks like a technical issue because most of it kept working but the actual proxy part died. Fixed, and will look into the cause.
Edited last time by Acidadmin on 06/03/2025 (Tue) 03:26:38.
>>14726 >.moe has intermittent downtime due to DDoS I'm tarded nvm. PEBKAC
>>14729 ID changed due to IP change
>>14726 Acid, did you update the site again? Using Default CSS no longer gives a board CSS like it did before. On a different note, is Codexx AFK? Their email hasn't changed right?
oh, codex, could you open up an issue for that latex preview thing that 4chan has on /sci/(quick reply box, on the top left, also it has an on hover tooltip that says "Preview TeX equations")?
>>14714 >.se is behind a large CDN with entries all around the world. If you look at .se's network information you're seeing their network, not our stuff. Is this going to be the future of all the domains with all the bullshit laws popping up all over the world?
>>14733 Not the plan, but we have a policy of not having too many eggs in one basket. We always test out new options when they become available. CSS is changed for a day because of the Hispachan anniversary, courtesy of Codexx.
(456.77 KB 1536x2048 ComfyUI_1_144.jpg)

>>14726 KEK. ok cool glad I'm not going crazy. Have some asukaslop.
The new "Default CSS" is atrocious (The red text and iconography especially). Even if I choose a different one, like Board CSS or Yotsuba B, I get flashbanged by the hideous default one every time I refresh or load a new page since the chosen CSS doesn't load immediately.
Just noticed that someone is spamming archive.ph with fucked up pics again, probably in order to get the website banned again. https://archive.ph/8chan.moe
Is there any way for us to get a feature where user deleted posts show up differently than ones deleted by volunteers? We've had some minor melties with people deleting their own posts to try and falseflag.
(5.73 KB 225x224 Homer.jpg)

>>14738 This shit again?
>>14738 People who do this are legitimacy insane. What compels someone to not only save shit like this, but post it in and effort to get a website where a mad was bad mean to them?
>>14739 Logs are public. So, such retards only out themselves.
>>14736 Seriously, is there a technical reason the site isn't just sending the CSS the user selected instead of stacking it on top? I'm pretty sure that's what every other website does.
>>14745 no, not really. sending a well formed html is a lost art and you'll have to wait for js to arrive and do its thing. welcome to the modarn web, enjoy the succ.
Seems like autohiding deleted posts on .se is broken The auto refresh on .se is a bit janky too, but I assume you are already aware of that
Can someone explain what clicking the Archive button in the dropdown of a thread and what clicking [Archive] near the top of a page actually does? From what I can tell: Dropdown archive: Locks the thread and basically deletes it from the catalog? Does this still reply on archive.ph? [Archive]: Redirects you to archive.ph where you can archive your thread manually? So in other words if a Board Volunteer archives a thread, they need to create their own list of archived threads or else no one will know how to access them anyway? *** Also, custom board CSS from before a week or so ago aren't going to work anymore due to recent website changes? Is that it?
Not that it's all too important but what happened to /zoo/? I just noticed that it was gone. Does it have to do with the ddos?
>>14750 Yeah I noticed it was gone from .se Tor is also giving the same "this page isn't redirecting properly" error that .moe was getting when a node went down.
Where is this new archival system. It's not the same as the archive.today button right
>>14752 look in the mod view forms at the top of a thread or in the postmenu dropdown
Mod question here: Merging an older thread into a newer one, makes the older posts supercede the "first" post in the new thread. Is there any way to get around that? I know it has to do with post count, so there's probably a way to do it, but I don't know how.
>>14754 you don't normally only work around is beg beg begging a global to move it to another board and then back first so it gets a whole new set of post numbers that'll be newer than the new thread maybe
>>14755 Oh.... well that's not happening probably then lol.
>>14418 Can you process board claims, please? I sent an e-mail to your inbox the other day and havent heard back.
Does the current archival system have a limit on how many threads it can hold, or do they remain in the archive forever?
I really, really, really hate how the gacha threads and generals that moved here from 4c devolved into hugboxes and circlejerks. Feels like now I got two extremes of threads with the 4c ones that are shit up nonstop and the 8c ones where everyone's holding hands and telling each other how perfect they are and how great everything is because the only one that would ever say anything bad is a shitposter or a raider. Why does everything have to deal in extremes? Why can't there ever be a middle ground that's neither one or the other?
>>14762 That's weird, I use both and they are the exact same with the sole exception that cuckposting, twittercaps and sales posting is posted on 4chan. So what you're saying is you want more unchecked cuckposting and twitter posting. Hell copyschizo in /gflex/ is still doing his thing on 4chan while he murdered here.
>>14757 Still waiting.
hey acid, just cause it came to mind, how are your clotting issues?
>>14762 >without constant trolling and schizos shitflinging everyone just gets along fine wow I hate this
>>14732 anyone?, also from going here https://emulation.gametechwiki.com/index.php/Main_Page i discovered that 4chan has a feature in such that text can be had on the url after the board as in https://4chan.org/vg/emugen which then the site takes & turns into https://boards.4chan.org/vg/catalog#s=emugen which does seem neat for keeping up with threads with a given subject(& i haven't tested but i presume the "s" in "#s=" could be an "n" for filtering for the name field instead), i manly want this so that people have less of a fucking excuse for not getting into the gamergate thread once it's of the 1st page, but it is clear that everyone benefits from this feature, thanks for your time
>>14767 catalog.html?s= works (i forgor the .html) the paths will take a backend mod to redirect to it, but that's on the tracker along with board/###### redirecting you directly to a post
>>14766 >Gets along just fine >Someone complains about not liking something >Suddenly a couple spergs start flying off the handle about how it must be bait or only trolls looking to break our unity would dislike the perfection that is our game >>14763 Where in my post did I say that? This is exactly what I was talking about. You're all extremely ill and start screaming bloody murder the second someone expresses any bit of negativity. None of you want an anonymous imageboard, you just want a happy place to circlejerk in and shut out all the opinions you disagree with.
>>14762 I personally recommend discord and reddit, perhaps twitter
>>14770 dissent can be prosocial if you're not socially retarded you just sound like a cunt tbh maybe try not being assmad and antisocial about it next time
>>14769 oh, good to know, i thought it wasn't a thing since i whas also missing the .html, d'ya happen to know a board in which the "?n=" thing can be tested?
>>14773 that wouldn't be implemented since the catalog search is just all text and s stands for search if field searches ever get added it'd probably be another url param
>>14774 ah, ok, on a related note writing that post made me remember that one of the 4anons that came here was wondering if our [code] had language specific syntax highlighting, & that i found out that some sites do have that, case & point https://ourchan.org/faq.html , so that's something that could either implemented, or properly stated on the help page that it can be done if it is a thing already(as well as specifying what languages are supported)
.se seems to be down
Looks like .se is down, I hope it will come back soon.
(35.35 KB 800x450 (You).jpg)

>>14762 Woah, it's like the peeps at /gacha/ decided to stay here to get rid of schizos and finally have some good time!
Any word on .se/zoo?
>>14501 I wrote a better thing that just shifts the ID color away from luminance 0.675, this makes contrast no longer an issue ever, but of course now it requires extra computation and requires work from the server side if one wanted to integrate it into the site
(19.83 KB 224x770 simple ID.PNG)

>>14783 With a bit of CSS to annul the site's styling... it don't look too bad but certain colors still contrast with the white text color.
>>14784 the script is not working properly on your end, 4ff7d5 should have dark text. try temporarily disabling whatever other script is manipulating IDs then refresh
For once, .se isn't down because of us. :P The host has had some kind of significant failure. It seems most of their network is offline, possibly from a cyber attack of some sort. Even their own website is being spotty. We've informed them and are waiting for the resolution, but its big enough that they certainly know about it already.
There's something wrong with Moe. It first asked for a verification check, and after I eventually closed it because I am not waiting 5 minutes for the countdown to finish, I noticed that it wouldn't let me post anything at all after clicking Reply. I can still post on Se though, but that's inconvenient because pictures aren't loading properly there.
>>14788 Good to know, thanks for the info.
>>14789 nothing's actually broken, it just has no feedback what so ever there's a couple issues with it >it's multi-threaded, but relies on navigator.hardwareConcurrency so tor browser, brave tor windows, and any firefox with resistFingerprinting gets 2 some might consider that a feature, but in practice it means they can take longer than they should for no real reason when users abusing private browsing should be targeted by other means maybe a setting to override that >there's no feedback in the bypass popup or the posting forms when it's actually validating the average user doesn't know it's doing anything at all unless they hear their fans spin up, especially with the captcha continuing to rotate probably easy enough to slap a spinner and updating message over all captcha images and pause the refresh, which is kind of a wasteful idea anyway >it also doesn't show anything at all if you generated your bypass, but haven't completed validation yet and try to post again solved well enough by above probably >it doesn't save state so if your toaster is having an unlucky day and that particular solve would take you ten minutes, you can get stuck in a loop of thinking everything's broken when you only have nine minutes of patience I don't see why it can't resume, which would also be apparent if the spinner message includes the current count of solves
>>14791 This, I get the idea behind it, but it is something that will drive away new posters. Things like this should only be enabled by the system on a case by case basis. It is literally worse than 4chan.
>>14791 Adding a "proof of work verifying in progress, please wait" text would be good.
>>14793 it already does that for the popup and people still rightfully think it might not be working
>>14794 not my problem
>>14788 Once again asking if there's any updates on anti spam measures, there's a faggot on /v/ spamming Jailbait images
Besides /gacha/ and /vyt/, 8chan seems really dead, like dead... dead.
>>14800 guess you have your work cut out for you, then what vibrant community are you going to start?
>>14801 I'm a very unlucky person, every thing I've started has failed. How do we get more people in here so I can actually read new things every day and have discussions and share images, video and text? I don't play gacha or watch vtubers...
>>14802 well for one, stimulate discussion where you can even if a thread seems dead, interested people might still have it in their thread watcher and a whole new line of conversation can spawn and for two, grab a couple friends who are dissatisfied with other places and post enough bullshit you can farm it to link it to other people and entice them to join in
The 8ch favicon doesn't seem to load on .moe, but does on .se.
>>14804 it loads well for me, BUT the moment im given a "slow down asshole" then any further .moe pages i open/reload lack the favicon, might also happen on .se but i haven't tested
>>14802 Post a lot and shill the board you like in other boards and outside 8chan. >>14800 It needs more exposure
>>14800 >other than the botted gambling/simp advertising boards, 8chan seems dead Good
>>14806 >It needs more exposure it will never get more exposure than it got when 4chan was down and all that showed is that it takes a captive audience to get them to use your site. but like the rest of the western retards co-opting and bastardizing existing properties you can't take responsibility for your own failure and instead blame the audience for it and continue doing the wrong thing hoping that the modern audience you're appealing to will miraculously appear and prove you right.
The main issues is the internet being so centralized now. All the big sites do is talk about the other big sites and link to each other. 4chan IS mainstream and one of the "islands" on the internet. It's hard to break in without resorting to botnet spamming other islands or being backed by a billion dollar tech company. 4chan is not blacklisted by google, 8chan is. 4chan is also not as alive as people think, you could removed 98% of the boards there and site traffic would only drop 1%.
>>14814 everyone decent hates the big platforms so there's potential there there's less potential in them having anything worthwhile to talk about internet and the world's kind of a fuck these days
>>14809 8chan had too many lingering issues when the hack happened: lack of features, servers being down, bugs. It's gotten a lot better since then, thankfully, but too late to keep any momentum going. Maybe a dozen or so people still stick around for the slower, higher quality threads but the majority have gone back to their interracial porn and schizo spam. Which isn't to say that it's a bad thing, just that the rhythm of posting has really slowed down. I have posted in threads on certain boards like a week ago, and nobody has responded, the catalog still looks exactly the same.
>>14818 Yeah, that's generally true, but at least there's some more posting than before. The smaller boards were lucky to have a few posts a month, now even shit like >>>/futa/ has 100 or so posts in the past few weeks even if there's only a few IPs involved. It also helps to collaborate with other imageboards that formed in the wake of 8kuck going full retard. For example prolike.woah >>14809 You sound angry about something more than just imageboards not advertising. You're not wrong that 4chan's exodus should have been capitalized on but like the other anon said, 8chan was caught with its pants down; it's not like 4chan going down was an expected event, and the admins had to scramble to slap shit together. the funny thing is that even with all it's issues, 8chan.moe is easier and better to post on than cuckchan has ever been
>>14809 > and all that showed is that- The dead internet theory is true and the people willing to engage in legitimate discourse are not that numerous and are almost all here already.
>>14818 8ch still has even pretty basic missing feature issues and my >>gacha general stayed here 60/30 on activity in spite of that, its at least 50 real human beings posting per thread possibly twice that depending on how often people swap ID which feels hard to judge. i can only speak for myself but i at least lurk a bunch of unrelated threads, too. its worth pointing out the recline of 8chan isnt necessarily back to 4ch, i also picked up other sites with the great shitshow, and if 8chan dies im way more likely to use them more than 4ch at this point.
>>14820 the average person has no idea any place that isn't big media (including 4chan) even exists at this point
>>14823 >>14823 Linking this bug report, and also once again begging for anti spam measures
Any chance of putting an auto refresher in the Latest Postings page?
>>14824 websockets not being set up on se is known as for the latter >>14825 update after next probably currently a part of measures in testing
>>14826 >websockets not being set up on se is known Ah thank you, also I do hope there's more than an auto refresher that can be implemented, I understand it's a hobby site, and this is probably a lot of work. But unfortunately I think this negroid is just going to keep escalating like he already has with his glowie material spam, which is why I've been asking.
>>5423 What's the difference between using 'Unlink' and 'Unlink and delete' on a file? Does the latter remove the image from the server while the former only removes the file from being associated with the post?
>>14788 Hey Acid, neither /vyt/'s owner and volunteer are awake, and there's pizza of the cheese variant on the catalog. Mind taking care of it?
just wanna say thanks for including GME in your banner rotation for /biz/! Can anyone please explain how to change my sticky header's link collection? Like how do I customize it? Couldn't find the setting. I don't wanna see what I see currently. Would like it to even just have one board's name or a few.
>>14833 you can just favorite the ones you want to see (star) and #navTopBoardsSpan { display: none; }
>>14834 favorite it from the boards section? it'll automatically rewrite the header to include only favorited boards?
>>14835 favorites go at the end of the list in their own section #navBoardsSpan so the top boards list can be hidden
>>14836 i have biz and pol favorited but still have lol and 2dblacked on my board list like wtf how do i get rid of that shit i only want pol and biz there and maybe v
>>14837 then go unfavorite them? or set savedFavoriteBoards to ["biz", "pol", "v"] in local storage
>>14838 oh man im not a coder i don't have them favorited, they just seem to stay there on the sticky header and they always have, i just cared to say something about it today
>>14839 right click -> inspect > storage or applicaiton tab -> local storage it's just a string you can edit if it's not in that but still on your header somewhere that isn't the top boards then you're using some script that's doing it
(243.10 KB 2558x1336 help me.PNG)

>>14840 how do I check for unwanted scripts? I just favorited a bunch of boards and followd your instructions it's always been like this ever since I came to the website too. weird.
>>14841 put #navTopBoardsSpan { display: none; } in CSS here
(83.52 KB 600x400 ryokan WAGMI.jpg)

>>14842 OMG YOU ARE MY HERO! IT IS SO FUCKING CLEAN RN. HOLY SHIT THANK YOU SO MUCH PRAISE BE TO ALL THE GODS THANK YOU SO MUCH. I hope you own bitcoin and gamestop WAGMI
(543.34 KB 2558x1321 helped me.PNG)

>>14842 thank you 🤍
Sirs what is the status of .se/zoo ? It's 404
There's been a sudden spike in CP spam. My board has gotten 3 of them over that last 16 hours after almost two months without spam.
>>14848 (Me) Looking into the ASNs of the posts not made from the onion, they seem to all be under "Green Floid LLC". Here's a list of all the ASNs I've found that are associated with the company. >59729 >21100 >15626 >204957 >50979 >40622
>>14848 it's a cuck from 4ch/vg/ trying to make this site look bad
>>14850 4/vg/ is such a cesspit that I don't need any proof to believe this statement.
>>14849 >>14850 The ASNs of /v/'s spammer are different. Are the images explicit? Do they include some sort of advertisement?
>>14850 The pizza ads and the cmodel/scat spammer are two different things
>>14848 >>14853 We've had an uptick on my board too. It was a daily problem a while back until I sat down and looked at the ASNs they were using, then banned the ones that we had no regular posters on. It became rare after that, but for the past week or two it's become a daily thing again. There are two styles of posts, the most common ones are ads posted to the catalog with explicit images and random link shorteners or redirectors. The other style is someone will occasionally drop a non-explicit image with a link edited into it in one of the faster threads. Off the top of my head, I don't remember any of them coming from those Green Floid ASNs, but they're always datacenter/hosting ASNs. There was one instance where one came from a Level3 ASN, and another where one came from a Cloudflare ASN, for what that's worth.
>>14856 It is at the very least not the same MO from /v/'s, but I wonder if it's somehow correlated.
>>14848 It seems to be hitting other imageboards too, not just this site
>>14856 >>14858 whatever it is has vpses to burn hungarian and swiss so far compromised or a budget is left up to the reader
New wave a little after the top of the hour. The spammer seems to largely be hitting the top few boards every few hours, switching up the link shortener and VPN each time. The exception was the Greta image with mega links, which showed up on /b/ and >>>/trash/58364.
What is this supposed to do? It just hides a single image.
(141.83 KB 480x360 Dummies.webm)

>>14861 It's the hide file button, you stupid fucking retard.
Quick Suggestion >picrel I mentioned an anon twice and it came up as being replied to twice, beside their post header. Could we fix this to it being replied to (Once) even though it was mention (Twice)?
>>14861 Why the confusion? Did it look like it would do more than that or something?
>>14863 Dumb time wasting suggestion. Sorry. >>14862 kek. chans ARE the dummy neighborhood.
>>14848 What's "CP" stand for again?
>>14868 Also is that the reason you guys got this following thread repeating thrice lately?: "Can we get a single AIslop board going? I'm sure admins might coordinate if enough people agree. Sloppa has a high volume so the resulting board would never want for traffic and in return people whose boards are corralling it towards there could get shared custodianship to handle it all."
>>14863 already fixed in next update
>>14871 ETA?
>>14871 Codexx send the cooked updates to us we are starving. Unless theres a huge bug
>>14873 STARVING? EAT ZE YUGE BUG
>>14865 I was hoping it filtered the image hash so I'd never have to see it again.
>>14875 When the same image is posted in another thread it has the same url, so you could block it with your ad blocker by right clicking it.
Is uploading images on .moe slow as molasses for anyone else?
just posting here in advance to let admins know that the spammer on the Blue Archive thread on /v/ will escalate things sometime in the future (he's currently having a fit on 4chan) you might want to think about better measures for when he eventually tries something
>>14877 yeah, so is loading pics & vids
>>14867 >>14867 i disagree, its relevant
>>14878 What is his deal again anyway?
>>14881 That's a good question. Hates Blue Archive and doesn't want it discussed anywhere is the simplest way to put it.
>>14882 All things considered I respect the nigger for attacking gook/chinkslop.
captcha "Please wait for validation" very aggressive on cpu, can't post
a suggestion for the thread archival system >>>/v/1469635
Does 8chan have an archive or are old threads gone for good?
i think i just saw on the gamergate thread that loading the page while a new post was being made(i believe) somehow sets the tab thing that says how many new posts there are as the number of all the post in the thread
I'm new to 8chan, is there any way to have post reply content appear below the parent post, or be indented in some way when using a browser similar to how the Chance phone app offers? I've found the 'bottom backlinks' option but I still find myself preferring to use the app. I tried Fullchan X but haven't been able to find any userscripts that offer this functionality.
>>14888 I believe 8chanSS has a threading feature.
>>14889 Aha! Thank you! 'Quote Threading' was the option I was looking for I think. This is great. I felt pretty stupid sitting in front of my computer and wanting to pull out my phone.
>>14884 it stops bot spammers
>>14886 Assuming the old threads haven't been deleted, they're still accessible in a read-only state if you have the post number to them
Oh I see what that anon meant by condensing (you)s. If someone (you)s you 2 times, it shows up as 2 replies.
>>14893 >>14893 Like this, right? >>14891 More like slows them down and makes it expensive to spam simultaneously or in quick succession.
>>14894 >>14894 Yes that's what I mean. Sorry anon that brought it up, I didn't know what you meant. Also you are correct it doesn't stop them, but makes organized shilling more expensive.
>>14894 >>14895 Also if you have an old computer it makes it sound like you're channeling spiral power to kill Lordgenome.
>>14896 I know, right? It's awesome. But at least it's a one time thing.
>>14896 It's not a problem if you aren't a troll or IP hopping on purpose.
>>14738 That fag is still going I thought the site blocked images from being archived
(110.96 KB 887x413 this is fucking retarded.jpg)

Why does pic. related keep happening? I can not work like this.
>>14900 crosslink the post
>>14900 and if you refresh, is it fixed?
>>14900 >>14901 here you go: >>>/v/1472953 One of these should work, I hope. There's also some follow up discussion, most notably: >>>/v/1472976 >I think it's an auto-refresh issue, since it's correct if you reload the page. >>14902 >and if you refresh, is it fixed? indeed.
>>14905 yeah something to do with the js construction of the post there's other weird shit all across the website because templates weren't a concept that existed ten years ago apparently
(146.28 KB 200x200 1a9945ded1ab8565e09a6b5d2.gif)

>>14906 I see. Oh well, there could be worse. Probably not the top priority issue anyways. But who knows. Maybe someday someone might fix it anyways. Good luck and have a nice day. *peace, *peace
>>5423 Hi, asking again whats the difference between Unlinking a file and unlinking + deleting a file Does the latter remove the file from the server and the former does not? If someone replied I probably missed it, sorry. Also, if possible, it would be nice if there is an option to Ban and delete + unlink by ip/bypass. Asking because of the faggot on /v/
>>14908 could be wrong, so grain of salt here unlink just removes the reference to the file from the post I think files that aren't referenced in live posts get garbage collected at some point, but not 100% sure how that goes board vols can't delete posts or media currently as far as I know if it needs hard deleted from the server, it needs to be globally reported so there's not really a good use for unlinking before deleting the post except not seeing the files in the trash bin, which hopefully you wouldn't if the globals are responding to the reports and there's often not much reason to open it beyond investigating an issue or going back to globally report
>>14898 Or on Tor and occasionally have to close your browser. I do have a bit of a bug report related to that now that I think of it. A couple of times over the past week the validation thing seem to get stuck. I'm not sure if was just my computer or what. I could go to another thread and post normally so that means I had actually created the bypass. Maybe it was some sort of lag or disconnect thing that only manifested when TAPS was set really high?
>>14910 if .moe on tor, probably hit a 404 when nodes switched
>>14909 Well fug ;-DD
I've recently become unable to access the site through my home IP for some reason. The connection just times out. Everything works fine if I use a VPN though. This is just a hunch, but are global mods able to ban people from viewing the website like this? If so, you may want to check the logs of your recent recruits for abuse. It's probably just a technical issue though and I'm being paranoid for no reason.
>>14910 Check your CPU usage when it's frozen. If it's still at 100% you probably just have a slow CPU. Also I think tor has a double challenge or something. (source: I made it up)
>>14916 torbrowser does in a way since for privacy reasons it can't report your actual core count
>>14915 It could be your ISP blocking this site. Try switching your DNS to Cloudflare's or anything else.
>>14919 Looks like that worked, thanks. I'm using Metronet, for reference. Don't know if anyone else with that ISP is also having this problem.
Where can I find the moderation log with all the reasons for post deletions and stuff? I remember there being a link to it somewhere but I can't find it now.
>>14925 Thanks
>>14922 >user account passwords, email content, and IP addresses were not compromised Wow, it's fucking nothing. Anyone using that site is a retard and deserves it anyway.
>>14915 >This is just a hunch, but are global mods able to ban people from viewing the website like this? No
>tfw VPNs are blocked Is that why the CP spammer is gone now?
>>14933 Not gone unfortunately
>>14933 Are VPNs completely blocked now? Someone asked this question on my board and I told them no because as far as I knew they weren't.
>>14937 >>14933 I'm posting through a VPN right now
>>14933 The CP spam has definitely been burning a lot of VPNs, but I don't think they're totally banned.
It happened again. It stuck, didn't go through and then couldn't post on any thread anywhere for a couple of minutes. When I finally got a post to go through it seems like the first attempt to create the bypass worked and posted the inital post while I was in the other tab. Then I made a third post. It went through AND THEN spat out an error:bypass not found after it had already posted. This really seems like a synch issue to me. >>14916 >If it's still at 100% you probably just have a slow CPU It'll do that reliable even normally when it goes through so that's not it.
>>14915 try changing your DNS. Lots of phone users can't access the site because default phone DNS doesn't recognize .moe domains. >>14927 >you deserve to be hacked for using non megacorp email services kys
>>14941 as best as I can tell, the issue is your impatience
Is .moe having issues for anyone else? I get stuck on the TOS page.
>>14959 Try going to the homepage first instead of a thread.
Is it possible to add live updates to the latest postings page?
>>14966 plan to
>>14967 server sent event status?
>>14968 no idea what you're talking about
>>14969 using server sent events instead of websockets since sse does not do an upgrade it works over h2, meaning it will save a connection at ip layer and won't need the different port nonsense and, if served with a self signed .onion cert, would work over tor
>>14970 oh, yeah it's been considered probably beyond myself at the moment personally and the todo list is very long
>>14971 would you kindly take a look at these? >>14732 >>14885 >>14887 thank you very much
>>14971 i feel you. server side implementation is like 100 lines with zero libs (well, in go anyway) but then inevitable questions like where the connection is held and how things are multiplexed for different tabs start cropping up and life is no longer so easy. although a js worker is already in use, so that building block is there.
>>14972 ok >>14732 this would be so far down the list of priorities that it'll be 2050 before it could be gotten around to unless codexx personally has both time and interest for it or someone new wants to contribute to fix their pet issue >>14885 been on the list of things to think through before turning into issues currently threads don't even lock when they hit post limit (which needs a backend mod) and I need to test if moderation bypasses locks it's probably best if it just disables the posting forms and clicking anywhere on them throws the popup >>14887 it's probably three piles of spaghetti stacked on top of each other that barely make sense like thread refreshing and that bug itself a very minor issue that clears when you scroll to bottom tab titles in general need upgraded with you markers and configuration a lot of little bugs like that seem like they aren't hard to fix, but Aleph is barely sane so when you go look at it, your choice is either another hack on the pile of ten year old hacks that has a chance of breaking some other arcane incantation or rewrite a whole section of functionality to something reasonable
>>14967 I know this is probably gonna make it more complex, but is there a plan to make the post show up ASAP on the latest postings page, but delay it from showing up in the thread for a few seconds? I want to be able to take down some spam as soon as possible before the users see it
>>14973 it'd be nice to do it in a shared worker and just emit events, yeah, but shared workers supposedly still don't work on mobile chrome because... 🤷‍♂️ out of my realm of experience
>>14975 no, but that could theoretically be possible depending on how hackable that part of lynxchan is to add an update delay before adding posts to the thread object I don't think there's a board model, pretty sure that's just stored as a property on the thread, so not possible for that it already has issues actually adding posts to the thread on time and getting out of order it would be a board-wide setting and make a fast board feel like shit unless it was like a three second delay and you hit latestpostings every second ideally that would also use sse to just send them to you as it sees them, but, well
>>14977 I see, thanks
>>14976 at WORKPLACE for notifications i've resorted to tabs doing postMessage at intervals to figure out whether the one holding a connection was still alive and if it wasn't a new one would be elected via randomly delayed message from each tab. of course, the feature scope was a lot narrower than here. super rickety but worked.
So, some URLs break due to the markdown/bbcode parser, like this one: https://x.com/cucucu/status/1936401570910113793 because it has double underscores. I therefore humbly suggest having the parser ignore tags in URLs (would be the most user friendly), alternatively maybe a specific URL tag we can use or a tag to disable all other formatting.
>>14980 Forgot to put this for clarity: https://x.com/cu__cu__cu/status/1936401570910113793
>>14980 already on the tracker not sure how hard that is to actually fix considering how "special" everything else is it might be as simple as looking for link tokens first
>>14980 if zero width assertions and change in semantics is ok it could be changed to only work when a word is surrounded by underscores /\b__(?:[^_]|_[^]_)+__\b/g.exec('before__fails__ __fails__after __passes__') if that's no bueno then a tokenizer+lexer should be used instead
>>14983 those are valid shitcunt should work lynxchan already rolls some manner of parser, but that shit's generally above my paygrade it might be better as a mod to just bypass the parser entirely by pulling links out before hand and replacing their safe identifier after
to be quite honest I would replace the backend with another one written in Kotlin instead of trying to wallow in Aleph
>>14984 oh dear, yeah it's not the best. i'm looking at https://gitgud.io/LynxChan/LynxChan/-/blob/master/src/be/engine/postingOps/common.js#L577 if that's correct. massaging already escaped html, oof. when i did an implementation of something like this i had an array of objects that contain a regex and first match offset. conversion with lowest offset is applied. it constructed a separate object tree that was later serialized. nesting was done basically by recursing (for em, strong, url within spoilers).
>type localStorage.postingPasswords into console >20kb output >this gigantic JSON is parsed every single time you call `postingMenu.deleteSinglePost` what the fuck
>>14989 it sets a password for every post you ever make instead of just falling back to whatever it generates for a default as if anyone ever sets a unique password per post or even can
>>14990 I would probably just allow deleting a post with the same bypass it was made with, when someone deletes a bypass by clearing cookies it will wipe the deletion password anyways
this part in api.formApiRequest seems like it has a typo, I think you meant this: (typeof parameters[entry] !== 'number') and not this: typeof (parameters[entry] !== 'number')
>>14992 noticed it, but almost nothing I've looked at sends numbers let alone 0 as an api value and you never know what retarded shit will break that was subtly relying on it without going through hundred different mentions of it I think one of the only things it might be doing is make it impossible to apply a global role of 0 (root, iirc) via the gui if the gui even allows for that
I noticed that selecting "Delete by ip/bypass" also deletes posts in archived threads, this might be too much/too powerful (the ban UI generally needs a rework to be less error-prone anyways) since people can probably track down a banned user's post history across IDs
>>14996 it clearly says what it's going to do long time users shouldn't be doing things worthy of getting their entire history wiped anyway imo it's on BOs to train their vols properly as that's far from the only way they can fuck a whole board up the modal does have duration validation in this update for less "oops all permabans" because someone did "1 h" instead of "1h"
>>14997 well fuck, does this parameter work for deleting by ip only in one thread at least?
>>14998 it should, haven't had a reason to test it delete by ip's only really worthwhile for actual spam
>>5423 How is 8chan going to move forward regarding the supposedly anti-loli bill discussed in https://archive.is/nFjCN? Will Texas be blacklisted from viewing certain boards/content, or will the problem be addressed when/if it ever occurs?
>>15002 I personally don't give a shit about that shithole state nor do I care about any other shithole states in the United States of Niggers
>>15003 best post in the thread
>>14960 Nope. No worky. Goets suck on this lage. Back goes back to thr accept tos page. >Welcome to 8chan! >Thank you for agreeing to the site's rules. If this page does not redirect you, use your browser's BACK button.
>>15005 did you bookmark the TOS page
Codexx please PLEASE PLEASE give board owners the ability to move individual posts from one thread to another. It doesn't even have to be a particularly clean method. I'm often faced with having to decide to keep OT posts or delete them and I just want a third option.
Any ETA on tor controls for boards? Schizos are starting to catch on to how easy it is to ban evade with it.
>>15011 what controls are you thinking of
>>15012 I don't know, but Acid and Codexx mentioned they had some ideas planned about two months ago along with per board PoW.
>>15013 oh man that would suck donkey dick what about alternative options? for example using authenticator data from webauthn? the spec does say pretty please don't do this but you can absolutely discriminate by it. a yubikey costs around 30 dollars so it wouldn't scale for spam at all. even less so for other tpms like iphones would there be interest if i figured it out and provide an implementation?
>>15017 shit, needing to go out and buy hardware to be able to post on an imageboard sounds cool
I have a suggestion that is half joke, half serious. Incorporate an AI chat-bot that will reply to anons, when they ask for it, kinda like how Grok works on Xitter. Basically you write a post and some point include something like "">>aibot is this true?"" or "">>aibot what did <post_id> mean by this?" and you will get a reply from the bot with an answer. As for AIs they have been used in the past, like how /a/ used to have a maid AI bot that deleted posts and it's still being used on smug, plus I think it might be funny just for a bit of shitposting. Now I did say half-jokingly, because I know that there are more important things to do for the platform, even 8chan.tv is probably more important than this shitposting AI. As for it's name I was thinking either >>mark or >>arona. You are also free to dismiss this post as one big shitpost.
>>15018 1. as an option 2. mainly for tor, because, let’s face it, other options would suck as well, just in different direction 3. you might be surprised how many devices already have viable tpms (if windows hello works, you have it available)
>>15019 holotower tried that, you can go check their meta thread for how it turned out anons shitpost enough already tbh >>15017 what do you think would suck theoretically the pow difficulty should be weighted by multiple parameters configurable per board ip trust, asn trust, tor use, tor abuse, spam heat, etc could go a long way towards everything but the random one shot datacenter link bots >>15020 how do you imagine that working and doesn't proliferation of tpm work against the idea
>>15021 >what do you think would suck maybe it wouldn’t be that bad, but my hardware is quite dated so i’d feel the pow >how do you imagine that working note down authenticator serial number (which is signed by the vendor public key) along with or in place of ip address and blacklist misused ones. spammers would have to ‘burn’ these and they’re relatively expensive. at the moment i only have implementation of the create/get method pair, it essentially could be emulated with openssl on client side. authenticatordata is a pyramid of json/cbor/asn1 and i haven’t needed it yet >doesn't proliferation of tpm work against the idea i assume an ip address is cheaper than a yubikey, and it’s possible to not accept misbehaving vendors for this option
Add Onion-Location for the Onion service: https://community.torproject.org/onion-services/advanced/onion-location/ By the way, Tor is not an acronym (TOR) so the references on the site are wrong.
>>15019 Sounds like absolute cancer
Its been a while since the last site update so sending all my power of friendship to the maintainers! Saw some cool stuff in the commits so I'm hyped up about it.
(360.04 KB 678x632 shitty bullshit.png)

So Acid is this going to be a problem for us or what? https://archive.ph/Z7BoL
>>15027 The case: https://en.wikipedia.org/wiki/Free_Speech_Coalition,_Inc._v._Paxton In any case, a lot of NCII here is not being moderated against even though the federal TAKE IT DOWN Act is in effect: https://en.wikipedia.org/wiki/TAKE_IT_DOWN_Act
.se seems to be down
>>15029 It's up
Is PoW enough to stop a future proxy site from emerging?
if any of you wanted / use this scroll on new posts feature, preview this behavior timeout is necessary (though maybe can be lower) since added posts cause reflows, which is what I was originally going to fix today only other issue would be if many posts come in at once, it might be nice to buffer them a second or two to give you time to glance them over before they get pushed up the page, especially if you were to use a half-width window and people used lots of images // ==UserScript== // @name 8moe Scroll on New Post // @namespace 8moe-scroll-on-new-post // @match https://8chan.moe/* // @match https://8chan.se/* // @match https://8chan.cc/* // @match http://alephchvkipd2houttjirmgivro5pxullvcgm4c47ptm7mhubbja6kad.onion/* // @grant none // @version 1.0 // @author - // @description scrolls to bottom when new posts are added to threads // ==/UserScript== (() => { const replyButton = document.getElementById("replyButton"); if (!replyButton) return; const toggle = document.createElement("input"); toggle.id = "scrollOnNewPostToggle"; toggle.type = "checkbox"; toggle.checked = localStorage.getItem("scrollOnNewPost") === "true"; toggle.addEventListener("change", () => localStorage.setItem("scrollOnNewPost", toggle.checked.toString()), ); window.addEventListener("storage", (event) => { if (event.key === "scrollOnNewPost") { toggle.checked = event.newValue === "true"; } }); const label = document.createElement("label"); label.htmlFor = "scrollOnNewPostToggle"; label.textContent = "Scroll on New Post"; replyButton.insertAdjacentElement("afterend", toggle); toggle.insertAdjacentElement("afterend", label); const isVisible = (element) => { if (element) { const style = window.getComputedStyle(element); return style.display !== "none" && style.visibility !== "hidden"; } };
[Expand Post] const originalCallback = thread.refreshCallback; const originalStop = thread.refreshCallback.stop; thread.refreshCallback = function (...args) { const isAtBottom = () => Math.ceil(document.documentElement.scrollTop) + window.innerHeight >= document.documentElement.scrollHeight; const wasAtBottom = isAtBottom(); originalCallback.apply(this, args); if ( toggle.checked && wasAtBottom && !isAtBottom() && document.visibilityState === "visible" && !tooltips.root.hasAttribute("open") && !thumbs.viewer?.isVisible && document.body.lastElementChild.tagName !== "IMG" // image preview ) { setTimeout(() => footer.scrollIntoView({ behavior: "smooth" }), 500); } }; thread.refreshCallback.stop = originalStop; })();
>>15024 Adding to this, the Onion service could maybe use HTTPS as well: https://community.torproject.org/onion-services/advanced/https/
Was there a way to see bans or moderation activity for a board? I think I remember seeing something like that
>>15037 /logs.js?boardUri=boardgoeshere
>>15037 The book icon on the top right of the page, but only on the board index or catalog and not in the threads, for some arbitrary reason.
moe is kill?
Is LaTeX working or what and if not when did it stop? $$\LaTeX$$
So it seems that LaTeX posting is completely broken right now. Inline $$\LaTeX$$ \[ \int_a^b {x^2 dx} \]
(206.60 KB 1024x1024 Asuka smoking work.jpeg)

Some kind of network hijinx happened today. I did a deep dive and it doesn't seem to have been any of our actual stuff, more like network losses between parts of the site. Could be anything from cyberattacks in some parts of the world to a network cable coming loose. We're keeping an eye on it. In the meantime .se is still the fallback.
(138.40 KB 650x539 403.jpg)

(93.15 KB 828x1200 Asuka tired sunset.jpeg)

>>14765 I'm doing okay, actually. Busting my ass taking care of medical expenses (I'm around every day just usually too tired to shitpost much) and I'm almost done with that. It'll be nice to have it all settled soon.
>>15050 glad to know, please do take care
>>15050 Wishing you better health
>>15050 Have a good rest
>>15050 Hope you recover
Can we talk about this sites performance? I'm not just talking about the loading speed. But the rendering. /v/ is lowering the thread limit because of performance issues >>>/v/1528867. I'm experiencing issues too. If a thread has a lot of posts, and I'm not even talking about 1000+. Look at the included video. That mouse stutter isn't the recording, that's actually what happens on my machine. It lags my whole PC! And this is a gaming PC I run virtual reality on, it's not weak. It happens consistently, and it's worse when expanding an image at the top of the thread. Like it's recalculating everything below it. Other image boards don't have this problem. I tested on the Saba thread on holotower, which has 1500+ posts, it doesn't lag like that. But here's the weirdest thing. This only happens on Edge. Yes only Edge. I even tested other chromium browsers: Chrome and Brave. I tested on an incognito tab with user scripts and extensions disabled disabled. This only happens in Edge. I tried looking it it with dev tools. This stutter just doesn't show up, so I don't know what exactly triggers this edge bug. But I do remember having a similar problem with an other image board, where I was able to work around it with CSS tweaks by changing display: table-cell to something else. This site doesn't use display: table-cell, but it might be worth experimenting with CSS to see if a specific layout triggers this bug. In the mean time, we can tell users to try a different browser if there are performance issues. But it would be nice if this could be fixed. Or if we can find a minimal reproduction and pass it to the ms edge devs.
>>15060 >edge deserved tbh, but with that out of the way if they have an issue tracker, might be worth checking there first does it do it with hover previews or the advanced media viewer?
>>15060 Just turn off JavaScript, it's that easy.
how come whenever I filter ID+, all replies that come after the filter will automatically hide themsleves but hide+ works differently? Example: >post gets made at xx:xx:30 >I filter ID +the post xx:xx:35 >reply to the same post at xx:xx:40 gets automatically filtered >works even if the filtered ID never posts again vs >post gets made at xx:xx:10 >reply made at xx:xx:15 >hide+ post xx:xx:20 >new reply (to the hidden+) post at xx:xx:25 doesn't get filtered
>>15063 because the entire thing's a disaster and needs overhauled
I cant post on .moe, keep getting blank parameter error message.
>>15067 never heard that one post the whole error
>>15061 >if they have an issue tracker, might be worth checking there first I can't find a public issue tracker. >does it do it with hover previews or the advanced media viewer? No, floating images do not trigger the lag. >>15062 Just turn off JavaScript, If it was JS lagging it should show up in the dev tools. I imported my settings into Brave, but now Brave has the same problem. I disabled all my extensions, but that didn't fix it. What the fuck.
>>15072 does it do it on an untouched brave profile? machine with like 2gb ram swapping like a bitch trying to reflow?
I tested some more. I opened chrome and it did not have the issue. Then a minute later I re-tried on that same instance that I otherwise didn't use, and now it does it. Still nothing in the dev tools profiler. >>15073 >machine with like 2gb ram 16GB ram. Maybe it's a windows issue?
>>15074 watch it be something retarded like accessibility features also 16g is kind of light these days if you're actually using the machine as well
on the performance issue, what do you guys think of making it so that if a thread has more than "x" images, it loads the thumbnails in the manner which this https://arch.b4k.dev/ 4chan archive does, that being loading a certain amount/number of images near where the tread loads & then leaving the rest unloaded but when the browser put focus on that area, it loads them, you can test if for example in this https://arch.b4k.dev/vg/thread/529993987/ thread, load it & then click on the browser side bar to go way down in one go, you'll see that the images are blank(i'd say that it'd be good to give boards the ability to be blank or give a spoiler-style pic(s)) and then they load, this might ease up both server load as well as browser hat open say those AI gen threads with hundreds of pics
>>15076 images are already lazy loaded
>>15077 that doesn't seem to be the case for me
>>15078 they are marked as such in the html >if they're cached you won't notice hard refresh >if the connection's fast enough, it's also hard to notice they start loading near the viewport, not inside it >you might be using some extension to remove it they're not marked as lazy in posts added by javascript, but they will be (though it will do nothing, it's just for consistency) that website uses a custom js lazy load by storing the image location in the dataset and then switching it which isn't applicable here since it makes the site reliant on js and that's unacceptable
>>15071 Testing on .moe
>>15081 Seems like it wurks now, i couldnt screenshot the error just kept coming up as blank parameter error and some box of text.
>>15082 I think it should tell you what was blank, but it seems like something you would only see if something went extremely haywire
>>15083 It didnt tho, just a popup/overlay? message that said blank parameter error and a box of text with like a single line in it.
>>15084 annnnnnd what exactly do you think that single line of text was? anyway, the only thing broken is probably your browser maybe you loaded a cached page and wiped some data it was relying on so it couldn't send it in whatever request you tried to send
>>15085 The "text" was not descriptive just a few {=}\\ looking things and thats it. Nothing wrong with my browser, works fine elsewhere, and worked fine on .se and never an issue here either untill yesterday. Its working fine now. Definately was not an issue on my end.
>Zoo board still broken ACID GET YOUR FUCKING ASS IN HERE AND FIX IT ALREADY
There's a global mod called Belial on /v/ deleting posts with no communication at all, and this cannot continue like that.
>>15090 And it's already turning into a shitstorm. Either tell him to stop or have him come here so something can be worked out.
>>15091 Work something out? Anon don't break global rules, don't get global bans. Why is that a difficult concept?
It's become more than that, it's now a BO and a GM have actively conflicting ideas on how to run the BO's board.
>>15092 The eye-raping apngs? Sure, I can see that as being under GR4. But you should still bring that to us first. The nsfw/sfw conundrum is another thing entirely. I'm pretty sure that was a fucking anime girl in a bikini you spoiled. This entire thing creates nothing but conflict, it bleeds users, it doesn't help the website at all. It in fact only serves to harm it.
>>15095 of course belial is a raging homosexual
>>15095 Yeah I don't think this is someone fit to be a global. Either he is dealt with or this website is no better than 4cuck and its overreaching psychotic mod(s).
>>15090 >/bag/ escaped 4chan to get away from the anti-loli mods and overall 4chan faggotry >Follows them to 8chan except worse because it's way harder to call out faggots or have any disagreement when IDs exist Maybe the game is just cursed after all
>>15106 >except worse not really, the moderation here listens and communicates with users
>>15106 Don't worry, he's gone, he ragequit after Codexx told him to stop being a fucker.
There's a bug with image preview on hover and inline replies. I've got no JS or CSS or external scrips installed If you hover over a reply numbers with an image there is a chance the image opens like you hover over the image however it locks to the top left and doesn't close. I follows my screen as I scroll and most of the time I have to reload the page. It gets fixed when I click the link'd post containing the image and then hover over the problem image, which snaps to the orginal post. This non-reload solution isn't always possible as the image opens at it's max possible res and blocks all buttons that are behind the file
>>15109 got a pictue of it happening. Everything is default except inline replies and image preview on hover
>>15115 weird it might already be fixed with other fixes so hang on to that and see if it happens after christmas or whatever codexx actually pushes the updates the image hover preview is janky regardless (like everything else)
>>15121 >after christmas kek
>>15096 >>15097 What did it say?
anyone else having issues with posting jpgs? I just can't for some reason
Hi. I cannot moderate anymore. I lost my fucking internet again. t. Krymon
Where should I go ask for help on JS/CSS for 8chan specifically. I'm trying to test things out but either my code borks the CSS, doesn't work fully or fails entirely.
>>15133 here or >>>/t/17721 depending on the problem AI can be very helpful. But it cant tell you the element selectors obviously
>>15133 post it
>>15138 >>15137 I knew about the /t/ thread, didn't know it's still active. My code document got borked so now I lost the code I'd written. What I was trying to do was a JS/CSS combination that would allow for the Title to appear next to the posted url and a thumbnail preview when a cursor hovered. I almost had it, but the thumbnail preview wouldn't load the image and then I had a computer restart and lost the code because my doc didn't save. I want to avoid HTML and scripting but keep running into the Youtube API issue when I tried to replicate the code. other things I was working on is a saucenao JS and an Index Search function but while the latter requires html I think, the former has some sort of error in fetching the image url. I'll come back to it later when I've remade some more workeable code again.
Not the same anon from above but I've also got a CSS question. Someone left this code on my board and I'd like to incorporate it but I'm unable to figure out how to get it working. /* Default style */ body { margin: 0; font-family: Tahoma, sans-serif; background: url('https://example.com/bg1.jpg') no-repeat center center fixed; background-size: cover; transition: background-image 0.5s ease-in-out; color: white; } /* Hidden checkbox toggle mechanism */ #bgToggle:checked ~ body { background: url('https://example.com/bg2.jpg') no-repeat center center fixed; background-size: cover; } /* Toggle button style */ .toggle-btn { position: fixed; top: 10px; right: 10px; padding: 6px 12px; background: rgba(0,0,0,0.6); color: white; cursor: pointer; border: 1px solid #888; z-index: 1000; } /* Content styling */ .content { padding: 2em; }
(4.43 KB 208x245 1670197263088132.png)

>>15143 was going to reply way earlier and got distracted sorry should just drop it in a .css file and ram it home there in board settings wouldhave to use the Board CSS style of course to see it
>>15144 No I already understand how that works. What I mean is the toggle button won't appear. I'm not sure if it's formatted correctly or if it's missing something.
>>15145 you can't just make an html element with css you would need javascript to inject it somewhere on the page first because there is no element with the id bgToggle that's not difficult, but I'm not sure custom js is enabled currently
>>15145 Have you tried input[type="checkbox"] instead of .toggle-btn?
Seems like moe is down again
Hey admin, can you add Ctrl+s to add spoilered text? It would save a lot of time
>>15151 Already a thing with the grease/tamper/violentmonkey scripts.
>>15152 >scripts ehhhhhhh.....
>>15153 Or you can wait until whenever those script's features are made and merged into the site itself, which will probably take forever (there's a checklist on their git if you want to check).
>>15147 That was my first thought because I figured >>15146 was going to be a problem and because I knew that the site already has a checkbox in the HTML, but I still couldn't get it to appear. After some more fiddling I've got it to appear now. It still doesn't DO anything but it is there. In fact 2 of them are there. I think it's stealing the checkbox from the auto refresh down at the bottom. Any ideas anyone? /* Default style */ body { margin: 0; font-family: Tahoma, sans-serif; background: url(/.media/f2e1aaf9839bf53edbcdeaa8cc807b8455a87b52e2800c108bd089731224c234.jpg) no-repeat center center fixed; background-size: cover; transition: background-image 0.5s ease-in-out; color: black; } /* Hidden checkbox toggle mechanism */ #checkbox:checked ~ body { background: url(/.media/6f51ded0e3e5c1c3a7542fb6e1e855f7d5348f8d77e5a1fd859cc2551df7ffd9.jpg) no-repeat center center fixed; background-size: cover; } /* Toggle button style */ input[type="checkbox"]{ position: fixed; top: 25px; left: 5px; padding: 6px 12px; background: rgba(0,0,0,1); color: white; cursor: pointer; border: 1px solid #888; z-index: 1000; } /* Content styling */ .content { padding: 2em; }
>>15156 in fact, many of them are there > document.querySelectorAll('input[type="checkbox"]'); < NodeList(1036) [...] and again, there is no element with the id checkbox (#checkbox) that can be checked with a subsequent sibling (~) body, so of course #checkbox:checked ~ body does nothing input[type="checkbox"] styles every checkbox on the page >the site already has a checkbox in the HTML yeah, but not for users to use as toggles unless you add them yourself via custom board js, userscript, or co-opt one bypass check does nothing, so for instance abusing that one: body:has(#alwaysUseBypassCheckbox:checked) { probably does the trick
>>15157 and it probably only works on page load as a caveat due to css doing how it do
>>15158 But doesn't transition: background-image 0.5s ease-in-out; imply that it would dynamically change it?
>>15156 Hard to say since it's targeting the body with the background. This code copied and modified from the source link shows that it should be doable but the problem is the placements getting changed. If you click on the checkboxes, they should turn red and then turn white when clicked again input[type="checkbox"] { appearance: none; background-color: #fff; margin: 0; font: inherit; color: currentColor; width: 1.15em; height: 1.15em; border: 0.15em solid currentColor; border-radius: 0.15em; transform: translateY(-0.075em); display: grid; place-content: center; } input[type="checkbox"]::before { content: ""; width: 0.65em; height: 0.65em; transform: scale(0); transition: 120ms transform ease-in-out; box-shadow: inset 1em 1em red; } input[type="checkbox"]:checked::before { transform: scale(1); } Source: https://moderncss.dev/pure-css-custom-checkbox-style/
>>15159 Oh I see what that does now. >>15160 >but the problem is the placements getting changed What I don't understand is why. Nothing else that I've ever encountered acts like that.
Could the scriptless version the site be made more functional? I swear it didn't used to be this bad. Clicking on posts don't dump their post number into the message box, hitting "Reply" doesn't refresh the post form, there are no filtering options, the refresh function doesn't function at all so the page has to be manually F5'd, etc. Some of these have to be possible with HTML.
>>15163 html is a document format css is a styling specification so no, not really there are some tricks like with using details/summary (see the +/- on the post form) and checkboxes/focus to trigger restyling that only buys you showing/hiding/styling elements and transitions/animations then there's a few tricks with dataset attributes and attr(), but again, it's just display there's maybe some ancient hacks with iframes, but uhhhhhhhhh iframes the refresh button *should* refresh the page by default, that's doable, but it's just going to be the same as an f5/ctrl-r anyway I'm not sure if autocomplete="off" would force the form elements to clear on refresh or not, but on uses browser settings, so that one's probably on you if you want more interactivity than that, you're probably going to have to write your own js as a userscript (which isn't hard and you can just steal whichever features you want from aleph) if you can configure your setup to allow it or learn to love the bomb
>>15164 or better, since most of the site also serves json, use one of those fancy terminals the kids use these days with image support and write your own terminal interface could vibe that up in a couple hours probably add vim motions and you're set sounds like a fun project
How do I unlock a board? I got a stillborn one assigned to me a while back and I think I might have a use for it now. For CSS testing purposes if nothing else.
>>15166 /boardModeration.js?boardUri=whatever it's in board moderation instead of settings for whatever unholy reason, usually accessible at the bottom of pages along with the toggle to enable custom js... which might be the issue some people have with board js
>>15167 >/boardModeration.js?boardUri=whatever OK Thanks. >ERROR 500 You are not allowed to moderate boards. >I am not allowed to moderate the boards that I own WHAT. THE. FUCK.
>>15168 I guess that explains why it's not in board settings retarded
>>15169 I would be angry if I wasn't just plain confused. Is moderate board only for Globals? Where it's located would indicate that it's not. Why is it not in it's own separate line with labels indicating such? Did this change recently?
>>15170 just lynxchan things tm I don't see anything in moe mods that would do it, so it's probably been that way for a very long time
(7.91 KB 625x445 Capture.PNG)

I have this board I created to test something some time ago but I've never been allowed to delete it. It has no posts, nobody ever posted in it outside of me. How 2 del?
Does 8chan not support IPv4? My ISP isn't IPv6 compatible and I'm starting to think that's the cause of a lot of the issues I've been having with the site timing out all the time unless I use a VPN.
>>5423 Can the Globals going to move the drawthreads and AI threads from >>>/v/ to >>>/draw/ and >>>/ais/?
>>15166 Request it be unlocked by sending an e-mail to codexx (at) cock (dot) li Although I'm starting to think cockmail is eating some e-mails. Possibly incoming, definitely outgoind. I'll work on finding a more reliable provider when everything isn't on fire. >>15168 >>15170 Only global staff can moderate boards. I probably should remove it from the default view. >>15172 Also request by e-mail. 99/100 board deletions were either deliberate attempts to disrupt a community or were accidents so it made more sense to just disable it and make it a request thing. >>15173 IPv4 is supported. There have been some intermittent networking issues due to a blackhole attempt from Cogent. We moved our nodes off their network, but sometimes routing goes through them anyways. >>15163 Literally none of this is possible with HTML. All core site functionality works in no-JS mode, but some bells and whistles just are not feasible without a script.
I understand why you do it, but this bypass shit is annoying and not good for new users. It should trigger alert an explosion of post or something. It is not good for site growth. >Be new user >Do bypass >Page just hangs >No obvious timer >Leave and never return
>>15181 Just needs a spinner or progress bar then
Could we possibly get auto refresh on the latest posts page? CP spam has gotten bad again the last few days and it'd be helpful in dealing with it.
>>15181 It chases away old users also, just saying. > t.been here for years but not much anymore
Seems like .se is dead again, hopefully it will be back soon.
>>15190 i think it might have gotten with a ban on certain ISPs i've been getting a DNS PROBE POSSIBLE on two separate machines today
>>15187 which board?
please for fuck's sake at least add a "since post ID #..." parameter instead of the "since ... date" so we can implement auto-refresh ourselves without dealing with retarded bugs
>>15201 for the latestPostings.js API I mean
>>15202 actually harder than just using what's already there codexx might send you something in a day or two or three depending it and open reports should both have native auto refresh functionality but priorities
>>15203 just curious, how does the backend store posts as they come in? is it not stored in post ID order but by date? I currently have to ask for posts 1000ms before the latest post to prevent it from skipping posts whenever the board speeds up
>>15204 I don't think mongo orders like that I think they're just there and you get them however it queries for them, which is probably by creation time which should map to post num unless it's retarded I've never caught it missing posts, but we might not have been fast enough for it they almost might just be getting hard deleted before you refresh and thus not showing up
>>15205 also, not almost, wtf there is a "bug" (but might be half intentional) with out of order posts on the backend something can lag a post down after it consumes a post number and it doesn't show up in queries for a second, maybe mongo's just a bitch or it's a retarded race condition it's what's behind the thread updater missing posts when they happen too closely together since when it checks, it's not there, skips it, and can't recover because it only looks at the latest post number in the thread despite knowing (with websockets) that there should have been another post in the meantime I wouldn't be surprised if that's showing up in latest postings queries, too
>>15206 I theorise that it's skipping posts because there can be multiple posts posted within the same second, so sometimes when you ask for posts after the date of the posts you last saw, it skips other posts that got posted right after that post
>>15207 if it's right after then it's the epoch not having enough resolution if it's right before then it's the same cause as the thread lag in an ideal world a post wouldn't "exist" anywhere in the db until after absolutely everything possible has been processed for it and then its creation time / post number / entry into the db / association with the thread all get set in one shot leaving no room for fuckery but that's probably not happening because at the blazing speed of one post per year or whatever stephen's dev site gets it would never be a concern and a certain brand of autism might think a post should "exist" as soon as it comes off the network
>>15208 I personally would just toss LynxChan and rewrite something else, but I imagine that won't fly with this site's budget. I'll stick to just loading with that 1000ms lookback until you guys fix whatever dogshit is going on with Lynx
>>15209 yeah accounting for it on the front end is trivial if it's the epoch, just toss whatever you don't need out of the lookup I haven't gone mucking around with any of the db side of lynx's internals yet and don't really want to since that way lies madness and entirely broken websites if you fuck up
>8chan >can't ask a magic 8 ball questions please add a magic 8 ball alt to dice rolling like /8ball 🎱Outcome ///Very likely\\\ thanks
what the fuck
Is anyone else having the reply #% loop from 0 to 100 and back while it loads and then continues after a post goes through? >>15215 sounds fun /8ball test
/8ball
>>15215 the mechanism of the magic 8 ball is a d20 with words in relief such that it get in contact with the clear port displacing the dark fluid it's in
>>15187 since I didn't get a response, I'm going to ask again: which board? I have a userscript that helps with dealing with it and it works agains the spam on /v/
>>15206 >>15207 >>15208 >>15209 >>15210 There's an incrementer that's supposed to be atomic on the board object which has the latest post ID. The datetime for a post is set separately and so there's nothing that has to guarantee posts made after a set time will be before or after in post count. There are also other edge cases, like transferred threads getting renumbers, which mean datetime can be "out of order" with regard to post number. It has to get the post ID and increment it before writing the post to the post/thread collection so there's probably cases where two posts send at the "same" time, one increments slightly faster and then takes a minute to process for whatever reason. Meanwhile, another post sneaks in right behind it, grabs the next post number, and then gets written before the first one is done. It's all async across multiple workers.
>>15231 that's cool and all but that means I'll be patiently waiting for live updates instead of bothering with workarounds on the client side. thanks for the info
I really don't want to come off as niggerpilling, but I'm just tired bros. I'm really fucking bummed out by all the draconian borderline china dox laws passing on the US and the UK. I'm not even asking for a white pill, but I at least ask for some solace. I heard acid or codex are literal 3 letter glowniggers, what's stopping them from also doing a rug pull and killing this place too after sending all the info to the feds? Slap some sense into me anons, please.
>>15227 If you're talking about that blur script I'm not looking for anything like that. I want auto refresh on the latest posts page so I can snipe that shit. Adding auto refresh to the report queue would also be helpful though. Right now I have to use an extension for both and it tends to stop working if the tab stays unfocused for too long despite my best efforts.
>>15234 chrome can be a bitch, especially with setInterval which seems to just break at some point because fuck you setTimeout doesn't seem to get nuked, but they both get limited to 1s resolution in background tabs and supposedly chrome can jump to 60s throttling under some conditions there are workaround tricks with audiocontexts and shit I want to make them both auto refresh which won't use any different means but there's a thing or three in front of it
(16.86 KB 212x220 Just Perfect.apng)

>>15215 >magic 8 ball questions with dice roll mechanic This should be added and be easy to implement.
>>15236 it is the hard part is coming up with a worthwhile list of memes to smuggle into it
(658.12 KB 952x1091 Untitled.jpg)

JXL support please, even iphones support and use jxl now in their camera app, come on
>>15237 This should work. Positive >10/10, would answer again. >It will age like fine wine. >Blessed by RNGesus! >Can’t argue with that. >Time to have another cake! >Good taste detected. >You are a gentleman and a scholar! >You just leveled up! >GG no re >Yes, and without irony. Neutral >Wow, that's a lot of words. Too bad I'm not reading them. >I just want to play video games. >Ask your waifu. >404 Answer Not Found. >¯\(ツ)/¯ Negative >It will age like milk. >Are you even trying? No. >It's time to stop posting. >WTF did I just read? >Shit taste detected.
(650.90 KB 1024x991 1697565698012129.png)

Hey Codexx, you forgot about the multiline quoting bug, it's still up. The bug when you select more than one paragraph but only the first two lines get quoted in the reply field. I already reported it, so posting again. The change affects line 63 in /.static/js/qr.js The old (buggy) code: quoteString += '>' + selectedText.toString().replace('\n', '\n>') + '\n'; The new fixed code: quoteString += '>' + selectedText.toString().trim().replace(/[\r\n]+/g,'\n>') + '\n';
>>15243 fixed on dev should be the same as 4chan-x/xt when it goes live
>>15178 I've been delayed by like a week but I'm sending it now.
>>15234 I'm not talking about the blur script. /v/ vols run an autoload script I wrote and it works quite well so far, and the reason I'm asking which board you're dealing with is because the script also has an automatic banning feature that deals with the spam on /v/ (with 100% accuracy) which I'm not yet willing to share yet since the spammer would just game the system. you can either >let me know what board and what kind of spam you're dealing with, I'll volunteer for your board and I'll run the script there or >I'll post a version of the script with only the autoload
>>15252 It's a different issue from the retard spamming /bag/ on /v/, every now and then on /gacha/ we get someone that spends a few days posting 4 or 5 CP links to the catalog for a couple days until he runs out of IPs and then he disappears for a few weeks until he comes back. I'm really hesitant to use any solution that involves automated bans. We're not really having issues dealing with it, I would just like for the site features to facilitate dealing with it faster .
>>15254 you can have this
I noticed that when you merge thread A into thread B, the post that was previously the OP of thread A doesn't have an ID. Is this intentional?
>>15258 exports.fieldsToCopy = [ 'name', 'hash', 'asn', 'signedRole', 'password', 'email', 'flag', 'bypassId', 'flagName', 'flagCode', 'subject', 'ip', 'message', 'markdown', 'banMessage', 'creation', 'boardUri', 'lastEditTime', 'lastEditLogin', 'files' ]; yes and no probably just never got updated when ids were added and never noticed because fuck testing simple enough to fix, but it's funny it sets them all regardless of whether they exist or not so ops that become posts just have a dozen null properties for no reason
Apologies if I've missed a post about it but what's going to happen in regards to the UK's Online Safety Act? Is the site just going to block UK IPs?
>>5423 >>5423 >>5423 >>5423 Will you guys ever fix this
Could someone move this thread: >>>/v/1219982 to >>>/ais/ In the past, we've had old threads moved to /ais/ for archival as far back as 2022, but I'm told vols won't do this anymore. Failing that, would anyone be able to make a script or something to copy a thread to another board so users can move threads to archival boards themselves?
Is there a way to export the watched list from one domain to the other since they're not shared between each other? Because .se is 503'd at the moment.
Is there an intended way to remove a warn/ban message from a post? I usually have to give a fake ban to a post then restore it whenever I want to get rid of it >>15261
>>15266 .cc is also down. .moe only works on Tor atm so 8chan right now is currently inaccessible outside of onion browsers. They're really trying to take 8chan off the net despite us not being 8kun.
>>15267 now why would you want to do a thing like that seems kind of nefarious
>>15269 Cleaning up someone else's mishap, since lifting the ban that created the message doesn't get rid of it
>>15270 I don't think there's an intentional way and it should be a rare thing anyway if anything, own it and change it to an apology for being a retard
>>15271 >own it and change it to an apology for being a retard I usually reply to the post with an apology for that instead, after removing the ban message
>>15268 .moe works for me
>>15266 I have a dangerous userscript for that. Manually activated with a button. I used it once or twice so it works. Dont cry if you accidently delete your data.
>>15274 Thanks. I'll give it a go when .se is back and I have proper access to the threads I saved.
>>15274 Thanks, this script made my penis 9 inches bigger, cured my cancer and exported my watched list.
>>15275 It should work even if the domain is 503d. Go to the domain and wait for the timeout (60 seconds or something) now that you got the 503 error page click on save current domain's ls button. Open a moe page and restore 8chan.se domain
>>15267 >>15270 I think you can just edit the ban message to nothing.
>>15274 Your script exploded my computer, pissed on my wife and fucked the family dog Thanks
Any words on .se being down? Is it a technical thing? Are we getting deplatformed again?
>>15280 Not only that but .moe is lagging a lot, at least on my end.
>>15289 It's surprisingly stable for me today
>>15289 Haven't felt that, but se and cc are down for me
.moe's still cucked in p0land and about everytime I try to use this site longer than a day the fucking .se domain breaks down, unreal
THE SITE HAS A FUCKING TOR ADDRESS USE IT
>>15294 What's a tor? Ain't that the thing that the hackers use to explode your computer?
>>15280 Same here, .se give me >Gateway Time-out. >Sorry, the backend is unreachable or down for essential maintenance. Try again soon Since .moe works it's probably not down for maintenance.
>>15294 >no extensions unusable
>>15297 works on my machine >tor browser has extensions >brave tor tab uses extensions >tor service
.moe only works on Tor browsers for me. Trying .moe in Brave standalone without tor leads to the 503 error. I'm in the United States so it's likely being throttled right now for me.
.moe has some blackholes affecting who can be routed where. Acid and I are trying to compile a registry of affected routes and see if we can't work something out, but working around blackholes is difficult especially when we cannot just use any random host. .se is supposed to be back up by now. I'll poke Acid about that. This one is on us. No current deplatforming attempts.
>>15305 Thanks for being communicative and for the good work
How do I do stuff like Filter ID+ or check an ID's post history?
>>15306 Thank you for using the site, and for your patience as we try to smooth out a lot of rough patches. >>15307 Filter ID(+) can be found by clicking the little Ø icon on a post to reveal a Hide/Filter dropdown menu. If you click on the poster's ID, it will highlight all their posts in the thread. IDs only exist in a given thread, so you cannot see their history beyond that. Board staff can find the [History] button on the mod.js page, accessed from the [Moderate Thread] link at the bottom of a thread page, which will give them access to broader post histories and hashed IPs.
>>15308 Codexx, can you try to get on top of the awful moderation of >>>/v/ at the moment? The vols seem to be completely absent and the cuckchanners are spamming up every thread. Much as I like cunnyposting, right now it's really obvious there are cuckchanners because they are posting unspoilered art with genitals in violation of the rules. I won't stand for the jaks being mass posted either, can't even check if I'm a vol because I lost the credentials to my account on here
>>15309 use the report function crybaby faggot
(205.61 KB 256x256 -^).gif)

>>15309 just use /vb/ instead :^) or better yet /bv/ since i can say that here without a text filter
>>15309 I've tried to help them staff up but it's hard to find volunteers for that board. I will see what I can do and work with their volunteers to improve coverage and/or tools. Technically local boards are the BO's concern solely. If you want help accessing your account I can try to help, but it's best if you e-mail me from a verified address associated with the account. If you don't have that, I can at least put you in touch with any boards and help you make a new account with the same access.
>>15308 Codexx, could you add in the magic 8ball feature as suggested from >>15215 and with the outcomes provided from >>15242
>>15313 Planning on it, although I'd like even more outcomes. I've been writing a few here and there. The implementation itself will be trivial.
>>15314 Absolutely based.
(206.32 KB 400x300 Hacker doro.png)

When are you going to fix your shit? .se is down again and .moe is still geoblocking my IPs. It's tiresome to use this shithole at this point, as rare as I do already.
Yes if this site is going to grow and get regular users it needs to stop constantly having problems.
>>15309 The vols seemed completely absent (for like 10 minutes) because the first thing you did was to come here instead of reporting the loli spam at fucking all, which makes me think you're not genuinely concerned but instead only here to use that as a leverage to do whatever it is that you want to do
>>15305 Alright
Haha oops
>>15322 That being said out of context and out of nowhere makes me a little concerned
Just realized the 8ball answers don't have references to Intimidation Game besides leveling up. Positive >Better than Civ V with the Brave New World expansion pack >Game on, NYPD! Negative <Go home, gamer girl! Some bit of baneposting Positive >Yes. The fire rises. >Now is not the time for fear. That comes later. Negative <It would be extremely painful <Uh, you don't get to bring friends <He didn't fly so good! <No! They expect one of us in the wreckage, brother!
>>15318 >.moe is still geoblocking Can you clarify if you're timing out reaching .moe sometimes or if you're receiving a Varnish error page? A ticket is in with .se but we are waiting on the host. >>15319 I'm doing what I can on my end. The upfront infra is in Acid's hands and he's been getting shit on by life the past year straight. In many cases, it's not directly in our hands at all, such as the blackholing and other efforts to deplatform us entirely. There's some solid updates coming down the pipeline for the site proper, but we're working on improving access for everyone and keeping the frontends up reliably. We have some upgrades planned, but Acid needs time to implement and debug them.
Alright, for the past week, every time I make a reply my ip keeps getting marked as a "known spammer". I think someone either spoofed my ip or confused my posts with one of the resident drive-by shills.
Update should be coming soon, possibly as early as tomorrow night, but I don't want to commit yet. >>15326 There have been a lot of reports of false positives here. The list comes from stopforumspam.com. I have temporarily disabled the list. If it turns out that it was actually helping stop spam then I'll need to implement a whitelist and let users request their IP be added to said whitelist, because by default it just will not let me override a single IP.
>>15325 nta but varnish for me
>>15325 >Can you clarify if you're timing out reaching .moe sometimes or if you're receiving a Varnish error page? It's the Varnish 404 error page. The same one as shortly after when the halfchan influx happened. Nothing changed in that regard for 3 months.
>>15326 I have removed the "known spammer" list but I'm not sure if that's enough to clear the existing IPs out. If it continues to persist I will look into it further. >>15329 >>15330 I will speak to Acid about loosening the geoblocks. We threw a ton of them up when we were spinning up new frontends and I have a feeling we can drop half of them.
>>15331 >I have removed the "known spammer" list but I'm not sure if that's enough to clear the existing IPs out. If it continues to persist I will look into it further. Is this change retroactive? One active users in our general recently got flagged as a spammer and he can't post here anymore.
>>15327 >Update should be coming soon My body is ready. Do it.
jesus that was a long downtime on my end, near 14 hours, the hell happened?
>>15327 Hi, would you happen to know if using the option to warn or ban the person who filed a report works? I'd like to use it to kindly remind people to not abuse the report system, but looking at logs it didn't record any warning when I set the warn target to the reporter.
>>15336 Nevermind, I'm retarded and realized I could just test it myself by submitting a report. It does indeed work.
>>15337 Sorry for the spam, but as a final note, the warning will pop up for the user, but it won't be recorded under their offense history, unlike normal warnings
(131.30 KB 1332x1050 red anon shrug.png)

>>15242 Is 8 ball not meant to answer yes or no questions? These responses are either non-answers or else responding to something that wasn't asked.
>>15314 hey, i remember getting autistically angry over at cuck/vp/ from all the ">she" when anons spoke of a given mon with a greater male sex ration than females, like say a starter, purely due to the ignorance of a given mon's individuality with respect to the species, so i ended up thinking of a method which honestly can have some nice applications outside of quieting down such posts: so basically its a 3(+, possibly, can you do ratios with more than 2 numbers?, does "1:4:3" work?) input thing that goes *whatever thing would be best to call the thing up*(*ratio like 1:2 or a percentadge which applies to the first item, hence taking the rest for the second*,*1st item*,*2nd item*), with parenthesis & commas left to the discretion of the implementer, along with the ratio thing, this in turn should render in the post with the item that landed alongside info of what where the items as well as the ratio/percentadge, so say "i love my Meowscarada, *yah know*(1:7,she's,he's) so cute" gets rendered as "i love my Meowscarada, she's(1:7,she's,he's) so cute", or something like that(maybe the "(1:7,she's,he's)" could be a pop-up/tooltip?, oh, it might be hard to make say an item like this render well within a tooltip, mh) do you see the vision?, cause this shit clearly has some nice potential for the roleplay boards as well, i think in any case take care and have a nice day
>>15341 ah shit, i now remember that that thing can be had as an item, eh, try to curtail the recursion, at the very least on the tooltip level so as to not foobar'd it, oh & dice can be had as well, those are fine, in fact if the non-chosen dice are show with the roll they would have where they have been chose on the tooltip im sure it will lead to nice occasions
>.se STILL down truly no fucking alternative to 4chan with how much of a shithole this place is
>>15344 Just use .moe?
>>15345 it's been blocked since a dau or two 4chan went down
Is it possible for a BO to request disabling posting via tor for their specific board? I have a persistent user using tor for ban evading and would prefer not playing whac-o-mole by banning tor nodes individually for each ban.
>>15347 If it's a cp spammer tell posters to do a global report, that helps too.
>>15347 i think that's in the works
>>15344 at this point sleepychan or wapchan are worth to consider.
>>15352 >wap 8 pph >sleepy impossible to reach that shithole without knowing the address already
(107.76 KB 897x701 1.jpg)

(122.80 KB 889x713 2.jpg)

>>15353 I agree that it might be tricky with people using a nickname, but it's still possible
(257.09 KB 1339x580 okuu_rin_stupid.jpg)

>>15353 It's on the webring, stupid.
>>15354 >22 pph embarrassing posting into the void
>>15356 Get off the ADHD drugs, and you will learn to appreciate it.
>>15357 I'd sooner appreciate HRT and linux than 10 autistic fucks posting on a dead imageboard. actual mental illness. but I digress, just fix .se already its been days
>>15352 If those were any usable you would be using them instead of shilling them here Out
>>15359 tbh the original 8chan was shilled to hell and back on 4chan and that got it filtered permanently
>>15358 Then go back to cuckchan. How do you think the past 5 years were like here? >>15359 It's what I am doing. But my spitefulness also makes me shill them here, just to spite faggots like you.
>>15361 You cannot make me angry or upset, I just got done masturbating >>15360 Well see, I hypothetically throw garbage at my neighbors, but I'd be pretty mad if my neighbor did the same
>>15339 >Is 8 ball not meant to answer yes or no questions? Fair point
>>15348 >>15350 Good to know. Whats the current go to email service with an onion address while cock.li is down? Need to change my current email and contact on Codexx.
>>15364 Out of curiosity, what board?
hey what happened to metachan?
so when is .se coming back up
(442.70 KB 1000x1000 110655030_p0.jpg)

.se FINALLY WORKS!!!
>>15372 Yay! ...now please loosen the restrictions on .moe so we are not locked out of site completely when .se dies again Pretty please?
Heya, I was referred by another anon to this thread, i got this pic a few days ago while I'm on /v/ and I haven't been able to post using my router since. It happened during a brief blackout while I was posting where picrel appeared and remain ever since, which no, I didn't spam anything. I am phoneposting now, but can the admin look into this and lift it ?
(69.58 KB 429x332 Watts sees.png)

Say Acid/Codexx can we finally get .zip/rar uploading working? It's a real pain in the ass sometimes. >>15279 >Your script exploded my computer, pissed on my wife and fucked the family dog This reminded me of the Sonic Snapcube dub lmao.
(1.56 MB 2560x4096 1730298697517854.png)

would it be feasible to add a cuckchan-style "ID dice" for stuff like pic related?
(292.22 KB 640x613 0qvqkcbgqf931.png)

The archive system is great, but could the formatting be longer overall? Something like making the archived entries taking up one row instead of three per row and increasing the length of the page to compensate. If there's a more robust archival system planned, then consider this a stopgap measure until said improved archives are made.
>>15379 maybe, but it wouldn't remotely be priority unless someone wanted to jump in with it as their pet issue >they exist >they're simple to crawl >there are better uses of time being barely functional is good bait for someone to build offsite archives which would be a considerable boon
Dunno if this is a bug or not, but when Tor posting, the file-size limit is below 8mb. It's not board settings either since this is even on boards with the default size limits for files and posting. It's not like it refuses and says "file too large" or something, it just goes "connection error" and fails to post.
where's the fucking update, lebowski?
He did say he didn't want to commit yet
Attack on 8chan again? I couldn't access it in normal way for a while. >>15357 >Get off the ADHD drugs It's the other way around. Btw. Saw a thread from dude complaining about interracial board and I was wondering if it would be possible to remove the spicier boards from listing at the top of the page. At first look it almost seems like a porn website.
>>15388 >if it would be possible to remove the spicier boards from listing at the top of the page fullchanX has that feature
>>15391 Fresh visitors won't have that, though.
>>15392 No other imageboard has that feature on their vanilla site either as far as I can tell.
>>15393 I was about to mention halfchan, but then I remembered they use like 2-3 letters in most cases and home page lists all boards and catalogues them by theme, so newcomers can see there are plenty of SFW boards. We could do the same. We got fitness and cooking boards but hardly anyone knows about them.
I don't know if this is a known known bug, but even when an image post is deleted, if not enough new image posts have been made to push it off the front page of the site, the image will remain there. I noticed this by seeing the CP spammer showing up there, clicked the image to report it in-thread, and when I got there it had already been purged (no idea how much sooner). Returning to the home page, I refreshed several times and the image persisted. (it's at the bottom here, cropped). I'm sure you pull the home page thumbnails from–and save them to–a separate storage folder, so i wonder if/how the "purge media" script can be run on that folder to check if what's there needs to be wiped when its linking post is. Cheers, guys.
>>15395 it just queries for posts that exist and doesn't check if they're trashed which is all board vols can do looks simple enough to patch
>>15395 >>15396 actually, no, I tested it and they do get removed if trashed because it's managing the collection of possible images elsewhere vol must have got it after you loaded the page and it's the latest image in that set so that's not really a bad response time, just luck they don't get added back if the post is restored, but that's whatever
>>15375 I keep removing the spam IPs link and the engine keeps re-adding them as the default. I'm going to have a talk with Stephen about this and possibly just hard disable the setting. It would be one thing if we could whitelist IPs, but we can't, and the only way to turn off that spam list will also turn off other ban functionality we want enabled. >>15376 Archive uploads were removed because it's basically impossible to check them for malware. I don't really have a good solution to the problem. >>15377 This is possibly doable with board CSS. >>15381 I think we did that because large file transfers via Tor can cause issues given the connection has to hang for so long on bad routes. There was a good reason for the limit at some point. The connection lost error lacks clarity, but it's a limit imposed on the Tor connection and not on the site itself, if that makes sense. I'm not sure we have any wiggle room on that. We might be able to disable the limit (no promises), but I doubt we can serve a custom error because it just terminates transfers above the limit. >>15382 Soon. I need to find a night Acid is free. >>15395 It used to retain outright deleted posts, too. So it's not finished but it's a step in the right direction.
>>15400 set the spam list to something stupid like https://localhost and hope stephen handles errors remotely intelligently?
>>15331 >I will speak to Acid about loosening the geoblocks. We threw a ton of them up when we were spinning up new frontends and I have a feeling we can drop half of them. Any news on this? .se works now but would be nice to have access to .moe if it ever goes down
>>15178 >>15250 The board's still not unlocked so I'm guessing the email got ate.
>>15403 Cockmail is having a ton of issue and downtime. I need to get a better mail provider. Send it to the protonmail. I'll figure it out. >>15402 No, we spoke a little but he's been handling some real life bullshit. I'm not sure when his next day off is. But I have passed him a small to-do list, including changing the ToS cookie to not be session expiration, making them the same across .moe and .se, and reducing the geoblocks. He has promised to look into them when he has time. >>15401 >handles errors remotely intelligently It will probably either silently work while erroring, or the backend will crash and refuse to come back until I edit the settings manually, knowing LynxChan. I'd rather just do an early return somewhere and avoid a check.
>>15400 ah, good to know >>15404 i know it was retardedly verbose of me, but never the less, thoughts on >>15341 >>15342 ?
>>15405 >thoughts on he doesn't have time and it's barely comprehensible autistic wank (hi, autist here, I see you) submit a merge request or it's not going to happen (and even if it did happen, no one would use it) because ti would be near the bottom of the eons long to do list just use dice, its how all ttrpgs are played anyway
MOE DIE AGAIN
>>15400 > We might be able to disable the limit (no promises), but I doubt we can serve a custom error because it just terminates transfers above the limit. I see. I was just curious and a bit confused. Good to know it's not something on my end.
Is .moe down for maintenence? >>15400 >Archive uploads were removed because it's basically impossible to check them for malware Oh. I see. That makes sense. Darn. >>15377 >possibly doable with board CSS. >ID-Dice This looks interesting, elaborate?
>>15400 >This is possibly doable with board CSS. I don't see how CSS could work for dice rolls. Isn't that more JS?
>>15408 Did you get a 503 or did it hang? The 503 is a temporary network hiccup. The hang means you got routed to a node and some ISP along the route is blackholing our traffic. >>15410 It's rare for a single domain to go down for maintenance. Usually it's one of the two above issues. We're discussing means to stabilize things and work around networking issues. >This looks interesting, elaborate? The colors around IDs are just the digits of the hash converted to an RGB value via CSS. I'm not sure if you can select an image the same way, but you may be able to key off the ID somehow. I'm not 100% sure it would work and any solution would probably be a little hacky but it may be doable. >>15412 See above.
>>15413 yeah, it was 503
>Have the fucking audacity to attempt to post from my phone >Bypass check >Do the fucking captch >ZERO GODDAMN INDICATOR OF A GODDAMN TIMER >CAN'T FUCKING POST >HAVE TO WAIT SOME UNKNOWN AMOUNT OF TIME FOR THE PRVILIAGE OF POSTING I REITERATE, THIS SHIT IS KILLING ANY GROWTH THIS SITE COULD HAVE. AT THIS POINT I THIN IT IS FUCKING INTENTIONAL. TURN IT THE FUCK OFF IF YOU CARE ABOUT GROWTH AT ALL, IF YOU DON'T THEN FUCKING TELL US SO I CAN STOP SUGGESTING PEOPLE USE THIS SITE. HOLY GODDAMN SHIT I AM MELTING DOWN
>>15415 >has a tantrum when they can't shitpost immediately seems like it's working not all growth is good growth cancer, for instance
>>15416 This mentality is why post counts and user counts are dropping like a stone and I would not be surprised if you want the site to go back to the old days. Let me spell it out for you faggot nigger cuck. >New user hears about this neat site that is like 4chan but no bbc, cuck, scat, gore spam every other thread >Attempts to post >Oh a captcha! like 4chan, ok >Fills out captcha >Reply box just hangs there >I guess I'll just go back to 4chan If you don't see the problem with ZERO indicator other than the default 299 second captch timer, then you are a fucking gay retard with aids and you probably Vote Independent. I'm done trying to advocate for this site. Oh boo fucking hoo, nigger will spam there shit and mods will have to... delete and ban things. Holy shit the world is ending.
>>15415 It annoys me too, but I have less issues when posting from Tor. VPNs on the other hand...
I think they wanted to add an accurate progress bar but the development stalled for 2 years. https://gitgud.io/8chan/Aleph/-/merge_requests/53 Meanwhile they should add a spinner.gif with "Generating bypass, please wait..." text under it temporarily. That can be done in 10 seconds.
>>15419 do it then or rebase that branch onto dev and patch it up, most of the conflicts can be ignored
>>15420 Nevermind. I havent seen this in a month. It already says "please wait for validation" there. Why is that guy complaining?
>>15421 Just add <i>Validation can take a minute. This will only be done once in a while</i> below the buttons and zoomers can now rest at ease.
>>15422 if they could read we wouldn't be here in the first place the spinner should be subway surfers but instead of coins it's hash solves
The fact some retards response is "lol zoomers amirite bros?!". Niggers we are 35+ years old, The internet and the world is changing and those zoomers will be determining your children's and grandchildren's futures. They make up a vast number of internet users. This bypass shit needs to go, or be an option that can be turned on and off, or have trigger conditions. If you have to wait a mysterious amount of time before posting. 95% of modern internet users will go back to where they came from and you retards who's response is "lol good" are part of the problem. Like I said, post rates are down, users are down, and explicitly anti-new user features are not helping the matter.
>>15424 >babyraging >can't even tell when they're getting the piss taken out of them >35+ embarrassing sure, it needs improved and there's a laundry list of ideas about it that mostly just need implemented to streamline it, but you just seem ass mad about your skill issues and desperate for attention since you didn't get it in whatever thread you were multi-device drifting in, not actually concerned about user experience
>>15425 Down downplay the issue faggot nigger. Site is slowing to a crawl. Users are bleeding out. All the streamlining in the world won't matter if 8chan drops to 10 post per day. New user experience should be the priority after major security flaws. I'm right and you're a cocksucker.
>>15417 >Oh boo fucking hoo, nigger will spam there shit and mods will have to... delete and ban things. Holy shit the world is ending. the fact that making this site as effortless as possible to run takes priority over the user experience has always been the number one problem with this site. the amount of bullshit 8chan had to put up with to continue platforming gamergate was never ending yet it stuck to the principle of platforming everyone and reaped the benefits of it. meanwhile the first real test of that here was immediately met with deplatforming the problematic demographic to appease the complainants. thats why nobody deemed problematic sees fit to establish a community here because they know their existence is entirely based on whether or not people bother the admins enough to make getting rid of them the easier choice than platforming them. the loli boards for example have been dead and abandoned for years now so that when the admins got complaints about toddlercon and immediately did a blanket ban on it there wasn't even anyone here to give a shit because they all saw it coming and left already. your appeals to build 8moe into something greater than just another backwater altchan with a tiny clique of faggots circlejerking in it is lost on them as they're perfectly content with a 10 post per day might as well be a discord channel community as long as it means they don't have to put any effort into maintaining it.
>>15413 >We're discussing means to stabilize things and work around networking issues. Good to know! >The colors around IDs are just the digits of the hash converted to an RGB value via CSS. I'm not sure if you can select an image the same way, but you may be able to key off the ID somehow. I'm not 100% sure it would work and any solution would probably be a little hacky but it may be doable. That does sound doable (though I'm not sure of the exact code required) but the question of being able to see ID's if hovered over would be interesting to explore, since there's a limit to how many icons for IDs would be generated. As an aside, what code should I look for in the 8chan CSS for the digit hashing? It's such a long document that it makes it infinitely easier to know what to CTRL+F for.
>>15428 the class is labelId, but it's not possible as is the id is in a span, so css can't do shit with it aside from change how the span is styled the only remote way you could get something like that to work is if the ids had their decimal equivalents stored in dataset attributes and maybe you could background: url("whatever-" calc( attr(label-id-red) * a bunch of fucked up math ) ".png") or maybe use svg to control the stroke/fill if you could composite them in the html correctly
>>15429 I'm pretty rusty with CSS and even to me this sounds like a headache. That's a shame. Would have been cool to implement for my board. I wonder if it would be possible with JS-CSS collaboration? I suppose I could ask on >>>/t/ though they're mostly obsessed with their 8chan userscript.
>>15430 once you go js (which you almost always have to to have shit in detroit) anything is possible almost every time you find yourself thinking "can I do this without javascript" the answer is no outside of display state changes with :hover/:target/:has/open
>>15431 > every time you find yourself thinking "can I do this without javascript" the answer is no outside of display state changes with :hover/:target/:has/open Lovely, another project for the backburner I guess.
(119.23 KB 493x321 good news everyone.jpg)

(63.73 KB 1327x396 Loading preview.png)

(74.58 KB 535x543 Loading preview 2.png)

>>15419 >Meanwhile they should add a spinner.gif with "Generating bypass, please wait..." text under it temporarily. That can be done in 10 seconds. Good news, anon! I got something like that done with CSS trickery! However, I only have it done for the Windows 95 theme right now. Any aspiring CSS theme makers can easily add it to their board's CSS theme by copying the code below /* ↓ The button disabled effect happens here. Now has a loading icon to let you know the post is going through! */ input[value="Reload"]:disabled, input[type="submit"]:disabled, input[type="button"]:disabled, button:disabled { cursor: not-allowed; /* The animated loading icon that appears only for disabled buttons to give the illusion of loading. If your icon is .apng format, remove the .png extension from the hash. */ background-image: url("/.media/2fa1b1615e7854cce8cfba5369afb8064b6b292a98ab9edf59bcb9893b7c3cb9"); /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ padding-left: 20px; /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ background-size: 16px 16px; /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ background-repeat: no-repeat; /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ background-position: 2px center; } If you want to test it manually for yourself in case you already have a bypass generated, apply the given CSS code above and follow these steps >open your browser's inspector tool >click on the Element Picker >hover over either the reply button in the posting table, or open the report/captcha menu from any post and hover on the OK button >in the HTML editor, look for the line that says <input type="submit" class="modalOkButton" value="Ok"> >add disabled after "submit" and change the value from OK to Please wait for validation (If you're modifying from the report/captcha menu) >if you want to see how the reply button would look, then look for this HTML line <input type="submit" id="formButton" value="Reply"> >like the above, add disabled after "submit" and change the value from Reply to Uploading 100% >you now have the animated spinning icon to look at while you wait for your upload to be processed! I have posted other animated icons in the /test/ board that you can use for your theme. >>/test/4569 >>/test/4570 >>/test/4571 >>/test/4572 I got most of those from using the Special Search from Gifcities via archive.org and setting the size to 16 x 16: https://gifcities.org/special-search
>>15435 Windows 95 dev being a credit to the team as always.
>>15435 Cool stuff.
>>15435 I added your CSS to Lynxchan-- since I've been wanting the same thing for a while
>>15417 Before 4chan come, 8moe validation free.
>>15435 That's rad, thanks dude
Hey, is tor down for anyone else rn?
>Your ip was recognised as a known spammer. Just woke up to this, pretty sure I don't spam, I post in one thread, did something change or I just got unlucky and my ISP assigned me some maliciouss address?
(1.72 MB 300x400 thinking.gif)


The spinners now have their own thread on /res/, check them out here >>>/res/784 Thinking further on the disabled buttons, it’s great they have a spinner so anons can indicate something is being processed. However, I don't like them sharing the same colors as the normal buttons because while the spinner at least gives some indication, it would be better design language to mute the colors a bit & keep them separate. That way, it clearly shows it’s paused and is not just a normal button with a spinner attached. Here's the code with the color changes. input[value="Reload"]:disabled, input[type="submit"]:disabled, input[type="button"]:disabled, button:disabled { background: #e0e0e0; color: #888888; border-color: #999999; cursor: not-allowed; /* The animated loading icon that appears only for disabled buttons to give the illusion of loading. If your icon is .apng format, remove the .png extension from the hash. */ background-image: url("/.media/2fa1b1615e7854cce8cfba5369afb8064b6b292a98ab9edf59bcb9893b7c3cb9"); /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ padding-left: 20px; /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ background-size: 16px 16px; /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ background-repeat: no-repeat; /* Don't change this if you want to re-use the animated loading icon for your CSS theme. */ background-position: 2px center; } Thoughts?
>>15452 pretty cool
>>15452 Its probably better to share it around without the colors. It can be worse in many themes.
(28.45 KB 720x480 times have changed.jpg)

.moe is giving me incorrect time warning, never did that before.
8chan.moe certificate has expired today. I had to "accept the risk and continue" >>14483 last one was 3 months ago?
>>15459 I thought those are usually contracted at a yearly basis
>>15460 not that one unfortunately
>>15452 No comment on the colors but shouldn't the cursor be "wait" instead of "not allowed" since wait indicates that it's loading and cannot be interacted with
CODEXX 8MOE'S CERTIFICATE HAS EXPIRED
(2.04 MB 640x480 PANIC.webm)

(98.10 KB 100x100 explode.gif)

(56.82 KB 100x100 1742135165272337.gif)

(10.48 MB 960x960 Sad Rosalina.mp4)

>>15265 No way to get threads archived anymore? I keep asking, but get ignored so I assume the content will simply die eventually. When I look at the archive we're intended to use now I see multiple pages of archived /bag/ threads: https://8chan.moe/archives.js?boards=v The AI general at times uses content from previous threads. Image to video gen let's us repurpose images from previous threads for animations. If the content disappears I cannot search through old threads for images to use for that, nor can I quote old posts to credit the original poster. Unlike the newer generals, the AI General is a legacy thread that had existed before the latest cuckchan exodus with archived threads moved to /ais/ up until moving threads was disallowed. I've asked repeatedly in /v/ meta & once here. Someone archive our previous thread, please? >>>/v/1219982
>>15471 Yeah is seems like some exceptions should be made.
cert is kill
does Websockets itself work through Tor? I noticed it only works on the 8chan.moe domain but not the onion domain
(2.12 MB 1280x720 how_to_be_cool.webm)

>>15463 Oh hey, I can finally access 8chan.moe
se is down and moe's cert is fucked
I'VE COME TO MAKE AN ANNOUNCEMENT Codexx is a bitch ass mother fucker. He pissed on my fucking wife. That’s right, he took his hedgehog fuckin' quilly dick out and he pissed on my fucking wife, and he said his dick was (((THIS BIG))). And I said “that’s disgusting!” So I’m making a callout post on /site/: "Codexx, you got a small dick, it’s the size of this walnut except WAY smaller." And guess what, here’s what my dong looks like: PFFFFFFFFGJT. That’s right baby. All point, no quills, no pillows, look at that it looks like two balls and a bong. He fucked my wife so guess what, I’m gonna FUCK THE EARTH. THATS RIGHT THIS IS WHAT YOU GET, MY SUPER LAZER PISS. Except I’m not gonna piss on the earth, I’m gonna go higher. I’m pissing on the (((MOOOOOON!))) How do you like that, OBAMA? I PISSED ON THE MOON, YOU IDIOT! You have twenty-three hours before the piss d r o p l e t s hit the fucking earth, now fix the fucking site before I piss on you too!
>>15481 kek Someone stop robotnik he is popping off
I had to install Tor and now there's a white van outside my home pls help
>>15463 BANIC
>8moe dead >8se dead its truly over
>>15486 >8moe dead Ironically that's the only one that works for me, if I tell my browser to ignore the expired certificate. What is going on?
>>15488 Codexx the retard for some reason, doesn't have the certificate auto renew so Moe is down if you don't have tor or firefox
Same. .se has gateway timeout and .moe is http only right now. >>15489 Kek
when does codexx wake up
>>15489 Is .moe's certificate the reason .se and .cc are down too?
(2.43 MB 360x640 robotnik_scooter.mp4)

>>15479 Nvm, I can't, I thought for once when the 404 doesn't show up it would mean the geoblock was gone. Instead .se is gone too and I'm back to torfagging. Gj. Unusable shitsite.
>>15493 this was the wrong video
>>15492 No, they're different domains on different servers that connect to the backend as far as I know
Was this fag blackbagged or something? It wasn't down this long before and none of them are answering their emails or twitter
>>15494 >this was the wrong video It's still funny, I liked it
WHERE IS CODEXX IT'S BEEN 22 HOURS
>>15498 he's being a monster hunter....
guess he fixed it also I notced the hide image & captcha button on mobile and I would like that option in settings for desk top, same goes for android
(92.14 KB 768x799 Asuka nekospin.jpeg)

>Browser says certs are expired >Check certs >Certbot says "lol these aren't close to expiring yet" >Try it from a hot server in the prob network >Nope, not expiring soon!" X Doubt. I ripped all the certs down manually and reissued everything fresh. We should be back, but I don't have a good explanation for that bullshit yet.
>>15502 It just works. Thanks for fixing it anyway.
(4.14 MB 586x329 1740789517322302.webm)

>>15502 Come on man, what's going on? The site's been fucky for at least a few weeks. I don't want to be a dick about it, but it's a bad look for any admin to have this happen for so long. So what's the steps to at least attempt to stabilize the situation?
>>15501 noticed what button
>>15504 I'll put together a more in depth explanation and drop it here tonight. It merits more than a tl;dr, but its mostly just technical shit. I'll give you guys the dope on what we've been dealing with.
Is .se still down?
(64.65 KB 640x820 8chanmobil.png)

>>15505 the button in red (top) hides UI related to image uploads, the first blue (middle) button hides captchas, the second blue button (bottom) hides the "more" actions on PC
>>15508 is that safari I didn't even know they collapsed because they're text labels in other browsers I'd like to make it a [ ^ ] kind of button that slides up hiding the name/subject/message and exposing files/captcha/reply then becoming [ v ] that reverses it then if it was an option on desktop and had a ctrl-enter keybind to post, you could leave it closed if you don't need to solve a captcha or add files sage/email/flags should be done differently, maybe icons up top that show/hide the fields as a tabbed interface
>>15507 it alive
>>15509 >is yes > these sound like good ideas
>>15471 I can archive the thread, the issue is from what I've read your requests were to move the thread to the /ais/ which I CANT do. Tell me clearly if you want it to be archived or not
>>15513 Yeah, archive it. I wanted the content to remain accessible. Whether threads could be moved or archived, the goal of preservation is the same. Either way, users have had to go ask in meta threads & it's not an option that's open to vols from what I'd heard, only globals. I'd just do it myself if I could as it seems like any time this comes up we are needlessly hassling site staff.
>>15514 Vols can archive it, and I have no issue with helping with archiving threads What we can't do is move the thread from one board to another. That is something only global vols can do, but will no longer do due to the high workload and the implementation of the archive Hope that clears it up. I'll archive it in a bit.
>>15515 >What we can't do is move the thread from one board to another. That is something only global vols can do Ohh, so moving threads is globals only. I must have misread when people were talking about it before. K thanks
(357.47 KB 1536x1536 Asuka gamer late.jpeg)

So here's a bit of what we've been dealing with. The longest running issue is traffic interference from random ISPs around the world. Codexx and I have gone around and around concerning this, trying to come up with ways to fix it. The .moe network runs as a system of nodes on a round-robin DNS. So when you type the URL, you actually connect to one of the frontend networks chosen at random, spreading out the load on the site. This works really well for us. Except that, certain ISPs around the world, have one or more of our nodes on network level shitlists. Fuck me, this is even hard to explain while typing, but imagine it happens like this: You to to the .moe domain, and the roundrobin DNS sends you to server A, B, C or D. Well today when you connect you get sent to server D. Only you're connecting from Idaho, and your traffic is running through Los Angeles to reach server D. Well an ISP in Los Angeles has a network block on server D, and if the Internet decides the best route to the site is to send you over that ISPs lines, the site will time out and it looks like .moe is down! But its not. Its actually up and working just fine! Then tomorrow when you go to .moe, maybe it sends you to server B and connects just fine. OR it sends you to server D again, but the Internet decides some other ISP is a better pathway today, and so you again connect just fine. This shitfuckery makes it appear to users like there are random outages when its actually got nothing to do with us. Even Codexx is affected, but for some reason I'm not. So to me the site always looks like its doing good even if there's 4000 people who can't visit it that day, which makes it hard to diagnose. The middlemen of the Internet are fucking our shit up. I have complained to companies and been met with dead silence. With direct chats and lots of help from people who have been affected by this, I've noted at least three major networks dicking us this way. One in Los Angeles, one in Prague, and one in Eastern Europe. All of this was going on even before this new Age Verification clusterfuck started and networks got even more censorious. If we start throwing solutions at the wall they're likely to be invalidated one by one until the online situation settles down across the globe. When things stabilize a bit and we know exactly where we stand, we can rebuild the network to try and dodge this interference, and that will solve the problem for everyone. As to what happened with the certs today, it was party some unknown technical issue and also partly my fault. The tech issue is that, to renew SSL certs on a roundrobin DNS you have to have a master server do it while the rest of the nodes are slaves. We have that, its fully automated, and it worked perfectly fine... the first four times we used it. But the last two times something has gotten in the way, like Letsencrypt can't see one or more of the node IPs and the challenges fail, possibly because of the network fuckery mentioned above. We have no way to know. On paper our shit works and we've used it so we know it works. But for whatever reason something went wrong last night. The certs showed they were expired (August 3, according to my browser), yet when I pulled up the master server and tried to renew them, Letsencrypt told me the certs weren't close to expiry. I diffed the master cert with the slave copies and they were identical. And when I used the automated system to force a renewal it just failed over and over, where it never did that before. I had to go in to each server, tear down the SSL, manually renew a cert on one server, and then copy the new cert to the others by hand and restart everything. That finally worked. The part that was my fault was having today off from work. I turned off my phone, went to bed early last night, and slept in a while today because I had a billion errands to run. Apparently the certs bugged out just a few hours after I went to sleep. I woke up and was doing a little shitposting before leaving the house, checked my DMs and saw the problem. I feel like a retard, but what are the fucking odds? Edit: Oh and to top all of that off, the .se main server host got fucked on today. The site's back up, but the hosts entire network went down for a few hours, right at the same time we were dealing with the cert issue. Even their own website was offline. We're waiting on an explanation, but haven't heard back yet.
Edited last time by Acidadmin on 08/05/2025 (Tue) 05:00:45.
>>15517 >The part that was my fault was having today off from work. Sounds like circumstances out of your control and bad timing to me
>>15517 ACID THIS IS A SAFE FOR WORK BOARD! I CAN SEE UNSPOILERED NIPPLES!
(30.37 KB 500x487 Asuka bruh.jpeg)

>>15518 Kinda, but it bothers me talking about it because it sounds like making excuses and I hate that. The ultimate solution is for things to settle down enough that these mystery blocks aren't being maintained on us, and then move the nodes to new safe harbors. Codexx and I have also discussed the possibility of launching a private VPN for the site, which would allow access from anywhere even if half the net tried to fuck us. We always try to think 2 steps ahead of whatever shit might get flung our way. Its just frustrating to have cucked middlemen with piles of fiber line interfering with us and not even citing a reason why. It adds so many variables to the "how's the site doing?" equation that its taxing to even wrap our heads around it. >Mfw you literally need a bird's eye view of the whole damned Internet to comprehensively diagnose the problem. >>15519 lmao I actually forgot this was set SFW. Spoilered.
>>15520 There's also the emails getting swallowed by the digital void issue. It's nowhere near as pressing as all of the other stuff but it is quite annoying. >>15517 Thanks for the explination Acid.
Maintenance Tomorrow We are tentatively planning a site update. Be prepared for your extensions to break. >>15521 Our e-mail infrastructure has always been shit. Like you said, there's more pressing stuff and always has been. But we were looking into it a few months ago, and I'm staying optimistic that we can get something worked out soon. >>15481 I pissed on your wife and I'll fucking do it again! >>15471 I've moved that thread to >>>/ais/. We should try to figure out what to do going forward. I don't want to keep the globals busy with thread moves. Ideally boards can archive their own posts now. Is there any chance the AI generating community is large enough to just have a dedicate AI board? Or is it still reliant on traffic from /v/? Is there any chance that Mark is willing to archive your threads? >>15477 I don't believe so. We never quite worked out how to get WS working over Tor.
(3.58 MB 304x540 1736028124171049.webm)

>>15517 >>15520 Good write-up explaining the issue and why it's been such a shitshow. Bonus points for providing the grim, yet realistic situation without sugarcoating it. I imagine there's multiple broad strategies for each scenario with the current censorshit?
I own a dead board, but its locked from posting for some reason. I don't see any options to unlock it? How do I do so?
>>15522 >We are tentatively planning a site update Based and thanks for your hard work With regards to >>15471 's request, it was archived and then moved by you. They still have one more general up on /v/, and if they are staying I have no issues with assisting to archive the threads upon request on the /v/ meta thread, but I would also have to get the greenlight from Mark. That being said it would also be best if the posters in the general could clarify if they want to continue their general on /v/ instead of /ais/ or any other ai centric board
>>15523 >vid jesus christ
>>15523 i'd drink it
>>15523 diabeetus
>>15522 We'll fix the extensions quick no problem. Its good to see months of peoples efforts finally bearing fruit. >>15517 Sounds quite fucked and as a layman I have no solutions nor ideas.
(1.70 MB 3840x2160 The Strongest Thumbs Up.jpg)

>>15515 >>15522 Okay, seems the thread was moved AND archived. Thanks. >Is there any chance the AI generating community is large enough to just have a dedicate AI board? When cuckchan went down some used /ais/ as a dedicated place for it instead of as an archival board, but then a lot of cuckchan traffic left & posting looks somewhat sporadic there now. /v/'s AI general had some of that traffic for a short time, but complaints about the quality of cuckchan's AI content appears to have driven it away. I think the /v/ AI General remains a small pond that doesn't even want a lot of fish due to quality concerns. A dedicated niche that admittedly is reliant on /v/ traffic & kind of views AI generation's inherent RNG as a game in itself (but perhaps that's a stretch). I doubt there's any interest in bringing one dedicated niche thread onto a larger board where it'd either be split into multiple topics with far lower traffic or else be the only thread really moving on the board with the few people who agreed to go there. TL;DR Naw.
Speaking of the Archive. The [Archive] link on the catalog doesn't do anything. I figured it would either go to the archives page for that board or else switch to a catalog displaying only archived threads since archived threads do not appear on the catalog.
>>15531 yeah I'm going to unfuck them all to link back to the actual site archive pages and then add new options maybe in the thread dropdown menu for submitting to archive.today, along with copy text, history everywhere for mods, yadda yadda imo they're navigation links and should only ever go to site pages/functions I don't know why you would want to archive the index or catalog pages anyway and I'm sure it was just a quick hack then fix all the other broken links and shit like logs only being on the index/catalog, the navbar loading and moving the up/down arrows, the mod view being entirely fucked up, etc
Glovol should stop fucking around and clean up the CP spam already.
>>15517 >With direct chats and lots of help from people who have been affected by this Which other sites have been affected, if that's what you mean? It's fine if you don't want to be specific, or can just give a general idea.
>>15530 Correct me if I'm wrong, so this sounds like the intent is for the general to stay on /v/? If so, just make a request on the meta thread when it hits bump limit for it to be archived and I'll check with Mark to see if we can proceed to archive it upon request (There is likely going to be 0 issues with this) Cheers, and thanks for using our board.
>>15502 >>15506 >>15517 Yo, could this have something to do with /sp/ and 76chan currently being offline as well? I'm having the exact same errors as when I tried to access the .moe domain yesterday, which was NET::ERR_CERT_DATE_INVALID
Features >Tooltips work on Open Reports >Forward Hiding (inlined posts are hidden from the thread ("moved" to the inline)) >Backlinks of Hidden Posts are Hidden For strike-through instead, use: .backLink.filtered { display: inline-block; text-decoration: underline line-through; } >File Renaming >Watcher Manual Refresh Button >Deleted posts are more clearly marked and have .labelDeleted for styling >Ban Modal validates duration to prevent unintentional permabans >Download Progress Bars when downloading by clicking the File Name >Plaintext Filters are now case-insensitive >Regex Filters have flag support (/filter/flags) and render as such in settings .regex-slash for styling >Pasting Media opens the QR (if the posting form isn't fully visible) >QR clears on close localStorage.setItem("qrClearOnClose", "false"); to disable >Floating menus (QR, Oekaki, Multiboard, Watcher, Settings) close on <Escape> localStorage.setItem("escapeClosesMenus", "false"); to disable interfaceUtils.closeFocusedMenu() to bind your own >Hiding rewritten Hide+/Filter ID+ are now recursive and work on new posts Hiding maintains its state IE: unhidden branches stay unhidden Filters currently do not, they re-apply on refresh In the Index/Overboard/Multiboard, Hide+ on generals should work if they link the previous Dropdown menu items only appear if valid (no trip = no Filter Trip) Unhide buttons have classes for individual styling/removal unhideButton--delete/hide/hidePlus/hideReply/filter/filterPlus/filterReply >Twitch Embeds >PoW Bypass Validation Spinner Fixes >Misc Tooltips/Quotes/Backlinks fixes (flashing, dupes, posts not found, backlink wrapping, etc) >Misc Watcher fixes (refresh time to 5min, handling deleted posts) >Misc Advanced Media Viewer fixes (fullscreening, context menu, etc) >Empty Name field now saves correctly and Names are saved per board Old saved name is the default and still in localstorage if you need it >Gallery button no longer opens multiple copies >Catalog images remain lazy loaded and it only searches when necessary >Multiple stubs per hidden post hopefully fixed >Ban alerts present HTML Entities correctly >Penumbra and Penumbra (Clear) Post Form Header styling is restored, now with +/- >[moe], [doom], and [board] tags are non-greedy >[moe] glitter effect should stick to its text >Click Quoting inserts quotes and selections better >Removed duplicate Theme linking (less flashbangs maybe) >(You)s and Filters shouldn't be lost anymore
[Expand Post]>Post button shows "Uploading %" when making a thread >Posts constructed by Javascript now match their HTML counterparts (*except for expand post) >Floating menus layer and focus properly >Thread status buttons shouldn't be so wonky when navigating via the Side Catalog >LaTeX should handle errors better and is re-enabled >Spoilers work on Emojis Special thanks for Goodgirlbeam for both creating most of the fixes and also compiling a changelog for me. And also thanks to Tako, Mujau, and Doomkek for their contributions both to this patch and the last update. I would once again like to encourage extension developers to work with me to upstream some features. In general, I am happy to take quality of life improvements, especially where they impact all users. There's still a lot of work to be done, but the site's frontend is in better shape than it's ever been. Please keep bug reports and feature suggestions coming.
>>15524 We locked a bunch of old, dead boards because CP spammers were targeting them. I'm happy to unlock the board upon request. Post it here or send me an e-mail.
>>15538 >>Catalog images remain lazy loaded and it only searches when necessary finally lmao. no more 429s?
>>15540 hopefully not
has the Tor addr shat the bed?
>>15538 Thanks everyone for all the work. Page loading seems much better and faster now, no more theme flashing either. Catalog is much more responsive. I noticed the Escape closing of dialogs only works if either the QR or Watcher are focused, otherwise it won't work. CSP still needs to be fixed for Twitch embeds to work. Will those localstorage options get entries in the menu eventually?
>>15538 Thank you guys
>>15545 >I noticed the Escape closing of dialogs only works if either the QR or Watcher are focused, otherwise it won't work. that's intentional, but you shouldn't be able to unfocus them unless you manually click x on a different one, though I guess that should maybe refocus the last focused, too >Will those localstorage options get entries in the menu eventually? if people use them the settings menu needs an overhaul so I'm avoiding cramming more into it because it's already a disaster it's also probably fine to have extremely rare options intended for autists doing funky things to not be in the menu as long as they're documented somewhere when the usual expectation is using user css/js to tune the website, even for some common things
on palemoon(no clue if browser dependent), if i load enough threads that the "slow down asshole" trigger, even if just for the pictures in the threads, for some reason the favicon stops being served all together even in site tabs opened after this, even if pictures load again, of course moe & se are independent in terms of this occuring
>>15548 how are you triggering a 429 now? did you ctrl-f5 on the catalog to get the updated js? the only thing I can imagine is using a session restore that doesn't limit the number of tabs it loads at once per website and also using prefetching to hammer the server with image requests and if that's the case, there's probably nothing the website can do about that might be one of those "doc it hurts when I poke it" "well stop poking it" situations there's still a little room to slim down loading and improve performance since threads get loaded like three times during the page opening and don't even respect the cache controls, so that might improve next patch unless you're not using JS
>>15538 thank you for your service
I regret to inform you that the [ spoiler ] tag's still getting eaten...
>>15551 test ur a faget
>>15552 ...you are using the other spoiler tag, aren't you?
(1.35 MB 499x654 1412556733239.gif)

>>15553 They both work for me, is my point, so i dunno what you're complaining about, exactly.
>>15554 Ok. Test
>>15555 .moe test
>>15555 >>15556 So, in conclusion: it does not work on .moe Also, does ID not get carried over between the two anymore?
(41.98 KB 316x321 Untitled.jpg)

>>15557 Works for me on moe. Is it because you're doing .moe and not just moe? Like, the . might be fucking it.
>>15557 not for tor users because it only has your bypass also good luck finding out why it's doing that I can't reproduce it and it's the same code so it's not the domain maybe I can spin up a spammer on my local instance and see if it can ever be tricked into doing it with proper debug .test maybe it's dots
>>15555 .moe test
>>15560 not deterministic either
TESTING. ON. .MOE. AGAIN
.moe again
>>15562 >scripts good luck with that ctrl-f all of them for qrbody or qrbuttoon
>>15564 >ctrl-f all of them for qrbody or qrbuttoon Ok, so, lynxchan extended and 8chanSS have both of them and fullchanx only has qrbody. Now what? Report back to script makers?
>>15565 yeah maybe fullchanx is abandonware, so that's unlikely to go anywhere and likely the culprit anyway if there's anything left in it that 8chanSS doesn't have, they're still around and probably willing to port or it can go in the queue to be a site feature
>>15520 Have you and Codex ever considered an I2P eepsite frontend in addition to the Tor one?
Why does the close inline reply button not have a title tag so I can tell what it actually does
>>15568 I will answer my own question and say it's because it's added differently from the other buttons I searched "closeInline" in the 8chan source and I couldn't find anything but I guess it's not that important
>>15569 Yeah fuck it everyone knows that the x button closes things
(18.26 KB 436x266 i do not like this change.jpg)

Why is this happening?
(518.77 KB 640x360 8chan.webm)

oh i said it in the wrong meta thread because i have the brains of a chicken but image posting doesnt seem to work on /test/ or /b/, what the fuck?
>>15572 Works on my machine. What browser are you using?
(275.91 KB 1920x1080 SWORDS.jpg)

>>15573 Pale moon, the greatest and best browser with no flaws or drawbacks.
>>15574 Can't be a browser problem then cause I'm also using a mozilla fork. What's the format of the image you tried posting? I had something like that happen when I tried posting a .bmp and while the post went through, the image did not. I'm guessing the site doesn't support that format.
>>15571 Not sure. Someone did implement a download manager that can pull images from your cache to avoid re-downloading, but that was rolled out in the previous patch I think and has been live for weeks. I'm not aware of any change in the latest patch that would cause this. >>15572 >>15574 Pale Moon isn't supported. Even the old site didn't support it after the developers deliberately refused to implement support for something. It's just stuck too far in the past. We aren't even really supporting Waterfox anymore because its JavaScript engine is a solid 6+ years behind standards. >>15575 If the site/board doesn't allow an image format, it will tell you the file type is not allowed. If you submit a post and it eats the file, that usually indicates the file type is whitelisted but the thumbnailer failed for some reason. Sometimes it's edge cases with particular images and sometimes the thumbnailer is supposed to support a file type, but it actually doesn't, although the latter is rarer. As far as I know, BMP is supported. You can upload files like that to catbox or a similar site and I can try to upload it myself and catch the error.
Onion ded onion ded
(198.00 B 32x32 clinker_0.png)

>>15576 >You can upload files like that to catbox or a similar site and I can try to upload it myself and catch the error. OK https://files.catbox.moe/agpmxt.bmp Picrel is supposed to be the test bmp posted. I saw that same problem when I posted it in /test/
(204.30 KB 460x668 cock choke.webm)

>>15576 >Pale Moon isn't supported. The webms started fucking up on me months ago, but the rest of the site worked fine until today. Hell, i can post pics here and on /v/ but not on /test/ and /b/, can't even be SFW boards since /test/ is one, too. Whenever i click reply it just doesn't do anything, just text works fine, though.
(76.02 KB 407x218 noa question.png)

Any autist who already has a manual Fullchan-X fix to hover over posts in the post-by-ID list after the site update again?
>>15571 >>15576 It's also just strait up not downloading some files too. There's clearly some glitch but I can't figure out just what's causing it.
>>15581 This one >>>/t/23091 still works for me
>>15583 For the hover posts as well? I can still hover a quote and see the post on hover, just not on when they're in the ID post list.
>>15584 yeah? have you tried turning off 8chanSS' implementation of the feature?
NVM, it works on both for me
>>15585 I had 8chanSS disabled the whole time and removed it just in case but it still doesn't work for me unfortunately. Are you using Violentmokey?
>>15587 >Are you using Violentmokey? Yes. You're on Tamper? That might be the culprit
>>15588 Nah I'm on Violentmonkey as well. Fuck me I guess.
>>15589 ...Go into edit mode and remove the gear at the bottom of the script?
>>15571 >>15582 there's a change where it tries to continue downloading from cache if you already expanded the file but then try to download it, so maybe that's involved, but that path should probably only be hit if you click filenames to download >>15574 >TypeError: file.arrayBuffer is not a function how the fuck is it not broken on the entire site? >This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2021. grim, it used to use FileReader so maybe that's not that hard of a revert when they're functionally equivalent >>15589 ctrl-shift-r, also didn't 8chanSS dev implement that as an optional feature
>>15590 >>15591 Still nothing, I'll just use 8chanSS since the feature seems to work with that script. Thanks anyway.
>>15576 >>15572 >image posting doesnt seem to work on /test/ or /b/, what the fuck? I'm experiencing issues as well on /co/ and /rwby/. And not just on Pale Moon! I was also unable to post images using Ungoogled Chromium (Version 103.0.5060.134 in case you need to know).
>>15593 hotfix is submitted for arrayBuffer, check the console to see if that's it when you try to post with an image I'd check myself but github won't even let me download it
Tor still broke
>>15591 >but that path should probably only be hit if you click filenames to download yeah that's what I do since it saves the image as a file name instead of as UNIX gobbledygook. >if you already expanded the file It's doing it to me even if I haven't expanded it. I'm not sure what's triggering it, it's not every time but is happening commonly and it very obnoxious.
>>15598 what platform/browser?
>>15598 OK it's NOW happening every single time. >>15599 Tor.
>>15600 the current up to date torbrowser?
>>15601 Yeah. 13.5.20
(2.10 KB 263x48 1685484688222340.png)

>>15602 might be a bit off, tor's the one browser I definitely wouldn't lag behind on how do you even trigger that? I've never seen that dialog extension maybe?
(46.64 KB 293x128 ghetto Tor.jpg)

>>15601 My personal guess is that it's some security feature and Tor thinks 8moe is trying to do something nefarious and is blocking the download. It hasn't been doing this at all before 2 or 3 days ago and it's only been a problen on 8moe. >>15603 It's telling me I'm up to date. I'm on Windows 7.
>>15604 probably end of life for w7 support it's time to install debian anything in the console? if you can at least find the trigger, I could find the right place to add a disable
>>15603 All I'm getting is >Download aborted by user posting.js:340:15 Which I'm not.
(69.45 KB 239x181 loading but no download.jpg)

Like if I click on the file name it'll run through the whole progress bar like it's done loading but then it doesn't bring up a dialog box or automatically download or nothing. I can still right click > save from the file name. Also I just got this message. >Uncaught (in promise) DOMException: The fetching process for the media resource was aborted by the user agent at the user's request. Related?
>>15607 https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41854 maybe, looks like it was an issue with the spam protection in firefox 115 and they never got around to fixing it until maybe last year give me a bit to hunt down that version of tb and test an escape clause to use the old click to download behavior instead because there's probably no way to work around it sanely
>>15608 A bit more info. When I start a new session (new identity) it lets me download the image normally from clicking the file name but all subsequnt attempts to download that way triggers the error BUT clicking allow download fixes it BUT maybe only for the current session?
>>15609 Yep I can confirm, it does not remember my choice to allow downloads between sessions so I have to re allow it every time I reopen the browser.
>>15609 https://forum.torproject.org/t/download-bug-in-tor-browser-12-0-7/8043 yeah they report the same behavior there probably better to just disable such a minor feature when the old behavior is just a fetch and then some because I guarantee some other w7 holdout will show up in three years with the same problem
>>15610 ok so I can't seem to reproduce it on 13.5.20 is there some sort of configuration switch somewhere I'm missing? it just works tm
still get this 100% bug
>>15614 platform/browser/how to repro think I only ever managed to trip it once with a network error or something
>>15615 it seems to happen on double clicks when posting. I'm using Brave
>>15617 test
yeah there we go, it gets wonky when spammed on my local instance today anon >>15614 discovers his mouse switch is dying/needs cleaned but in an ideal world it should have a ~50ms debounce and then maybe cancel the post or at least closing the QR should cancel posting
>>15605 I'm on windows 11 and also not getting jack when trying to open the .onion domain.
Overall great update. Many thanks to the contributors.
>>15613 Did you change something? Because it not doing it now for me either. I hate intermittent problems.
>>15625 nope, I can't change anything it could be a script or extension tripping it maybe
>>15626 Well it's nothing on my end that's been changed as far as I can tell. I'll keep this thread appraised if it reappears for me.
>>15627 Dammit it's doing it again. I don't understand.
>>15628 well, I managed to trigger it, but only by trying to remove the current event listeners by cloning and swapping the links out, because I was going to offer that as a workaround for (const link of document.getElementsByClassName("originalNameLink")) { link.replaceWith(link.cloneNode(true)); } maybe you have a script or extension messing with them? they should only have the event handler from posting.js
>>15630 and now I can't trigger it with that either weird shame on torproj for ever enabling it without testing it thoroughly tbh I don't think it was enabled in the base firefox builds
>>15630 >maybe you have a script or extension messing with them? I don't. I've not added anything to Tor, not even new themes.
>>15632 welp all I can say then is try adding a dev override and see if that avoids it >console >debugger >find posting.js in the tree >right click >Add Script Override >save file somewhere >comment out line 157 like so: //posting.processAttachmentLinks(innerPost); >save >refresh page console has to stay open for dev overrides to apply should probably add an option to turn them off in general, but it's such a small change for most that no one ever would
Still can't post images on /b/ with pale moon but now i find i can't post them here or on /v/ either. This didn't happen until i noticed i could edit a file name after loading it in the reply bar, whatever happened there seems to have fucked everything for me so maybe disable that function since it seems pointless as shit. Also where's the language setting? The site seems to think my opera browser is itallian.
>>15634 the patch for the images not being postable is waiting on codexx actually have no idea how it figures out what language to use, I thought it was entirely a site/board setting italian vpn?
>>15635 Nope, i rawdog this site so unless it's something fucky with opera, and given the name it'd make sense to default to italian, it should be reporting back middle new jersey which isn't even the italian part.
>>15636 maybe your request headers are fucked up? >console >network >reload the page >click 5423.html >look for Accept-Language in Request Headers
>>15637 or just navigator.languages in the console, but the header itself also has the quality weights maybe just have to reset your browser language settings (regardless of whatever the dialog says)
>>15638 OK, so my languages were [1. English (US) 2. English 3. Japanese 4. Italian]. I deleted the italian from the list and it's in english now. Also i don't know shit about computers but i managed to follow half of that, couldn't find the 5423.html though.
>>15639 it's just the first request any of them would have worked actually curious why it would pick italian up from that for down in the list, maybe lynxchan is retarded or opera is other people have had a similar problem the header should be like "en-US;en;q=0.9;jp;q=0.8;it;q=0.7" or something
>>15641 Oh, i guess it's cause i tried looking at it on the frontpage and not in a thread, i see it immediately when i jump to here. I'm still browsing and posting on palemoon when i don't feel the need to toss images around.
>>15642 was fucking around with it and apparently if italian's anywhere in there it'll default to italian, but doesn't do it for spanish for whatever reason thanks steve, real cool
(29.25 KB 934x233 OYGBApz5hh.png)

This cancer alone backs my contentious proposal that the Global rules be changed to more explicitly bully the onslaught of cuckchanners who came back after realizing cuckchan was in fact, cuckchan, into actually integrating. For trying to hate on "pajeets," it seems like they take after them wholly. You give them the inch of accommodating their terrible spoiler formatting and they will take a mile. For fuck's sake, you would think current events would have educated this site's administration on the consequences of having the unwashed world flood in.
how is the Tor url still fucking down? explain
>>15645 If being retarded becomes a global banable offense I hope that they start with you.
For some reason everything loaded in Spanish for me, how do I change it back to English?
>>15658 remove spanish from your browser's accepted languages it's a bug with english not taking preference like it's supposed to
Just an fyi the new CSP is gigafucking userscripts on Firefox.
>>15664 only where they use inline eval... which is something they probably shouldn't be doing in the first place report errors to >>>/t/17721
I heard that youtube embeds stopped working for some people? on firefox? is dat tru?
>>15667 should be fixed now
STILL CANT POST PICTURES ON PALE MOON WHERES THE PATCH CODEXXX
>>15669 in our hearts, fellow palemooner
I don't know what you guys did but I feel like .moe has been way more stable recently, so good job
The feedback link in the footer still points to a non-existent thread.
>>15669 >>15670 It's live on the backend. Please wait for it to make its way through the frontend caches.
>can post 50MB per post >can't post 50MB video, only 32MB Allow one file to use the post's entire allowed file size, please.
>>15676 thanks
>>15676 seems live on the frontend ctrl-shift-r if you don't have it yet
>>15680 does work, thank you
.se is slowing down a crawl right now
When I write a reply in the text box, it no longer saves it if I go to the top of the page to use the larger posting interface to hit the reply button. This is a pain for mobile usage since it's easier for me to do that than flip my phone to portrait to actually see the reply button to begin with. Why remove functionality? I'm assuming this is just a bug since it worked fine in the past and if so, please fix it because it's inconvenient. (And while I'm here, making the reply button appear more easily in mobile landscape resolutions on the quick reply box would be nice too)
>>15686 it's intentional closing the qr clears it and there's a localstorage key to disable it if you really want to, but it's better to unlearn the antipattern to begin with just tap "Files" or "Captcha" to collapse the sections enough to see the reply button
>>15687 >antipattern what a repellent vernacular
>>15687 Both the files button and captcha are cut off in mobile landscape resolution.
>>15688 unc really said "vernacular" 🥀
>>15689 they don't even show in landscape on my devices, but then they're large enough that I wouldn't need to close the qr to scroll up the whole QR's such a clusterfuck and what you're doing shouldn't be necessary, but for now just chuck localStorage.setItem("qrClearOnClose", "false"); in a userscript
>>15690 >🥀 huh, you reminded me that the unicode fucks ain't completely useless when they ain't adding new emoji or kanji https://en.wikipedia.org/wiki/Symbols_for_Legacy_Computing https://en.wikipedia.org/wiki/Symbols_for_Legacy_Computing_Supplement
>>15692 sneaky mf
Does the site support post-quantum encryption?
(1.38 KB 179x75 wtf.png)

>he >po What the hell happened here? I'm 99% sure I didn't change the board tags. Is this a glitch?
(1.51 KB 184x85 fur tags.png)

>>15695 This is what it should look like btw. It's the only thing affected so I'm assuming the account wasn't compromised and it was just an error of some sort. I changed my password anyway just to be safe. Maybe check around Codexx and see if anything anywhere else has been messed with.
Looking around it looks like the tags from some of the other boards may have been abbreviated as well. >/pol/ - >politics, hist, hitl, curr Should be <politics, history, hitler, current events >/ac/ - >animación, should be <animación, , peliculas >/co/ - >comics, c, s, a should be <comics, cartoons, storytime, art, animation Possibly also >/hgg/ - >hgg, hentai games, >/h/ >hentai, 2d, porn, >/yuri/ >futayuri, >/hispol/ - >e, And maybe others. Something screwy is going on.
Can you implement image link pasting?
>>15678 The maximum size of each file is 32MB but all of them combined shouldn't be bigger than 50MB >>15698 Yes, you are right, this is a bug. Now, let's yell at Codexx together until he fixes it CODEXX FIX YOUR SHIT!!!!!!!!!
>>15700 Yes. I want to post a video that is slightly larger than 32MB but it won't let me, which is dumb considering the post supports up to 50MB.
>>15701 Read carefully, it's says 50MB total, 32MB each file. That's the reason why there's a bar showing how much MB you have combined. Just crop your video, 25MB each and problem solved.
>>15691 Lynxchan Extended-- sets this in the options now
>>15702 Dude I know it's that way, I'm saying it shouldn't be.
CODEEEEEEX >>>/v/1657663
>>15698 >/co/ spelling out CSA Since when were comics a Dixie thing?
I found a really annoying bug/feature. >open reply box, type something >select some part of it, or all (ctrl+A) >close reply box >open it again >post is gone with no way to recover it
>>15239 +1 on jxl I wanted to make a small thread on /test/ to see which browser could render them (with plugin if needed, I saw one for chrome-base browsers) But I got the message that "A file had a format that is not allowed by the server."
(931.85 KB 825x991 1580404469200.png)

What happened? Everyone stopped posting but everything works on my machine
>>15714 couldn't retain the 4chan refugees but the numbers are higher than before at least
>>15715 There's definitely more Jewish shills raiding the site with VPNs.
>>15715 >couldn't retain the 4chan refugees As a 4chan refugee myself, I really don't like how the threads that stayed here after the exodus are just closed circlejerks. 4chan might be a flaming dumpsterfire moderated by literal retards that enjoy pitting people against each other but at least you can say whatever you want anonymously and sometimes find nice discussion or nice threads where you can call someone a gigantic faggot then turn around and write an essay to help some random anon with his question. Most of the 8chan threads that stayed in /gacha/ (And /v/'s /bag/) are either 1-2 posts a day or closed circlejerks where you have to walk on eggshells and be super careful of what you say because you'll just get banned because you said something that upset the circlejerk and they demanded your public execution. Same arbitrary moderation where certain things are allowed just because even though the thread derails into shitflinging whenever they're brought up but other things aren't simply because the guy in power doesn't like it. It's tiring and if it's going to make me feel tired then I'd rather just take my chances with the other website then feel happy whenever I find a thread that has actual discussion instead of absolute spergs.
>>15717 >closed circlejerks where you have to walk on eggshells and be super careful of what you say because you'll just get banned because you said something that upset the circlejerk and they demanded your public execution As someone in a lot of circles here that get 1-2 post a week, I really wonder how much of a chimp you're acting for this to happen.
>>15718 The 1-2 posts a week threads are fine, they're just too slow so I'll look for other threads. The issue is with the fast threads that are basically 4chan lite since it's all the downsides of 4chan with none of the upsides of posting on 4chan. The worst of both worlds for sure.
>>15719 Let me guess, you are throwing a tantrum for getting slapped on the wrist for spreading misinfo and concern trolling about nintendo shit.
>>15717 always wanna see these niggas post history to see which it is of >I have a bait skill issue >There's no bait for me to bite and must consoom >I'm an autistic retard that can't express myself without 2.3 kys per post and have no worthwhile takes in any case
>>15720 >>15721 Yeah, see, this is why the site failed to retain all the posters that came here. Nobody likes hearing that their favorite circlejerk is bad and automatically assumes everyone that disagrees with them is bad, evil and trolling which generates these kind of posts. Every poster thinks themselves to be above everyone else because they're the only smart person in the thread which means civil discussion is nearly impossible since every thread descends into this the second someone posts an opinion they don't want to hear. As for the thing about threads turning into circlejerks, discussion is a finite thing since you can run out of things to talk about but 4chan's general culture means the thread must be kept alive at all costs so every single general derails into a circlejerk that ends up more about anons shitposting each other for fun or idiots getting insanely defensive whenever anyone disagrees with them since they take every disagreement as an attack on their home thread and favorite place. It's funny how this site is supposed to be all about freedom of speech but ends up infinitely more restrictive than 4chan.
>>15722 >psued finds out psuedposting is only appreciated by other annoying pseudposters eureka!
>>5423 who are the people in 2nd picrel?
So, how am I supposed to access this: https://archive.8chan.moe/.media/bf9c779cd98c0f678827e2fe389255948c27d1495341ab388968dacb19ca036d.png Without VPN it tells me the standard .moe stuff of Error 404 Varnish. With VPN it tells me Error 403 Please use the main domains Varnish. I just wanted to get this picture.
>>15726 Remove the archive. from the url and it will work
>>15723 Shut the fuck up, nigger. >>15722 >>15717 It seems you don't understand how 8chan works. By free it means as in anybody can make their own board and rule it whatever the fuck they want as long as it's not for pedoshit, /gacha/ jannies can ban all the words that start with the letter N, we don't care. Don't like how those boards are handled? make YOUR own spinoff with YOUR rules that YOU think are the best. Don't want to make your spinoff? then fuck off.
>>15729 I realize it was a different group of people on an effectively different website, but remember when imkampfy filtered 'nigger' on /pol/, Ron/Codemonkey got so swamped by complaints that he came in to /pol/ to talk to him, and got banned and had his name filtered as well? I bet if a fuckton of people started harassing Acid or Codex over a board being adequately shit, he'd do SOMETHING about it. The REAL difference is it's just about the exact same problem as 4chan, mods=fags, except there's less population here so it's harder to avoid arbitrary bans, unless you're behind seven proxys i guess.
mh, could this >>0 post even be made?, i don't think so, but if the system does recognize the number, i also don't see it as that much of a issue
>>15731 no, but could make it do something special maybe link it to the board rules and render them as a post in the tooltip
>>15718 He's probably posting cuck porn
>>15732 mh, might be neat
>>15730 Agree, but that's an extreme case, most of the time, just make an alternative board.
(37.85 KB 510x312 penumbra-highlighting.png)

(38.29 KB 502x303 lain-highlighting.png)

The Penumbra and Lain site themes have hard-to-read syntax highlighting.
>>15730 Then you have no idea what you're talking about. The entire site spent the better part of a whole year freaking the fuck out at Acid and Codexx to deal with the pedoniggers. Both of them vehemently defended their right to post pictures of children in their /b/ containment thread for 8 months straight until the site host got wind of it and threatened to pull the plug. While that instance was particularly retarded and gets memory holed, it's clearly evidence that neither of them give a single fuck how an individual board is operated, which is ultimately a good thing. The only reason Ron swung his dick around on /pol/ is because he was delusional about the site being a cash cow for Qniggers and thus couldn't care less about respecting how individual BO's choose to moderate.
>>15746 >it's clearly evidence that neither of them give a single fuck how an individual board is operated only if you ignore the actual outcome in which they changed the way the site operated for the worse and appointed one of their cronies to run a scorched earth campaign on /b/ rather than let it go up for claim and end up in the hands of someone that would choose to moderate it in a way they didn't approve of. and speaking of /pol/ they gave it to a kike thats intentionally sabotaging it because he has a grudge against them for getting 8chan deplatformed and they do nothing about it because just like with /b/ its better to make the board unusable and ensure it can't cause any trouble than deal with the consequences of their own promise to provide a platform for everyone.
(216.93 KB 1280x720 test video-2.mp4)

I was trying to upload a .mp4 file (https://cdn.donmai.us/original/84/a4/natsu_and_airi_blue_archive_and_1_more_drawn_by_emaiyu84a45b6c3bd43b7e6e3557028c5dfdb7.mp4) recently but the website gave me the "A file had a format that is not allowed by the server" error and I'm not sure why I've seen people reporting the same thing and I've had it happen with other videos too, so I think it's worth looking into Reencoding the video works fine but it's still pretty weird
>>15749 Link to the original video got fucked by tags, let's see if this works fourth time is the charm https://cdn.donmai.us/original/84/a4/__natsu_and_airi_blue_archive_and_1_more_drawn_by_emaiyu__84a45b6c3bd43b7e6e3557028c5dfdb7.mp4
I'm just going to post this debacle from the >>>/v/ meta thread as a testament to how dogshit the moderation there has gotten, where they'll unironically side with a tyke cycling IDs and abusing the report system to ban the oldfags who point it out. Needless to say I'm not going to post there so long as this crap keeps going on. I guess I now understand why Mark has the reputation he has.
>>15753 Hypothetically, what if that first one was the hive getting kicked, and thus swarming in defense of the nest? So instead of one turbo-retard, it's a bunch of drones? I do agree that the other two shouldn't have been deleted since that's actual technical information that could help.
>>15757 Regardless of whether I pissed off one sperg or a bunch, I got banned for "spamming" (aka calling out how the cuckchanners were creating shitty threads and Foolzposting which upset them and caused their whining and mass-reporting you see), so I guess instead of actual substance and 700+ post threads Mark and the vols just want those underage pests that antagonize everybody and post the trending Xitter buzzwords to replace the oldfags instead, and they'll ban anybody who disagrees. Right now their fixation is trying to get the /bag/ general off the board so they can post threads like third and fourth pic related. I'll let them experience their utopia of cuck/v/ 2.0 until they start bitching about where the "good times" went (they fucking banned everybody, that's what). What's ironic is that they are using the exact same tactic of projecting their own faults onto the /bag/ posters, accusing them of being low-effort shitposters unlike them who post dogcrap /vb/-tier OPs that barely get any replies and find excuses to pick fights over nothing.
>>15758 >still mad unc with that facebook boomer rage type shit 😭
(25.46 KB 954x153 mullvadbrowser_rKZ6bLcGSR.png)

>>15759 Oh no. The phoneposters are here. Whatever will I do.
Hello, please address: >>>/tech/65
>>15761 what's the point of /tech/ when you got /t/
>>15753 >>15758 Lmao this little sperg who can't read is still mad. >just want those underage pests that antagonize everybody That is literally you though and you admitted to going into different threads to announce sage and shitpost about 4chan while contributing nothing. Those threads that you screenshotted were deleted, because it is very clearly against the rules. Why even try this hard to lie when someone can just open the catalogue? Glad to see you gone! But we all know you will come crawling back. You will keep crying and accuse everyone who you don't like of being a cuckchanner while contributing nothing of value, and you will keep getting banned.
>>15763 Hi Stray.
>>15753 >>15758 >/v/ is cancer More news at 5
(278.85 KB 700x434 So stupid.png)

Does anyone have the CSS code for how /gacha/ made their Post IDs have those anime girl avatars? I can't find it with Inspect. Help a poor man out here.
(25.09 KB 780x219 de way.png)

>>15771 almost like it's not css
(55.26 KB 494x266 Idiot Sandwich Oscar.png)

>>15772 Ah, thanks. LMAO
Seems like one of the global text filters is filtering something that it shouldn't, observe: in-dejewsonversations
>>15774 jews? what could those four letters mean?
(197.31 KB 725x925 Untitled.jpg)

(278.68 KB 831x887 Untitled2.jpg)

>>15775 A quick search on the internets and through a PDF reveals the answer.
>>15776 Sad but it makes sense then Wonder if it's a good idea to change the filter because of that at all
(578.99 KB 1116x1600 00.jpg)

(58.40 KB 200x200 01.jpg)

>>15777 it makes no sense and only hinders the people it isn't even designed to censor in the first place. anyone who would self-censor with asterisks or saying shit like "pdf-file" would be rightfully bullied for it yet everyone puts up with the same cowardly bullshit being imposed on them through global wordfilters. while actual loli artists use these verboten keywords as easter eggs you weeaboo faggots are pissing your pants over them its pathetic.
>>15778 >anyone who would self-censor with asterisks or saying shit like "pdf-file" would be rightfully bullied for it yet everyone puts up with the same cowardly bullshit being imposed on them through global wordfilters In the case of Mark, he'll just ban the people who bully the self-censoring dipshits. <weeaboo Well, fuck, I'm replying to Luciano, aren't I? Either way, fuck off.
>>15780 i think it's LCP
>>15774 weird that it triggers even with the space. was it an attempt to filter commercial CP spam?
>>15782 iirc global filters always ignore spaces
>>15778 That's there to avoid feds filling the site with pedo keywords and attempt to classify it as a pedo site so they can shut it down. Same as the rest of the filters. >Those letters on his socks She has to be pretty proud of her Percutaneous transhepatic cholangiography. >>15782 >>15783 Yes, because the same feds use s p a c e s and other in between characters to avoid getting caught by automods of black lists.
>>15784 Doesn't that defeat their own scraping?
(62.34 KB 768x768 big guy for you.jpg)

>>15785 Glowies weren't particularly the brightest, hell if you've paid attention to current events they've screwed up all sort of times. They printed out screenshots of prime on paper and tried to interrogate a poster who filmed them.
>>15784 >>15785 >>15786 it's not feds that do it. it's just siberians/vladivostokians trying to rip pedos off by spamming various places (not just imageboards) with CP links. this place somehow doesn't have a lot of that, i wonder how they mitigate it.
>>15787 poor hunting grounds it's not worth their time if few see it and fewer click it
>>15787 Truly, Hitler was right about their kind
>>15787 >NOOOOOOO not the Fedstreet Glownogs!
>>15791 peter thiel
>>15784 >>15786 >>15787 It's not governments who spam CP. It's people who are advertising their CP sites and who make money off the downloads. Here's some information about the people who spam CP on imageboards: https://trashchan.xyz/meta/thread/374.html
>>15793 does this need its own thread?
Your site is so fucking broken on mobile it isn't even funny, I'll go on my favorite board to shitpost and it suddenly pulls up a fucking full spanish language redirection page, or some other random image, and then not let me into the board catalog and just perma refresh. Please fucking fix.
(198.31 KB 884x1080 he laughed - color.jpg)

>>15795 You deserve this for being a (((phone poster))).
>posting here on a mobile device I shiggy diggy
(2.04 MB 640x480 PANIC.webm)

.se is a 502 error page
(247.48 KB 850x614 1752792348613000.jpg)

(100.24 KB 200x200 DorEi Dance.png)

8chan is dead again. Bad Gateway error, Node: 29c6cb20c35967bf4420b6fb250d835b And month 5 of .moe being dead.
>>15803 .se is down for me but .moe is fine on my end.
>>15805 moe has four nodes, so 75+% of people are fine the rest get the struggling node and go "OMG THE WEBSITE IS DOWN" instead of toggling their vpn location or binding the domain to a good one
>>15806 Some of us can only access the site through .se because all nodes of .moe are forever blocked for us so .se dying is the same as site dying
>>15805 >>15806 .se was working for me and then crashed, what even caused this?
>>15807 where in that post did it mention se that's another matter it also dies harder since its nodes go down in sync historically due to >>14788 >>15325 >>15517
>>15805 .moe has been down since the rapefugee flood. >>15806 Idc, it's too cumbersome to switch on VPN jsut for this. And wdym binding the domain? Poland is being blocked access. So .se is the only site that works, ever since then. So yes, 8chan is kill (again (again (again)))
>>15810 Just download TOR and hop on the .onion, it always works even if both .moe and .se is down and is 100% free and takes 10 seconds to open. I always switch to it as a kurwa like I did right now. The link is always there at the top of the page
>>15795 werks on my phone in fact i think this IB mogs the other ones in terms of mobile UI
>>15806 >binding the domain Could you please describe this for all the retards in the audience (me and 15810)?
>>15813 set it in your hosts file if your browser uses it, or force it with --host-resolver-rules="MAP 8chan.moe x.x.x.x" in chrome-based browsers (sorry firefox) or run your own dns and force it there
>>15811 How do you think I am posting at all? But it's inconvenient, so I'm out. How many outages was it at this point? I've lost count.
>>5423 >Suggestions and Feature Requests Hey, Codex, you may want to take a look at: https://flyingdogis.land/ The site has features like the ability to read PDF/CBRs directly on the site, in addition to some of image scrapper that links to original hashes of images. Do you think any of those features could be implemented on the site?
Who's a bad gateway? You are!
(1.01 KB 168x43 allowed.png)

Assuming for some reason one would want to is it possible to white list .apng but not .png?
.se is back.
>>15816 Linking to image source based on the file name is a feature in Lynxchan Extended
cp spammed to /b/
.se is gone...
>.se is doing a yo-yo Has any headway been made on the situation?


Forms
Delete
Report
Quick Reply