Home Projects Links Ask About
Mastodon Letterboxd Backloggd Feed
Previous Page 13 / 23 Next Page
  • Posted 29 October 2024 by Natalie

    nex3 BACKER
    reviewed Silent Hill 2: Enhanced Edition
    ★★★★½ Completed on Windows PC
    Having played only two Silent Hill games, I've already formed my opinion that this is what Silent Hill should be. Although the original marshaled an incredible ambiance, it didn't quite manage to coalesce it into cogent themes. It lives in my memory largely as a collection of horror vignettes which, while strikingly effective given the limited palette of the PS1, are little more than the sum of their parts.

    Silent Hill 2 learns that lesson well, and strides forth confidently with a degree of narrative focus and aptitude that's rare to see in games before or since. Everything in this town of Silent Hill curls meticulously around its true function, even long before the player begins to suspect that it has a function at all. Where the first game just asks the player to experience it, the second asks the player to understand it, and is consistent enough to truly reward that understanding. In doing so, it manages to be effective not just as a game or as a mood poem but as a horror story—something I've never seen another game fully succeed at.

    The craftsmanship is also outstanding even beyond the purely narrative realm. When I first played Resident Evil (2002) I was shocked by how much mileage it got out of its much-derided "tank controls" as a means of giving the game itself detailed control over the camera angles without bewildering the player's movement. Silent Hill 2 takes this to the next level, allowing the movement of the player itself to guide the camera along paths that echo those of horror cinematography. My breath was stolen when, in the opening sequence as James walks down a long dirt path through the woods, the camera began trailing him with trees interspersed, using filmic techniques to convey a sense of being watched and stalked.

    It's just not possible to do that sort of things with the now-standard two-stick full-motion camera controls, and I became even more thoroughly convinced playing this game that we let ourselves throw away a gem of design in tank controls. They do feel awkward, this I won't deny—but must games always feel smooth? What is life without a little variation in the texture? I dearly hope that one day fixed cameras and relative controls are added back to the toolbox of game design, as I long to see what a game could do if it truly iterated on the way Silent Hill 2 wields the camera as a piece of the artistry during the game itself.

    The only place this doesn't rise above its predecessor are the combat and resource management mechanics, which still feel by-the-book relative to Resident Evil's brilliance. The combat is perhaps slightly better here, but only by virtue of being easier to avoid. But if the niche this series is carving for itself is tremendous atmosphere, narrative, and visual artistry, you won't hear a single complaint from me.
    Reviewed on Oct 28, 2024
    1. nat reviews
    2. silent hill
    3. silent hill 2

  • Happy Hour Manhattan

    Posted 29 October 2024 by Natalie

    1oz pretty good well whisky (Evan Williams 100 Proof), 1oz pretty bad well whisky (Four Roses Yellow Label), 1oz totally decent vermouth (Dolin), 3ds Angostura bitters, one brandied cherry

    I take pride in my cocktail mixing. I've put in a lot of work into honing my judgment of flavor combinations, learning how to construct an effective cocktail recipe, and building a stable of excellent ingredients. Whenever anyone comes to visit my house, I do my best to give them a beverage experience that's perfectly tailored to their desires, whether it's sweet or bitter, punchy or mild, alcoholic or not. Although sometimes experimentalism takes me in a direction that is not worth repeating, by and large I believe the drinks I make are excellent.

    But excellent is not always what's called for.

    Liz and I used to love going out to bars. Our signature move was to take off work early of an afternoon, show up just as the doors opened around 4pm or so, and just shoot the breeze with the bartender during the easiest hours of their shift. Bartenders are great conversation because they're always up to something else in their lives, and the best ones also care a lot about the craft of serving people just what they want. We'd stick around for a few hours, get some snacks, maybe order dinner if the bar served it or head out for pizza, and end up home by 8pm feeling like we'd had a full night out.

    All that ended, of course, in 2020. Other than a few mostly-outdoor visits during the vaccine honeymoon[1], we haven't been back to a bar since, and every day I miss that experience of lazily sipping on the latest Negroni variant while merrily chatting with someone who an hour ago was a total stranger to me.

    For Liz, that experience was wrapped up inseparably with the particular flavors of happy hour, during which bars served cheaper drinks off a special menu to draw customers. Happy hour drinks are usually well-known classics such as a Manhattan, and they're usually substantially less fancy than a cocktail bar's primary menu. They'll often use only "well" ingredients, the inexpensive stuff that the bar buys in bulk to form the backbone of cocktails that are then made more flavorful with higher-shelf ingredients.

    So when that's where Liz's mood takes her, I put away my high-end vermouth and adulterate my usual mixing whisky. Sometimes an excellent experience calls for mediocre flavor, and I try never to let my pride get in the way of mixing the right drink for the moment.


    1. Our cheeky term for summer/fall 2021, in the all-to-brief gap between getting vaccinated and vaccine-resistant COVID variants taking over the world, when people at large were still taking common-sense precautions despite COVID numbers being lower than they've ever been since. In some sense I miss those days even more than I miss the era before the pandemic, because in those days I really believed that people…

    1. nat mixes
    2. alcohol
    3. covid

  • Posted 28 October 2024 by Natalie

    Roni Kaufman
    Roni Kaufman posted 18 October 2024 on genart.social

    🏁

    via mcc mcc
    1. I got Mastodon reposts working eventually after that last post
    2. thanks to my friend alas! (at time of writing) for helping out
    3. art

  • How to fail to read a Fediverse post

    Posted 27 October 2024 by Natalie

    So I'm trying to add support for automatically embedding Fediverse posts on this blog, right? And yeah I could use the Mastodon API for it, but I'd really rather be able to make it work with anything that speaks ActivityPub. So okay, I look up the ActivityPub spec. It's a bit confusing, but I figure out how to at make a GET request for an ActivityPub resource: just add Content-Type: application/ld+json; profile="https://www.w3.org/ns/activitystreams". I can even make a request for one of my statuses and it works! Fantastic!

    Just to verify, I make a request to another server, and that's where things start getting hairy. Instead of a nice JSON representation of the post, I get back a 401 Unauthorized with a body that says "Request not signed". This is a public post, but after some digging it turns out Mastodon (and by extension ActivityPub as a whole) has a "secure mode" where all requests have to be signed.

    Signed by what though? This is a distributed system—there's no central authority to distribute authorization in the first place.

    To answer that I looked in the spec. I searched for "signature" and found nothing particularly relevant. Eventually I found the Authentication and Authorization section, which says "Unfortunately at the time of standardization, there are no strongly agreed upon mechanisms for authentication." Well, shit. Clearly some people agree enough for it to be implemented, but I guess not enough for it to be actually specified!

    This does, mercifully, link to a wiki page that purports to lay out "some possible directions" and, under the Server to Server section, seems to describe the scheme that this StackOverflow post describes as "an odd, somewhat well-known ActivityPub quirk"[1]. This wiki page may not be an official specification, but at the very least it describes the publicKey field that I can see in the actor JSON on Mastodon.social.

    This is all fundamentally busywork. Because the whole thing is decentralized, the receiving instance has no choice but to trust whatever public key a new requesting instance provides. All this scheme really does is prove that someone making requests runs a server somewhere that speaks basic ActivityPub, and even then this constraint only exists for ActivityPub requests—HTTP requires no authentication at all.

    {
      "id": "https://mastodon.social/users/nex3",
      "type": "Person",
      /* ... */
      "publicKey": {
        "id": "https://mastodon.social/users/nex3#main-key",
        "owner": "https://mastodon.social/users/nex3",
        "publicKeyPem": "-----BEGIN PUBLIC KEY-----\n...\n-----END PUBLIC KEY-----\n"
      }
    }

    Or does it? The publicKey link there points to https://web-payments.org/vocabs/security#publicKey, a URL that at time of writing is refusing HTTPS connections entirely. Naturally I looked it up on archive.org, only to find that the specification for the publicKey field is not only totally different from what I'm observing in the wild, its one-sentence specification is essentially useless: "A public key property is used to specify a URL that contains information about a public key." The example included doesn't even have a publicKey field.

    {
      "@context": "https://w3id.org/security/v1",…
    1. meta
    2. code
    3. mastodon

  • Posted 27 October 2024 by Natalie

    my favorite discord feature is when it randomly decides to give me a notification for a conversation no one has said anything in for ages


    1. Posted 26 October 2024 by Natalie

      A screenshot of an OkCupid notification
      detailed image description

      A Discord message from valbaca: "Fuck. I can never open this notification". An attached screenshot shows an OkCupid notification: "Eurydice likes you! See if you like them back now".

      via Val Val

      1. Posted 26 October 2024 by Natalie

        Willow
        willow @Willow
        25 September 2024

        I SEE LONDON! I SEE FRANCE! I’M HUGE! I’M HUUUUUUUUUGE

        0 comments
        1. I miss willow so bad
        2. to be clear she's still alive
        3. she's just not posting anymore

      2. went out dancing last night

        Posted 26 October 2024 by Natalie

        detailed image description

        Me in a leather jacket, wearing a sheer top with snakes running up it and matching snake earrings.

        can't express enough gratitude to normal for girls for hosting masked shows with big ol' cr boxes. had an incredible time. my legs feel like pudding now. dancing in heels is hard work

        1. selfie
        2. music

      3. Aotearobot

        Posted 25 October 2024 by Natalie

        that one's free for anyone who can make good use of it


        1. Posted 25 October 2024 by Natalie

          I appreciate when manga translations include both transliterations and translations of onomatopoeias. yeah actually I am interested that "gata" is the onomatopoeia for "clatter" that's really cool

          1. language
        Previous Page 13 / 23 Next Page
        Copyright Natalie Weizenbaum