Why is the https Sup Forums image server slow as fuck?

why is the https Sup Forums image server slow as fuck?

Other urls found in this thread:

is2.Sup
is2.Sup
myredditnudes.com/
twitter.com/AnonBabble

Because of Sup Forums. Also, the first thing gookmoot did was to fuck up the servers.

I'm so sick of Sup Forums's speed it's always slow as fuck.

Because thirsting weebs would crash the site if it wasn't throttled

>is2.Sup Forums.org/...

Change to:

>i.4cdn.org/...

Kill the gook, fap to gook.

write a greasemonkey script to do this problem solved

I mean the is2.Sup Forums.org

not is2.Sup Forums.org

// ==UserScript==
// @name 4chanimgfix
// @namespace Hiroshima Nagasaki
// @author Anonymous
// @match *://boards.Sup Forums.org/*
// @grant none
// ==/UserScript==

var a_scan = document.getElementsByTagName('a');
var hiroshima, nagasaki;
for(var i = 0; i < a_scan.length; i++) {
hiroshima = a_scan[i];
nagasaki = hiroshima.getAttribute('href');
if(nagasaki) {
hiroshima.setAttribute('href', nagasaki.replace(/is2?.Sup Forums.org/gi, 'i.4cdn.org'));
}
}

Thanks, got the script running.

I'll see how it fares.

Although it doesn't seem to work with the Update button.

Just on a total page reload.

The chink changed the image hosting to a cheaper one months ago.

disgusting
document.querySelectorAll('.file a').forEach(a => a.href = a.href.replace('is2.Sup Forums', 'i.4cdn'));

try restarting your computer

No the issue was that you click on a thumbnail and the image would take like more than 20 seconds to even start loading. Not that it took slow to load. And then only with the encrypted connection.

But this script
does change them over i.Sup Forums well enough.

Works too.

But again not with page update, just reloads.

Is this a Greasemonkey thing?

Ok, pulled a good one from the archive that fixes the links even when using the "Update" link

// ==UserScript==
// @name Rewrite is.Sup Forums.org
// @namespace
// @include *://boards.Sup Forums.org/*
// @version 1
// @grant none
// ==/UserScript==

function fix(n) {
[...n.querySelectorAll('a[href^="//is.Sup Forums.org/"]')].forEach(a => a.hostname = 'i.4cdn.org');
[...n.querySelectorAll('a[href^="//is2.Sup Forums.org/"]')].forEach(a => a.hostname = 'i.4cdn.org');
}
fix(document);
new MutationObserver(function (ms) {
ms.forEach(function(m) {
[...m.addedNodes].forEach(fix);
});
}).observe(document.querySelector('.thread'), {childList: true});

using this, how do I confirm it's actually working? images still load slow as shit.

the images should be at i.4cdn.org instead of is2.Sup Forums.org or is.Sup Forums.org

it's right in the script.

My original issue was that clicking a thumbnail or even opening the image in another tab, would take like 20 or 30 seconds to even start loading.

The actual speed of the download was good enough.

But I am using the https connection to Sup Forums and the image servers.

Gook moot a shit.

yeah they're at i.4cdn.org

am also using https.

they start to load immedietly, but they load slow as shit. we should lynch that fucking gook jew.

i've changed my hosts file to resolve is.Sup Forums.org and is2.Sup Forums.org to the ip of i.4cdn.org

still slow as shit. fuck joot. really makes the site fucking unusable.

Yeah, definitely not fast, but at least they're loading for me now using i.4cdn.org.

I wasn't exaggerating when I said it would take between 20 or 30 seconds, even longer to even start to load with the default is2.Sup Forums.org domain.

God bless, this works great. Thanks user.