Search results

  1. Ewout

    India most based country

  2. Ewout

    [REL] [CRACKED] Alpha Series by Privilege - Visual Basic 6.0 Habbo emulator for 2011

    Great stuff, always wondered about this one. Thanks for taking the time. Remember Privilege bragging about his source code, from a quick glance it seems that's all what it was: a brag. No clean code practices, giant Holograph-esque style message handling (atleast it's not a switch, so some...
  3. Ewout

    Helios - Experience the 2013 era! [C#, R63, Entity Framework]

    I remember debugging that issue in my uberEmu fork (the one with Wichard) too, the way I think I solved it was not sending a room status update to the user when it was interacting with rollers, instead having the slide object bundle include the user.
  4. Ewout

    Qwek going goblin mode

    And this be me:
  5. Ewout

    Qwek going goblin mode

    Had to disable Firefox tracking protection for this domain, now it works too. 🙏
  6. Ewout

    Qwek going goblin mode

    Thought it'd in-line embed, guess not.
  7. Ewout

    Qwek going goblin mode

  8. Ewout

    Helios - Experience the 2013 era! [C#, R63, Entity Framework]

    The repo has some code examples. May be of use.
  9. Ewout

    Helios - Experience the 2013 era! [C#, R63, Entity Framework]

    Ah, oops. Read over the "before it's written and flushed" part. That's a weird issue. Is DotNetty deciding to flush the buffer without an explicit call? The only workaround for that, probably, is to only write fully complete packets to the DotNetty buffer.
  10. Ewout

    Helios - Experience the 2013 era! [C#, R63, Entity Framework]

    Append the packets to a ConcurrentQueue<T> (y) .. or BlockingCollection<T>, might be more efficient. AFAICT both are FIFO, so no client-side race conditions due to unordered outgoing packets.
  11. Ewout

    Helios - Experience the 2013 era! [C#, R63, Entity Framework]

    As long as you always append full complete packets to the outgoing TCP buffer at once, this should be fine, right?
  12. Ewout

    Athena | V21 | continuation of Kepler (C version) [C17, SQLite, libuv, NNG]

    Replacing log.c with stumpless for logging. A more robust library that supports various targets.
  13. Ewout

    Athena | V21 | continuation of Kepler (C version) [C17, SQLite, libuv, NNG]

    Okay, I spent about two days packaging up the new LumoSQL, which is SQLite modernized with a faster key-value backing store (LMDB). It took that long, as they decided to reinvent the wheel by implementing their own C build system in Tcl and had to figure out how that worked. In the long run...
  14. Ewout

    Strategy on cutting hosting costs down

    What is the cost like Alex? If it's beyond reasonable (> €30 monthly) that can be cut down to €5-€10 monthly. I'm an SRE by trade and could help architect and implement a more cost-efficient solution (and something reproducible from your end by using e.g. Terraform). If you have a semi stable...
  15. Ewout

    Maybe add chat?

    Didn't mean to come off hostile earlier, I just have personal gripes with anything proprietary, and that's not relevant here. Made a new discussion about cutting hosting costs here.
  16. Ewout

    HTTP to HTTPS redirect not working on mobile Firefox

    On my Android phone, the HTTP to HTTPS redirect seems non-functional. Not sure what's going on.
  17. Ewout

    Athena | V21 | continuation of Kepler (C version) [C17, SQLite, libuv, NNG]

    Still altering the code, so it'll compile with a C17 compiler. Which means cutting out global variables for one, in the progress of reworking all structures in the code to accept IoC-like containers. As well as figuring out how to cut out all the header mess, currently trying out makeheaders...
  18. Ewout

    Maybe add chat?

    There's also Lemmy and its alternative user-interface called lemmyBB, which I rather like; as it builds atop of new ActivityPub standards. Probably could turn lemmyBB into a XenLemmy theme within a week or so. But it's less known and any custom features like a chat would have to be created...
  19. Ewout

    Maybe add chat?

    Alex, you know open-source software is a thing, right? https://github.com/discourse/discourse https://github.com/discourse/discourse-chat-integration
  20. Ewout

    Helios - Experience the 2013 era! [C#, R63, Entity Framework]

    Shit, you're right. Derp. Do use the custom MySQL EF JSON helpers though, more documentation here, it'll drop the need to decode/encode JSON at application level (bypassing Newtonsoft.Json). Paired with ProxySQL cache that'll basicly result in direct RAM load without wasting any cycles*. (* =...
Back
Top