Live data from Hacker News

Viewing profile — gchq-7703

gchq-7703

HN member
Joined
Thu, Oct 11, 2018, 11:08 AM UTC
HN karma
77
Public activity
34 items

About gchq-7703

No profile information was provided.

Recent public activity

  1. comment
    Comment #44701822

    CyberChef has been around for many years now, which definitely helps. It also has no plans for monetization and runs entirely locally, so there's no chance of a 'rug pull'. It was …

  2. comment
    Comment #41254141

    There's a lot of CyberChef hosted domains that aren't hosted by GCHQ. It's open source, so they're doing nothing wrong, but we can't provide assurances about the code on those site…

  3. comment
    Comment #41089434

    Example recipe to do it for you: https://gchq.github.io/CyberChef/#recipe=To_Upper_case('All')To_Base32('A-Z2-7%3D') It looks like 'cryptii' also appears to do all processing clien…

  4. comment
    Comment #41051069

    CyberChef supports offline usage, just save the page! If you want a "quick" way to add a bunch more operators, all of ours are available via the 'cyberchef' NPM package[0] and the …

  5. comment
    Comment #40510186

    This was released March 2019 as part of the RSA conference[0] [0] https://www.rsaconference.com/Library/presentation/USA/2019/...

  6. comment
    Comment #39447560

    I'll pop them a message, assuming you haven't found their contact details already. :)

  7. comment
    Comment #39230159

    It uses a combination of magic bytes (like the `file` command), entropy analysis and character frequency detection to determine whether an output is likely to be of interest to the…

  8. comment
  9. comment
    Comment #37431847

    I don't believe that's true. Consider this infinite generator: async function* infinite() { while (1) { yield 'example' } } (async function () { for await (const value of infinite(…

  10. comment
    Comment #37418372

    We use both Dependabot and CLA Assistant on one of our projects. It's an easy setting in CLA Assistant to whitelist Dependabot, although it did catch us out in the beginning.

  11. comment
    Comment #36274812

    This is from the same person who made SponsorBlock[0] for YouTube, which strips in-video advertising and sponsored segments. [0] https://addons.mozilla.org/en-GB/firefox/addon/spon…

  12. comment
    Comment #36187740

    Interesting. What makes you want to switch to the file system? I wrote one for a project[0] a while back (for MongoDB) and it didn't seem like the database introduced too much comp…

  13. comment
    Comment #35514040

    > If thse are DIV what they hell are you setting tabindex — a value for focusable elements — on them for? Seems to be because in the original example each of the divs have an 'onCl…

  14. comment
    Comment #35008056

    This is possible with a single `tsconfig.json` change[0]. This is also the default mode if you've set the 'strict' flag. [0] https://www.typescriptlang.org/tsconfig#noImplicitAny

  15. comment
    Comment #34997796

    False positives / false negatives are important to note. It is likely that they're saying that out of 100,000 scanned files, 10,000 to 20,000 will not include child sexual abuse.

  16. comment
    Comment #33991895

    This is documented under the 'video' section on the publishing guidelines[0]. Videos are heavily dissuaded for a large number of reasons. [0] https://www.gov.uk/guidance/how-to-pub…

  17. comment
    Comment #33991645

    I've worked for a few UK departments and been very impressed with not only their adherence to WCAG 2.1 AAA on user-facing tools, but also on internal administration tools. Accessib…

  18. comment
    Comment #33742008

    > I want to cache a guide until it changes, but update the exchange rates every few hours. We've found that NextJS's Incremental Static Regeneration[0] hits the sweet spot for when…

  19. comment
    Comment #32701163

    It should be set up to change the URL hash field with each different recipe you create. For instance, the URL for 'From_Base64' is: https://gchq.github.io/CyberChef/#recipe=From_Ba…

  20. comment
    Comment #32131927

    Been using Trilium to store all my notes for the past few years. Been exceptional. Easily scales to a tremendous number of notes and allows fast searching and creation of notes. Th…

  21. comment
    Comment #32121708

    YOLO in this case stands for "You Only Look One".

  22. comment
    Comment #30514262

    Does this solve a similar problem to img[0]? [0] https://github.com/genuinetools/img

  23. comment
    Comment #29986953

    We might need to try fine tuning some limits. If CyberChef thinks it will have an issue rendering some text, we'll stop trying to display it and offer the user the ability to rende…

  24. comment
    Comment #29986671

    It's a static website. If you want to use it as an application you can download the compiled page ( https://gchq.github.io/CyberChef/CyberChef_v9.32.3.zip ) and create a shortcut t…

  25. comment
    Comment #28668554

    HJSON [0] is also another format that tries to make it easier for humans to read / write json. [0] https://hjson.github.io/