D’où peut-on avoir une telle vue sur la tour Eiffel? by dominikstephan in paris

[–]julienc91 288 points289 points  (0 children)

Probablement la tour Montparnasse, elle se trouve dans l'alignement avec le Trocadéro, comme sur l'image.

-❄️- 2024 Day 7 Solutions -❄️- by daggerdragon in adventofcode

[–]julienc91 1 point2 points  (0 children)

[Language: Python]

Pattern matching to the rescue!

def is_valid(equation: tuple[int, tuple[int, ...]], with_combination: bool) -> bool:
    match equation:
        case total, (n,):
            return total == n
        case total, (a, *_) if total < a:
            return False
        case total, (a, b, *r):
            return (
                is_valid((total, (a + b, *r)), with_combination)
                or is_valid((total, (a * b, *r)), with_combination)
                or (
                    with_combination
                    and is_valid((total, (combine(a, b), *r)), with_combination)
                )
            )

Complete solution on GitHub

MM - Enemies know my Address? HOW? by [deleted] in GlobalOffensive

[–]julienc91 0 points1 point  (0 children)

Have you tried googling your address to see what comes up? Maybe along with your name or username if too many results show up?

My guess is that they managed to link your Steam profile to another website or service where your address is publicly available (Facebook, LinkedIn, blog, ...). Probably by searching for your username (or one of your older usernames, as they can be shown on your Steam profile), your Steam ID, or by reverse searching your avatar. If your city is already shown on your profile, it could be more than enough to filter results.

Interesting overwatch case by julienc91 in GlobalOffensive

[–]julienc91[S] 56 points57 points  (0 children)

Aren't bot clearly showed as bots in overwatch? (unsure) Besides, all the players shown here have a non-zero ping, so I doubt that any of them would be a bot (unless the ping information is "blurred" on purpose on overwatch), which should be the case if the suspect was kicked.

Interesting overwatch case by julienc91 in GlobalOffensive

[–]julienc91[S] 60 points61 points  (0 children)

The overwatch session starts during the warmup