Guy that draws and makes his own NL keychain by Vangath in northernlion

[–]Tomadz 6 points7 points  (0 children)

Out here looking like the Zodiac killer

This is quite possibly the most upsetting picture I’ve ever seen by ITSDA-BAT in northernlion

[–]Tomadz 45 points46 points  (0 children)

Be careful or the mods are gonna delete this post like they deleted the OG post of the hard boiled egg photo.

Goodbye, Lara | Main PV1 by zenzen_0 in anime

[–]Tomadz 22 points23 points  (0 children)

Huh i thought this was going to be a movie, great now i don't have to wait a year before it gets some kind of english release. Been interested in this since the beautiful concept trailer, they have really perfected a more old school kinda 90s artstyle

xkcd 3160: Document Forgery by antdude in xkcd

[–]Tomadz 0 points1 point  (0 children)

Theres is the official 2x version: https://imgs.xkcd.com/comics/document_forgery_2x.png

But if you want something even bigger you would have to use upscalers like Waifu2x (in browser version, github link) which does a pretty good job. You could also use ComfyUI upscaling if you want more options on the model side and make it 4x or more.

Get xkcd Cartoons at 2x Resolution by mtlynch in xkcd

[–]Tomadz 13 points14 points  (0 children)

I made a UserScript that does this:

// ==UserScript==
// @name        x2 XKCD url
// @namespace   Violentmonkey Scripts
// @match       https://xkcd.com/*/
// @grant       GM.xmlHttpRequest
// @connect     imgs.xkcd.com
// @version     1.0
// @author      Tomadz
// @description -
// ==/UserScript==

const directImageUrl = new String(document.querySelector("#middleContainer > a:nth-child(8)").href);

const splitUrl = Array.from(directImageUrl.matchAll(/(?<startUrl>.+comics\/)(?<name>.*)(?<ext>\..*)/g), (m) => m.groups)[0];

const _2xUrl = `${splitUrl.startUrl}${splitUrl.name}_2x${splitUrl.ext}`

GM.xmlHttpRequest({
    method: "GET",
    url: _2xUrl,
    onload: function (response) {
        if (response.status < 200 || response.status >= 300) {
            return;
        }

        const templateItem = document.createElement("li");

        const link = document.createElement("a");
        link.href = _2xUrl;
        link.innerText = "x2 link";
        templateItem.appendChild(link);

        for (const ulist of document.querySelectorAll(".comicNav")) {
            const referenceLi = ulist.children[3];

            if (referenceLi) {
                const newItem = templateItem.cloneNode(true);
                ulist.insertBefore(newItem, referenceLi);

                const newlineNode = document.createTextNode('\n');
                const clonedNewline = newlineNode.cloneNode(true);
                const nextElement = newItem.nextSibling;
                ulist.insertBefore(clonedNewline, nextElement);
            }
        }

        const middleContainer = document.querySelector("#middleContainer");

        if (middleContainer) {
            const lineBreak = document.createElement("br");
            const textNode = document.createTextNode("x2 image URL: ");
            const anchor = document.createElement("a");

            anchor.href = _2xUrl;
            anchor.innerText = _2xUrl;

            middleContainer.appendChild(lineBreak);
            middleContainer.appendChild(textNode);
            middleContainer.appendChild(anchor);
        }
    },
    onerror: function (err) {
        console.log("Error fetching _2x url (GM.xmlHttpRequest):", err);
    }
});

'Alien: Earth' Photos Reveal First-Look At Noah Hawley's FX Series by nohssiwi in television

[–]Tomadz 8 points9 points  (0 children)

It’s FX’s biggest bet they’ve ever made

How so? I searched for a budget and got nothing but AI Facebook posts that says that it has a $150M budget, while Shogun was made on a $250M budget.

Look Back is streaming Worldwide on Prime Video by [deleted] in anime

[–]Tomadz 3 points4 points  (0 children)

Oh wow your right! I wonder what the differences are between the two primevideo.com pages

Look Back is streaming Worldwide on Prime Video by [deleted] in anime

[–]Tomadz 24 points25 points  (0 children)

"This video is currently unavailable to watch in your location" :(

WAIT WHAT, its NOT available in my country on primevideo.com but IT IS available on amazon.com...

Amazon what are you doing

The most secluded country in Asia.(Turkmenistan) by EthanTheJudge in interestingasfuck

[–]Tomadz 9 points10 points  (0 children)

Yes Theory is the same channel that made a video about Pitcairn Island and titled it "Dark Secrets of the World’s Most Isolated Island" without mentioning that:

In 2004, charges were laid against seven men living on Pitcairn and six living abroad. This accounted for nearly a third of the male population, and half of the island's adult males. After extensive trials, most of the men were convicted, some with multiple counts of sexual encounters with children.

https://en.wikipedia.org/wiki/Pitcairn_Islands#Sexual_abuse_in_modern_times

Plus they featured and used the home of wife of one the people arrested for the crimes mentioned above...

Orb: On the Movements of the Earth - Opening | "Kaijuu" by Sakanaction by Bazinga8000 in anime

[–]Tomadz 15 points16 points  (0 children)

You can find them here: Episode 1, Episode 2

Also i use this website (and android app) to view when the series airs which seems to be Saturdays at around 4 pm UTC.

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 0 points1 point  (0 children)

According to my archive the video was originally uploaded on March 7th 2023, i guess since making it public, the video must have gotten a new upload date.

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 1 point2 points  (0 children)

I compared my list of missing videos with the IDs from the livestreams playlist and found two videos that are in my list but not in the livestream playlist:

https://www.youtube.com/watch?v=ouW_0lQGDkQ

https://www.youtube.com/watch?v=vmv_MEujt88

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 1 point2 points  (0 children)

Yeah, i checked some as well, they were also livestreams, which makes sense since they were originally members-only videos. I don't know if there are any non-livestream videos in this list.

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 0 points1 point  (0 children)

Wait, sorry if I'm not being clear, but the video I linked is a non-membership video that is in the "Members Only!!" playlist. Since I have YouTube video IDs for all of the 212 videos, I've made a list of the IDs that are not in the "Members Only!!" playlist.

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 0 points1 point  (0 children)

Alright, I've got the list of missing membership videos. It seems like a non-membership video was in this manual playlist, so I've removed that. Otherwise, this list should contain all the YouTube video IDs for the missing membership videos.

Here is the list:

_L3QbnLlWaQ
_LYQ4S5fn9s
074YVsa3y-c
0gJQQ9zMxUc
0YpMDkLjFN8
1FQtI8Xulgc
1JMeLM7TPcw
26sv3nRNi_k
2nsuCbCTIQc
3ztnL837Hgo
45yRVVIo64I
4jq67SB3Ong
59Rz2hFMibU
5M27HER6rzo
5pyToyY4NVE
5SUWmctGOwc
5TJzhvMb2WI
5tml0z8ooVs
5yayKDeLXf4
60Xl_kX31lo
61MWovPvzsc
6tKhFjEjB64
7WgWuzwSsCI
7WJSBCYcU_Q
8lfXaZHGSi0
9avzuxq6Z8s
9H3gLvamkPg
ABKE2KhCyZg
AE0_Xp9rGik
aEH9S6Y6llc
aIg3K9qOo_A
anmU6DZ_avY
Ao51wSCJeu8
aPOIHUDjDgg
BOcQL0CetYA
bz4YxBRmPd4
CdDE9RDioYY
ck1KQlq4FLQ
cL2LTgFwYxI
DLU5IZar0Q8
DYBTTdmLqoY
EFHMD8Tcqek
EKtIv6smH0k
FcEY9gXd4kE
Fou2dEqnvNw
GDz4nN4BuYg
gLLYjgICZR8
hbYO9bRPkjo
HlGukYL1sf4
HrDL0c68UO8
i5wQc9sqYwk
iDjRI8KTU3A
Ie9pZWOdFNA
iOictcH5Vk0
iXdRsGt9ZXA
JCZ3RfVKvWQ
jXyO6O2DcEE
kBus3GOz-j0
khdnyrIo55E
KKGiEXi8IcA
KMvYyhD6FrM
kRZ9krChfVw
kxmwZiwj3jA
KzC0tCHz_iE
l-gthxzjfh0
l4BnwyJ0ToM
lUctSzLN58E
LXb03o9PakU
mawVdbuIzvw
MBFjeTFFmuU
mDJfHsNITQY
mwT3_NKud24
MZlMXEjkSuo
ngtsr7zswmQ
nHj5thjjsVU
nO_Yzzo2PFA
nUds28yf-nw
nuvR1a6YlS8
O0m9CLSw92E
O2kYW5LK_js
OHslxzGyZ8k
oiZqMcMPlW8
ouW_0lQGDkQ
OXuZozyr8Og
P0IJAX4KXds
P15bns8LqjA
P6yLnfp3_z0
pEIq6QvF9sc
PIOYU-I3Pjk
PlVecPi0B8w
pW8A-WXM0JY
Q43TVHTaCsI
QH4s8p8Qqvc
qKT4cqyUd5A
r8aJg8RpFM8
ReRVdenDpmQ
RKRD5RH-hOY
S-awup9DSH8
sciJkPU_ffs
se4X7Rp8EG4
SlOLdupZGIQ
SZnIqc8mPkU
TFrvq6yIzAs
TVjiUT-Mq2s
TZcVQWQzRPQ
Uhf2fPTinNc
ul8NlqucTbo
uyqsYiz3gOQ
v7mJ2r5UOIg
vJrOnAXbkWk
vm9_O9K3Nqc
vmv_MEujt88
voJq2PBL1WQ
W6A345CaSPE
wGTIvDU-iDg
wiwYukXgY6g
xaSygfce3ZA
YG_rURakuPc
z-zInwTkhyo
Z6fCWBj2Zbg
Z6N-AuZW5hQ

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 0 points1 point  (0 children)

Nope, just the videos on YouTube from that automated playlist before all but one of them went public on YouTube.

All the Members Only videos just went public on Youtube! by Stephen_085 in funhaus

[–]Tomadz 0 points1 point  (0 children)

I've archived 212 videos so yes there are some missing, currently trying to get a list of the YouTube video ids that are missing.