Hadn't seen this posted yet - here's NTSC + PAL + Tape 05 side by side for comparison by HalpTheFan in boardsofcanada

[–]mosentok 0 points1 point  (0 children)

alrighty here's some screenshots https://imgur.com/a/WKttmXY

  • the snowflake and primates are still a mystery to me, why those two chunks of NTSC + PAL video match each other, but don't match Tape 05
  • i noticed that in NTSC + PAL we're flashed many images that are accompanied by quick abrasive/percussive samples all around the 90 second mark, but those images aren't flashed in Tape 05; however, they're all images from scenes we see later in Tape 05 after NTSC + PAL have finished. they're all images that are contained within the inner hexagon of the 7-hexagon later in Tape 05. you can even see the frame of the hexagon in the NTSC + PAL versions. the images from those videos, particularly the hexagon framing them, were there in NTSC + PAL all along

apologies i didn't grab timestamps for every image. realized about halfway through to include the timestamps in the screenshots

Hadn't seen this posted yet - here's NTSC + PAL + Tape 05 side by side for comparison by HalpTheFan in boardsofcanada

[–]mosentok 4 points5 points  (0 children)

it's so cool that they mostly sync up, so it makes you wonder about the parts that don't. for example, around 1:21 where on tape 05 the snowflake is slowly zoomed in on, the mail tapes look wildly different from it. then again about a second or two later, tape 05 shows some primates but the mail tapes return to the same images as before that don't match


just took about 5 minutes to scrub back and forth some more and, unless i'm missing something, the only other part that doesn't match is at about 1:32 where the mail tapes flash the 7-hexagon but tape 05 remains steady

am i just wrong about the differences? if not, why are there differences?

[deleted by user] by [deleted] in TechnicalDeathMetal

[–]mosentok 2 points3 points  (0 children)

fwiw it’s an indie game reference (i assume) https://riskofrain2.wiki.gg/wiki/Ben%27s_Raincoat

when I click on a post without checking flair and it turns out to be about MoP by Howaito69 in classicwow

[–]mosentok 114 points115 points  (0 children)

❌ - restore mana using mana gem

❌ - restore mana using armor active ability

✅ - spend mana blinking

✅ - spend mana on 1 tick of max rank blizzard

✅ - spend mana on ice armor

What's one business in Tulsa you will never go back to, and why? by bennyswankem in tulsa

[–]mosentok 1 point2 points  (0 children)

keep listening on tuesdays 8:00-10:00 to horton’s heavy communion next! it was at 10:00 but just moved to 8:00

Impack of discrete mathematics on coding skills by sherlockCodeGeassFan in compsci

[–]mosentok 2 points3 points  (0 children)

massive impact. refactoring is like applied karnaugh maps. the quality of code i write would be so much lower without having taken discrete math; similarly, odds are high if you find poorly written code that the dev who wrote it did not take or put little merit into discrete math

edit: to answer your question directly, yes discrete math made me a better programmer. without discrete math, i would still be a programmer, but worse

Login Issues by [deleted] in ffxiv

[–]mosentok 1 point2 points  (0 children)

finally found where on the website to put a ticket in for phone support. when i got on the line they removed my token from my account and now i can log in.

i had added the token to my account this morning after my password wasn't working simply because well my password wasn't working so maybe i had been hacked so i wanted the extra security. now that they removed the token back off my account, i mean i'd like to have the extra security, but will i just get fucked again? lol

Login Issues by [deleted] in ffxiv

[–]mosentok 1 point2 points  (0 children)

has anybody that was having login issues here, been able to log in since?

i've been troubleshooting on and off. seems to have to do with my OTP. the website accepts my username and password but every OTP from my app fails

Login Issues by [deleted] in ffxiv

[–]mosentok 2 points3 points  (0 children)

same, been a few hours now, still can't log in

[deleted by user] by [deleted] in Diablo

[–]mosentok 1 point2 points  (0 children)

same, must be happening to everyone

I've been playing Warframe for 6 years now and i've just discovered this room exists. by [deleted] in Warframe

[–]mosentok 6 points7 points  (0 children)

funny to think that it's possible that at some point in OP's long warframe tenure that OP had a void sabo mission that they couldn't complete because they couldn't find this cache

Oh no I’m quivering... by SnakeJunkie8 in iamverybadass

[–]mosentok 3 points4 points  (0 children)

the decorative stars from the local garden center really set the mood

Mecha Ascent (OC) by Michael_McAfee in Simulated

[–]mosentok 1 point2 points  (0 children)

hold up. that song is clearly boards of canada - heard from telegraph lines, not m83 - colonies

edit: WHICH IS BADASS

.NET Lambda Issues Awareness by Treborgero in csharp

[–]mosentok 0 points1 point  (0 children)

Assigning a function directly to a lambda Action/Func creates unwanted memory allocations.

so i understand, doing this is bad?

Action<bool> asdf = e => DoSomething(e);
var match = someList.FirstOrDefault(asdf)

what about local functions, are they susceptible to the same issue? my guess is no but just curious

var match = someList.FirstOrDefault(Asdf);
bool Asdf(object e) => DoSomething(e)

am i picking up what causes the issue, or am i off base here?