Search results

  1. CosmoPeak

    no u

    no u
  2. CosmoPeak

    Show specific data from MySQL / MariaDB table

    You can use json_extract - https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html#function_json-extract eg. SELECT json_extract(json_col, '$.label') as label
  3. CosmoPeak

    Retro Maxthon is the only browser left with flash support?

    Nitro is no longer maintained/updated and uses a pretty old version of flash, so probably forever
  4. CosmoPeak

    Habbo hotel how to add discord to cms

    To get the HTML, go to your server settings in Discord and go to the "Widget" section, there's a "premade widget" you can copy, which you need to put in your HTML somewhere
  5. CosmoPeak

    Goodbye, "Flash" Habbo!

    old school habbo when
  6. CosmoPeak

    Goodbye, "Flash" Habbo!

    end of an era
  7. CosmoPeak

    shroom - HTML5 Room Rendering Engine for Retros [ALPHA RELEASE]

    https://discord.gg/mfxSh4XY2N
  8. CosmoPeak

    PeakRP Browser

    Of course! The main reason it's open source is so users can see exactly what they're downloading, and even build it themselves if they wanted to. It's asking a lot from users to download a program from a retro.
  9. CosmoPeak

    PeakRP Browser

    Yeah, we'll investigate this in January
  10. CosmoPeak

    PeakRP Browser

    When you launch peakrp from the website, it generates a JWT containing your user ID and redirects you to peakrp://<your jwt> The browser opens with the peakrp:// protocol and passes this jwt as a parameter to the client page, which is sent to the emulator as usual The same might be possible...
  11. CosmoPeak

    Light OR Dark?

    I feel the same. I tend to lean towards dark mode, but I've gotten used to some apps like Visual Studio in light mode, so leave them with their default. I wanted to try Discord light mode, but until recently the text in light mode was too light and I couldn't read it very easily.
  12. CosmoPeak

    Habbo rolled out Open BETA client to .com

    it's awful in every way and has zero redeeming qualities, it feels so laggy and slow, and let's not even talk about how they've butchered the game's actual features i don't know what they were thinking and how anyone has used/tested this at sulake and thought "yeah that's ok"
  13. CosmoPeak

    Wired BUG

    what problem are you having?
  14. CosmoPeak

    Habbo (Official) Adobe to Start Blocking Flash Content from Playing from January 12, 2021

    Microsoft aren't removing it from browsers, only the version installed on Windows - the one you download and install from the Adobe website.
  15. CosmoPeak

    Laptop Suggestions for Computer Science?

    for 5k i'd just get a macbook pro, i've never had a good experience with a windows laptop ngl i've only used a dell and a macbook pro before tho, but if it was me buying, i'd get a macbook as i think it'd be a safer bet for a good laptop
  16. CosmoPeak

    [C# JSON] How do I get in

    I'm not sure what UI framework you're using, so not sure I can help much here. You should be able to access the temp from your object once you've done the above though. It'll be a case of setting the value of the textbox with the temp value.
  17. CosmoPeak

    [C# JSON] How do I get in

    You'll need to do something like this: var httpClient = new HttpClient(); var response = await httpClient.GetAsync("https://your-weather-url/"); var responseBody = await response.Content.ReadAsStringAsync(); var serializer = new JavaScriptSeralizer(); var geoInfo =...
  18. CosmoPeak

    [C# JSON] How do I get in

    You need to perform a HTTP request to get the response from that URL You can see an example here getting a response as a string using HttpClient: https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient?view=net-5.0#examples You would then use your JSON deserialiser, passing in...
  19. CosmoPeak

    shroom - HTML5 Room Rendering Engine for Retros [ALPHA RELEASE]

    Glad to see it here! This is one of the most promising projects in my opinion. Glad there's still developers willing to work open source, and I've seen a lot of good come from it already. Looking forward to seeing where this goes and what the community can do with it.
Top