Live data from Hacker News

Viewing profile — meadsteve

meadsteve

HN member
Joined
Tue, Feb 23, 2021, 11:01 AM UTC
HN karma
284
Public activity
28 items

About meadsteve

No profile information was provided.

Recent public activity

  1. comment
    Comment #43378467

    Reflections on the best time to discover bugs in software.

  2. story
  3. story
  4. story
  5. story
  6. comment
    Comment #33215258

    The excitement comes when security issues are discovered in no longer maintained code

  7. comment
    Comment #33215035

    Php 5 would not be boring and safe. You'd have some interesting challenges writing in an unsupported language version

  8. comment
    Comment #33214301

    If I was to rewrite my blogpost to fit your second sentence I would title it: "Please consider onboarding new staff as a need for your software". This is just another consideration…

  9. comment
    Comment #33214262

    I still consider "no framework" as a novel choice (most of the time): https://blog.meadsteve.dev/team-work/2022/10/13/how-boring-s...

  10. comment
    Comment #33213798

    Agreed. Though not strictly a counterpoint. I do enjoy novelty (and benefit from it). I just want the right amount of it

  11. comment
    Comment #33213557

    Yeah I think this is why I liked "novelty budget" as a term. To me it implies a limit, but it also implies something which you should spend. Doing something a little bit different …

  12. comment
    Comment #33213540

    This is a very good point. There are definitely "risky novel" choices that could make your company a success. But I've also seen many teams drowning in a soup of random tech choice…

  13. comment
  14. story
  15. story
  16. comment
    Comment #33024483

    Well I already had a docker registry. I generally just blog the information my past self would have needed a few weeks ago.

  17. comment
    Comment #33019287

    Somehow I'd completely missed this feature existed and it's a really nice way of speeding a build up

  18. story
  19. comment
    Comment #33016956

    I don't think that's how it works. Unless you install a library like typeguard python doesn't do runtime type validation

  20. comment
    Comment #33008818

    Very much agree. It's one thing I really appreciated about how php added type annotations. You didn't need them but once you added them they became a gaurantee.

  21. comment
    Comment #32998260

    Yeah these are great approaches too. I'd actually considered a rewrite of the core in rust before I went with mypyc. But it was nice not to have to do a rewrite.

  22. comment
    Comment #32998225

    Yeah this is exactly it for me. I already had type annotations and ran mypy to help with correctness. And I tried this out because it felt like a nice thing to get for free.

  23. comment
    Comment #32998209

    Thanks 4140tm and thanks cinntaile. I was very pleased. That was very much the intention of the name

  24. comment
    Comment #32995141

    Maybe I should have said for cheap

  25. comment
    Comment #32994585

    I recently experimented with using mypyc to make some of my python a little faster. I was pleasantly surprised with how well it worked for very little code change so I thought I'd …