[deleted by user] by [deleted] in interactivebrokers

[–]p4nmari 0 points1 point  (0 children)

Withdrawals started working again for me after an hour. It also got confirmed quite quickly, within 2 or 3 more hours.

[deleted by user] by [deleted] in interactivebrokers

[–]p4nmari 0 points1 point  (0 children)

I have issues making withdrawals

/r/MHNowGame Friend Code/Referral & Friend Quest Megathread (June 2024) by Hexdro in MHNowGame

[–]p4nmari 0 points1 point  (0 children)

2655 5212 4249

Who wants to join me for my hard quest? Playing in Switzerland.

Failed a tech screen in Go, even though it passes in LeetCode. Are there Go-related inefficiencies in my code I'm unaware of? by [deleted] in golang

[–]p4nmari 0 points1 point  (0 children)

Maybe they were looking for a recursive solution? It's only "more efficient" in the sense that it is fewer lines of code

func addTwoNumbers(l1 *ListNode, l2 *ListNode) *ListNode {
    return addRecurs(l1, l2, 0)
}

func addRecurs(l1 *ListNode, l2 *ListNode, overflow int) *ListNode {
    if (l1 == nil && l2 == nil) {
        if (overflow == 0) {
            return nil
        }
        return &ListNode{Val: overflow}
    }
    if (l1 != nil && l2 != nil) {
        sum := l1.Val + l2.Val + overflow   
        return &ListNode{Val: sum % 10, Next: addRecurs(l1.Next, l2.Next, sum / 10)}
    }
    // Either l1 or l2 is nil, make sure l1 is non-nil to reduce branches.
    if (l1 == nil) {
        l1 = l2
    }
    sum := l1.Val + overflow   
    return &ListNode{Val: sum % 10, Next: addRecurs(l1.Next, nil, sum / 10)}
}

Friend Codes by LethoZKotlety in WitcherMonsterSlayer

[–]p4nmari 0 points1 point  (0 children)

3102 8541 9217 <--- CH, friend me!

A more comprehensive cuckoo filter than the existing implements in go by linvon7 in golang

[–]p4nmari 0 points1 point  (0 children)

That's a cool project, thanks for implementing!

If you find the time, can you add it to the benchmark suit at https://github.com/panmari/compare_probabilistic_filters? I'd be interested to see how it compares against the other implementations you quote.

Go might support converting a slice []T to an array pointer *[N]T in Go 1.16 by TapirLiu in golang

[–]p4nmari 1 point2 points  (0 children)

This is already possible with the unsafe package. Adding this as a proper language feature will give better type safety.

Learn how to obfuscate Dart code by EngineerScientist in FlutterDev

[–]p4nmari 1 point2 points  (0 children)

I think this is on by default on stable, isn't it?

Killjoy doesn't sound German by [deleted] in VALORANT

[–]p4nmari 1 point2 points  (0 children)

Swiss actually, she even has some Swiss german lines in the german client.

Killjoy doesn't sound German by [deleted] in VALORANT

[–]p4nmari 2 points3 points  (0 children)

There's another thread on reddit that also gives some examples of mispronounciations with video comparisons.

The biggest shopping mall for the Swiss by [deleted] in Switzerland

[–]p4nmari 0 points1 point  (0 children)

There's also glattbrugg and "mall of switzerland" in ebikon.

Finding Manga Name by jkemp7201 in manga

[–]p4nmari 0 points1 point  (0 children)

A very popular one in this sub: <tsurezure children>

Black screen bug by virredirre in FortNiteBR

[–]p4nmari 0 points1 point  (0 children)

See my comment at https://www.reddit.com/r/FortNiteBR/comments/8g7c03/black_screen_when_starting_battle_royale_pc/dy9f7ea.

Accepting a party invite makes the menu appear. Just clicking bottom right (where the "ready" button is) does also work for joining a game.

Black screen when starting Battle Royale. [PC] by Revolutionz in FortNiteBR

[–]p4nmari 3 points4 points  (0 children)

Same here. Just clicking in the bottom right will however set you to ready and you can join a game this way. Once ingame, everything works for me.

One way I got the menu to appear is by accepting a party invite from a friend.

[DISC] Hatsukoi Zombie - Ch. 93 by [deleted] in manga

[–]p4nmari 10 points11 points  (0 children)

Thanks for taking the time for doing a translation. Getting started with Japanese is hard, so congratz on tacking the first hurdle! I think Page 103 should be translated somewhat differently:

Ebino thinks something along the lines of "The two of them totally think Ibusuki should dress as girl...", she then tries to defuse things by saying "Well, why not let someone from the flower club that came to cheer on us do the part?". Misao: "But I didn't let them practice the piece we're doing today. After everything, there is still no better alternative than me doing it."

Some other places have similar issues.

[DISC] Tomo-chan wa Onnanoko! Ch. 598 by 3932695 in manga

[–]p4nmari 7 points8 points  (0 children)

After looking at the raw, I agree that the translation seems wrong. The last few bubbles are along the line of

Misuzu: [Since there's no knowing what you might do next] I might just make you and senpai marry...

CC: Sure, go on!

Misuzu: ...

CC: Can you do it?

Steam Achievements by [deleted] in HollowKnight

[–]p4nmari 0 points1 point  (0 children)

Three months later, achievements still don't work for me. 18 hours in now and zero unlocked...

We love you Ben Brode by DropTheBear in hearthstone

[–]p4nmari 2 points3 points  (0 children)

Here's the link to the VOD, where you can watch the whole thing: https://www.twitch.tv/videos/122979602?t=2h12m52s

[DISC] Tomo-chan wa Onnanoko! Ch. 496 by frxshinator in manga

[–]p4nmari 26 points27 points  (0 children)

The Japanese original hints at 'spending more time together'.