Search results

  1. BIOS

    What are you listening to now?

  2. BIOS

    Replace FindRetros reCAPTCHA

    Yeah, I don't doubt there's a lot of improvements that could be made to FindRetros. All depends on how much time is worth spending on it I guess. That said, I do think this change would be a nice quick win. It's a really small change, yet would be pretty useful. Although the retro scene is...
  3. BIOS

    Replace FindRetros reCAPTCHA

    Habbo retro users have to complete a Google reCAPTCHA challenge every day for each hotel that they play. No one likes CAPTCHAs, they are annoying. Maybe it could be worthwhile replacing the voting CAPTCHA with Cloudflare Turnstile? It's free and doesn't require the user to complete a CAPTCHA...
  4. BIOS

    [PHP][JSON][ARRAY] How to show array vertical instead of horizontal

    Well it's practically the same thing - you need to understand how tables work if you want the data aligned like that, something like this: <table> <thead> <tr> <th>Name</th> </tr> </thead> <tbody> <?php foreach($JsonstringPersons as $record){ if ($record['Online']...
  5. BIOS

    [PHP][JSON][ARRAY] How to show array vertical instead of horizontal

    You're looking for a HTML table, some reading here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table For example <?php $names = ["John Doe", "Jane Doe", "Jhon Doe"]; ?> <table> <thead> <tr> <th>Name</th> </tr> </thead> <tbody> <?php foreach($names as...
  6. BIOS

    MySQL Question

    ROUND should work, do you have the error you were seeing? REPLACE(FORMAT(Sum(ASSIGNMENT.ASSIGN_CHARGE),2), ',', '') should also work, but I'd try to use the round approach.
  7. BIOS

    C# Best way to encrypt & decrypt xmlwriter file

    You seem to confuse terminology around encryption and hashing. MD5 is not a form of encryption, but an hash function (and a broken one at that) - the key differentiator to note here is an hash is not reversible and as such you cannot "decrypt" data which has been hashed. But you can decrypt an...
  8. BIOS

    HylibCMS - All Emulators

    https://github.com/TheLaxus/Hylib/blob/63190a08d52eaecd286a52f9c04c07ddb5d8d461/configuration/class/class.functions.php#L41-L69 static function Filter($type, $string) { if ($type == 'XSS' || $type == 'xss') { $value = htmlspecialchars_decode($string)...
  9. BIOS

    Habbo rolled out Open BETA client to .com

    Looks like many rooms have updated their name to include "#SaveHabbo" after this update lol: https://twitter.com/hashtag/savehabbo?src=hash
  10. BIOS

    Habbo rolled out Open BETA client to .com

    Not a fan, everything just seem so bulky, miniclip-like, and plain ugly. Even on 2k the UI looks huge for me. UI seems to have a fade in/out effect too which makes everything seem slower than before. It's also harder to find things but I guess that will change with time (would be nice if they...
  11. BIOS

    L4 DDoS Mitigation Help

    It sounds like they are overwhelming the actual TCP proxy rather than your server. I would probably recommend getting a protected server in that case, e.g. from OVH or zare.com. HAProxy is better than nothing but does have limits. There are some higher bandwidth TCP proxies out there but they...
  12. BIOS

    Good Netflix films?

    6 Days is one I've watched multiple times on there. Not a film, but a documentary I liked on there: Don't F**k With Cats: Hunting an Internet Killer.
  13. BIOS

    First post COVID trip?

    Anywhere really! But probably for a pint or two first. In terms of other countries, I'd like to visit Australia, Canada, or Japan.
  14. BIOS

    Addendum release: Habflash Source Code

    1GB! What actually is this project/release? I assume some sort of webrender wrapper for Habbo clients?
  15. BIOS

    What are you listening to now?

  16. BIOS

    Laptop Suggestions for Computer Science?

    Unless you're studying something like machine learning or some other heavy niche I agree with this, 16GB is plenty. I got by fine with 8GB on my course and an i7 (XPS 13). Ran multiple virtual machines/containers/programs fine. You could check out a Macbook Pro w/ an i7 & 16GB ram if that's...
  17. BIOS

    PHP - Need API w/ Authentication

    If you want to go more towards a RESTful design, URLs are generally used a bit differently. You want to view them as single entities, rather than the methods you have in the routes (/api/get, /api/post). Don't include the actual HTTP method in the URL, as that's supposed to be implied by the...
  18. BIOS

    Flashback PHP - A Habbo CMS written in vanilla PHP

    I know this may be more of a learning experience project type of thing, but I would highly recommend using a pre-existing templating library. I quite like Twig. Some reasoning and other tips: Twig is pretty fast, flexible in the sense it can be extended, and most importantly it is secure...
  19. BIOS

    What are you listening to now?

Top