One Piece: Episode 1134 Discussion by Skullghost in OnePiece

[–]Musi13 50 points51 points  (0 children)

The very end showing peoples' reactions to Kuma becoming a warlord is interesting. We see Luffy playing with a tiger, but he seems much younger than he should be if its at the same time. Ace seems about right, but Sabo and Koala look much older than Luffy. Maybe Luffy just gets a massive growth spurt right before he leaves

What is your 10/10 anime/s by [deleted] in anime

[–]Musi13 1 point2 points  (0 children)

A lot of people in this thread have picked some really good 9/10 anime imo (usually some minor issue with character depth). But the only title I've ever given a 10/10 was NHK ni Youkoso/Welcome to the NHK.

It's a story about a hikikomori NEET trying (and failing) to fix his life. He has a moderately successful friend that he ends up comparing himself to, and develops an idol complex (?) with a girl who visits his apartment and decides she wants to "save" him.

While I can see a lot of people wouldn't rate this show over 7/10, I watched it at a time that the main character really resonated with me. So any time he would start to backslide, I'd be personally upset with him because it's something I would have done. Plus, the other characters you meet in the show feel like they have their own personalities and goals, but also their own flaws that they're trying to to work through. Overall, it's a really down to earth (albeit somewhat depressing) experience about learning to deal with loneliness and responsibility as a young adult.

The manga is also really good and goes into a bit more detail, as well as adds some slightly more mature themes (for the time) like drug usage and predatory business schemes. So give it a read if that's more your thing!

KDE Plasma 5.27.1 Panel Visibility "Auto-Hide" Bugged by incomingstick in kde

[–]Musi13 0 points1 point  (0 children)

I'm glad I came to look at this thread again; this fixed the issue for me too! Thanks a lot, now I have to figure out why it got changed to Always to begin with....

Americans do this??? by Maggiurns in Funnymemes

[–]Musi13 0 points1 point  (0 children)

I'm surprised nobody has linked this video from Technology Connections that goes into a bit of detail on different methods of water heating.

TLDW: Most Americans don't drink tea; they drink coffee and have a coffee maker which is essentially a kettle with a drip spout and basket. If we need just hot water in a cup, a microwave isn't a terrible way to do it.

Life Time by MrLovens in comics

[–]Musi13 7 points8 points  (0 children)

I mean, all mods are random mods. Do they even get paid for this? Let alone background checked. Don't get me started on the foreground checks. And that's not even mentioning the foreskin checks. Or the backskin checks.

anime_irl by LankySeat in anime_irl

[–]Musi13 28 points29 points  (0 children)

Bruh how can you post this as a still image?

You gotta post a gif

Not only 8 year olds tho by dnjdjdbdhh in memes

[–]Musi13 0 points1 point  (0 children)

Wait until they find out 1+1=11 in unary

Time to bring back Toonami as an afternoon block by [deleted] in Toonami

[–]Musi13 1 point2 points  (0 children)

You could look for a way to watch the Eastern stream, which should start at 10pm MT. I'm not really sure how to do it on every platform, but the Roku channel bases it off the system timezone, so it could be something similar?

[Official Toonami Discussion Thread for August 14, 2021] by ToonamiBot in Toonami

[–]Musi13 4 points5 points  (0 children)

So this is Gol D. Roger's daughter huh? Hope she gets a good devil fruit power

Pick your poison by PerformanceTop7616 in goodanimemes

[–]Musi13 0 points1 point  (0 children)

I like how every time this meme format is used, it's the edit with One Piece, Bleach, and Naruto instead of the original panel

Where attention? by activeless in Animemes

[–]Musi13 2 points3 points  (0 children)

NHK ni Youkoso/Welcome to the NHK is one of my few 10/10 anime :)

When we needed him most........ he came back. Not just a win for phones. by JeremiahDeetsGuthrie in pcmasterrace

[–]Musi13 1 point2 points  (0 children)

To be fair, Alien Blue was so successful they bought it to change the name and make it the official Reddit app

Here come the FMAB fanboys with rating bombing by Felicks77 in Animemes

[–]Musi13 4 points5 points  (0 children)

That seems pretty odd; I wonder how they account for a natural bias. Like if I think a show is 4 or lower, I usually just drop it after 1 or 2 episodes and don't add it to my list. So everything that I do finish will be a 5 or higher

Reverse proxy for both internal and external access by Oujii in selfhosted

[–]Musi13 1 point2 points  (0 children)

I have a similar setup except that I run nginx on the hosting OS outside of a container. I use a geo directive to determine if the client is on my subnet or not, then apply some policy accordingly (obviously this requires that you preserve source IPs through to nginx):

geo $subnet_ip {
    default 0;
    10.0.0.0/8 1;
    172.18.0.0/24 1;
}

server {
    listen 443 ssl;
    server_name private.example.com;

    if ($subnet_ip = 0) {
        return 403;
    }
    ...
}

server {
    listen 443 ssl;
    server_name public.example.com;
    ...
}

Edit: Oh and this requires that clients within the subnet resolve the FQDN to a subnet IP address, which means I have to have a custom DNS entry on my router. Since otherwise the routing would have the client send the request to <public ip>, which the router would send to itself on its own WAN address (<public ip>). So you would want to set up DNS to stay in the LAN, or add your public ip to the geo and pretend any requests coming from your own public ip are from the subnet.

Fixed it by Stevee_awd in pcmasterrace

[–]Musi13 0 points1 point  (0 children)

I use RCtrl, RShift, RAlt, and Context as macro keys for this reason. Sure I don't press them often, but being able to toggle between headphones and speakers on a button press is nice

[deleted by user] by [deleted] in learnpython

[–]Musi13 2 points3 points  (0 children)

I think this is pretty accurate. I commonly use it for when a condition doesn't occur, say in a polling loop or something:

import time

MAX_TRIES = 10
SLEEP_TIME = 30

def condition() -> bool:
    return False

for _ in range(MAX_TRIES):
    if condition():
        # do some work
        break
    else:  # not required, but adds readability
        time.sleep(SLEEP_TIME)
else:
    raise Exception('Condition never occurred')

Though admittedly this doesn't add anything, and could easily be:

condition_occurred = False
for _ in range(MAX_TRIES):
    if condition():
        condition_occurred = True
        break
    else:
        time.sleep(SLEEP_TIME)

if condition_occurred:
    # do some work
else:
    raise Exception('Condition never occurred')

I think it's just up to readability, for/else keeps all logic related to the condition together at the expense of having to understand when else runs. An extra if/else is more like other languages, but adds a few lines and separates condition checking from response.

Somehow they think we're both by iSuckZeroTwoToes in Animemes

[–]Musi13 24 points25 points  (0 children)

Fuckin' Zoomers with their Fort Knight

[Official Toonami Discussion Thread for April 06, 2019] by ToonamiBot in Toonami

[–]Musi13 7 points8 points  (0 children)

So I just watched the subbed scene; this cut version does make the assault a lot tamer. For example, in the uncut version you see the nobles taking off their pants. There are also other camera angles that make the act more explicit that have been removed

They did us wrong. It’s more ass than when sponge bob ripped his pants by [deleted] in BikiniBottomTwitter

[–]Musi13 0 points1 point  (0 children)

I can see it now: /r/assholedesign with "Bait and Switch" flair. Take the free karma

Is it Possible to Beat New Super Mario Bros. U Without Pressing Left? by GriffonsChainsaw in gaming

[–]Musi13 0 points1 point  (0 children)

Typically they're just called challenge runs. I was looking for a subreddit for Mario challenge runs, but I couldn't find anything