Live data from Hacker News

Viewing profile — Pirate-of-SV

Pirate-of-SV

HN member
Joined
Thu, Aug 02, 2012, 11:35 PM UTC
HN karma
544
Public activity
121 items

About Pirate-of-SV

No profile information was provided.

Recent public activity

  1. comment
    Comment #47232589

    What is your latitude, longitude, current time zone?

  2. comment
    Comment #37915707

    120 auto mechanics employed in the 9 Tesla service centers are affected.

  3. comment
    Comment #37146551

    It's because you're using Cloudflare DNS (1.1.1.1) which Internet Archive return an incorrect IP for. There's a bazillion threads about this on HN for more detail

  4. comment
    Comment #36848014

    Github Markdown supports Mermaid OOTB, really useful.

  5. comment
    Comment #35820739

    Any domain on the public suffix list should just be ignored I suppose. https://publicsuffix.org/list/

  6. comment
    Comment #35802782

    Writing parsers and tokenizers probably.

  7. comment
    Comment #33706663

    Very good! I use this hack every day in winter to heat my apartment (charging laptop at work, run git brute force at home).

  8. comment
    Comment #33692827

    If only one node is being drained then yes. If you want to drain 3 nodes as fast as possible it's best to start by cordoning all 3 of them and after that run drain on each respecti…

  9. comment
    Comment #33175328

    Ah yeah for IAM the defaults seem sane, true! The things that I've come across recently is that encryption at rest is usually disabled ( EBS, SQS, S3, SNS, Kinesis, Cloudwatch log …

  10. comment
    Comment #33174482

    I think it's problematic that most security features (configurable by the user) are switched off by default and require some effort to set up. This is getting better though and for…

  11. comment
    Comment #33045804

    Not only a record, the record needs to point to a ipv6 also. If that is missing it is not as trivial as you make it.

  12. comment
    Comment #28849269

    Nice, one step closer to AWS. Next up I'd like to see an increase to the 30 second termination notice. 120 seconds would be good enough :)

  13. comment
    Comment #28119262

    For the last couple of years my org has been self-hosting Yopass https://github.com/jhaals/yopass . We use it to share secrets (with one time URLs) with each other.

  14. comment
    Comment #27398530

    In Kubernetes you can also add NodeLocal DNSCache [1] as a DaemonSet that injects iptable rules to cache DNS locally to offload the in-cluster coredns. [1] https://kubernetes.io/do…

  15. comment
    Comment #26781732

    It's nice that they announce it and that there's some sort of future effort promised. From my perspective we might not upgrade the elastic-stack (with current Elastic projects) too…

  16. comment
  17. comment
    Comment #25704925

    HATEOAS I suppose. https://restfulapi.net/hateoas/

  18. comment
    Comment #24325383

    What tool(s) did you use to record the example gifs in the readme?

  19. comment
    Comment #24243863

    I ran rankmirrors (from pacman-contrib) on the mirror and the 5 upstream i got on https://cloudflaremirrors.com/archlinux rankmirrors test the time to download core.db from each mi…

  20. comment
    Comment #23440714

    I recall that there's been some improvements to CFS to fix this since 2018.

  21. comment
    Comment #23119404

    This was going to be my first DEF CON to attend in-person. See you next year!

  22. comment
  23. comment
    Comment #22691254

    jq -c -r '.[] | .id_str' # Can be rewritten to jq -r '.[].id_str' jq -c -r '.[] | .id_str' | head -10 | tail -1 # Can be rewritten to jq -r '.[9].id_str'

  24. comment
    Comment #22006268

    Don't be anxious! Every company and team operate under different circumstances that might not be in their control. It's a company effort, not only engineering, to get in to a posit…

  25. comment
    Comment #22005929

    We provision database access through Hashicorp Vault. It's excellent, short lived credentials provided by Kubernetes service accounts (lots of glue here!). After the RDS instance i…