Live data from Hacker News

Viewing profile — pondidum

pondidum

HN member
Joined
Sun, Nov 25, 2018, 7:01 PM UTC
HN karma
231
Public activity
44 items

About pondidum

No profile information was provided.

Recent public activity

  1. comment
    Comment #42608998

    I also think that printf debugging is fine, but there are better tools [1] - however they might be more involved to setup, or not be available in your codebase. [1]: https://andydo…

  2. comment
    Comment #42230953

    Thoughts after reading https://news.ycombinator.com/item?id=42219708

  3. story
  4. comment
    Comment #40711454

    Go: go templates and fiber for http serving. I have a mini framework for adding some structure to the templates (folder per feature: contains controller, templates, etc, and some n…

  5. comment
    Comment #38909569

    If I understood correctly, you can achive this with `hx-target` and `hx-select` - I'm doing this in an app to replace an editor content based on which link is clicked. - https://ht…

  6. story
  7. comment
    Comment #37600804

    Yes, and itel has instrumentation libraries which do this. However, no automatic instrumentation can do everything for you; it can't know what are all the interesting properties or…

  8. comment
    Comment #37598961

    They all look fine in "mobile view" in firefox, and on firefox in android. It's all statically rendered html, and I don't see anything weird in the html either. Do you have a scree…

  9. comment
    Comment #37598546

    As other posters have mentioned, the incument companies rebranding to Observability definitely are expensive, because they are charging in the same way as they do for logs and/or m…

  10. comment
    Comment #37598458

    Yes, but going to this effort, why not move to tracing instead? A migration path I could see might be: - replace current logging lib with otel logging (sending to same output) - se…

  11. comment
    Comment #37598429

    Thanks, I have fixed the definition in the post! Turns out its just company slang for bating, rather than Finnish slang!

  12. story
  13. comment
    Comment #37299823

    Agreed the amount of stuff showing in stack traces can be annoying - but it does depend on language. I agree 100% in javascript/typescript its annoying, and I would love to get rid…

  14. comment
    Comment #37299292

    The only thing I can recall being a bit of a stumbling point at the beginning was finding "my" trace from a local environment. I just didn't know where to find it. Once I figured t…

  15. comment
    Comment #37296260

    Depends what you're trying to accomplish. We're using middleware to start spans for http and message handlers, and then adding `startSpan` where we need. I don't see a problem with…

  16. comment
    Comment #37296199

    Honeycomb's pricing is pretty reasonable - but looking at your volume, some sampling might help also

  17. comment
    Comment #34433623

    Only read the flag once! For multiple flags we tend to have the first step in the build read all flags we care about and export them to environment variables.

  18. comment
    Comment #34424416

    Sure you can use the environment variables, and if you have simple uses cases this is probably the best way to go. In this case, we're using LaunchDarkly's targeting to serve diffe…

  19. comment
    Comment #34424411

    It actually does have different error codes; I think I just forgot to update the docs: 0 - flag on 1 - flag off 2 - error I'll update the docs soon!

  20. story
  21. comment
    Comment #34137261

    From the link further up the replies: > Deploy is the act of moving software into an environment and running it. > Release is the process of making a feature visible to a user or s…

  22. comment
    Comment #34132509

    I understand that, but would counter with that it sounds like deploy == release, and that if that weren't the case, you could deploy more often. However, I will admit it is a trade…

  23. comment
    Comment #34132450

    What about secrets? I like to do short lived credentials using Vault (e.g. vault can create say db access credentials dynamically), but for things like API keys where I can't do th…

  24. comment
    Comment #34132419

    Oh now that is an interesting take! Would that still be required if a deployment and a release are decoupled entirely, or is it unavoidable? Genuinely interested!

  25. comment
    Comment #34132409

    You're right, hate is far too stronger term for this, I've updated the wording. Thanks.