Search results

  1. H

    Sadie: A clean code Habbo emulator

    1. We've transitioned to EF. 2. Its a nice way to achieve non-blocking, asynchronous I/O, provides a larger abstraction than this if that's what you meant? .NETTY is even easier to align your pipelines so WS connections get upgraded and treated like TCP. Nitro is iffy? I'd like to hear more...
  2. H

    Sadie: A clean code Habbo emulator

    April 15 & 16th Added option validators for configuration (@Damien) Switched fleck for dotnetty Lots of work on the CMS & API Some work on the schema converter too. Schema converter is a lot of work, some data is difficult to copy because of the differences in structure, I've managed to...
  3. H

    Sadie: A clean code Habbo emulator

    April 11 & 12th Brought in new contributors Lots of refactoring Multi tile furniture now works well Wrote some new unit tests 1713014614 April 13th Moved all game constants to the database Added a development mode to ignore SSO security Can now set welcome messages for players More unit...
  4. H

    Sadie: A clean code Habbo emulator

    Thanks! ADO.NET which I've tried to abstract down with a base class etc (see here & here), its very verbose, something like Dapper or maybe even entity framework could really help with not writing so much code for that. Yep, adding parsers was one step to reducing the coupling so eventually I...
  5. H

    How Strong Is Your Computing Device? (NovaBench)

    Haha I'm on a fairly uncommon linux distro, I can run other benchmarking tools but it probably won't be accurate in comparison.
  6. H

    How Strong Is Your Computing Device? (NovaBench)

    AMD Ryzen 9 7950X (32) @ 6.142GHz, would probs smoke all of yall but can't run nova bench easily on my OS. About 2 years old now might upgrade soon
  7. H

    Nitro converter

    https://github.com/billsonnn/nitro-converter
  8. H

    Sadie: A clean code Habbo emulator

    Discord (live updates): https://discord.gg/vHfFnXVZcM Introduction Sadie is a clean code emulation server targeting the latest PRODUCTION release of Habbo. It's written in C# / .NET core with Windows and Linux support in mind. The repository has received over 1,000 commits and development is...
  9. H

    C#/PHP read JSON string from PHP into C#

    That exception pretty much tells you what to do.
  10. H

    C#/PHP read JSON string from PHP into C#

    Change 'whatever' to 'http://localhost/test.php', if it still doesn't work I'm guessing what you're downloading isn't valid JSON. Can you send the stack trace?
  11. H

    C#/PHP read JSON string from PHP into C#

    Use a JSON nuget package and deserialize it using (var webClient = new WebClient()) { string json = webClient.DownloadString("whatever"); // will be like: @"{""key1"":""value1"",""key2"":""value2""}"; var values = JsonConvert.DeserializeObject<Dictionary<string, string>>(json); } Then...
  12. H

    [COSMIC] Project

    I mean by the standards of this community, its okay. There's a couple of things I want to mention which have probably already been said so I'll keep it brief. Everything is static, which means it has a global mutable state. Being able to call the static method which holds state is the worst. If...
Top