• RBG@discuss.tchncs.de
    link
    fedilink
    arrow-up
    7
    ·
    3 months ago

    You posted that last week. Not really necessary to post it again unless you had a major update going, which I cannot tell from this post.

    • iByteABit [he/him]OP
      link
      fedilink
      arrow-up
      8
      ·
      3 months ago

      I had some major updates, it has an AI mode now so it’s much more enjoyable for someone to play alone

  • Kissaki@feddit.de
    link
    fedilink
    English
    arrow-up
    4
    ·
    3 months ago

    Why do I not win with a row on the outer field?

    It counts won fields instead?

    • iByteABit [he/him]OP
      link
      fedilink
      arrow-up
      2
      ·
      3 months ago

      Yeah, the original Super Tic Tac Toe is like that, but I decided to change it a bit because it seemed more intuitive when playing.

      There can also be two game modes to choose from before playing that includes the original, I’m not planning on that right now but I’d be very glad with a PR for it if someone makes that effort

  • Kissaki@feddit.de
    link
    fedilink
    English
    arrow-up
    3
    ·
    3 months ago

    I actually implemented super tic tac toe in Blazor a while ago. It’s interesting to play.

    • Black616Angel@feddit.de
      link
      fedilink
      arrow-up
      3
      ·
      3 months ago

      But this is not the super tic tac toe I know (and also implemented 10 years ago in college). Here you play until all ttts are solved. The version I know, has a winner only if in the bigger grid there are three wins in a tic tac toe fashion.

      • Kissaki@feddit.de
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        3 months ago

        It is.

        Blazor is a big framework. It gives you a lot, but as a framework, also introduces stack complexity.

        Being able to code on one C# codebase for a web application client and server is great. It’s very fast. You can use modern C# syntax. You have component (CSS) isolation. You can switch and mix between runtime targets (server dom rendering and sending diff-updates or client-side app execution).

        At work, we’re using it for a webportal/webapp and I have not fundamentally regretted us using it. It’s definitely not worse than anything else. For a productive development and product there’s a little bit of framework knowledge you have to learn, but that’s not different than any other framework. And docs are very good.

        I love how fast it feels to use the end product too.