Viewing profile — meadsteve
meadsteve
HN member- Joined
- Tue, Feb 23, 2021, 11:01 AM UTC
- HN karma
- 284
- Public activity
- 28 items
- HN profile
- View on Hacker News ↗
About meadsteve
No profile information was provided.
Recent public activity
-
comment
Comment #43378467
Reflections on the best time to discover bugs in software.
- story
- story
- story
- story
-
comment
Comment #33215258
The excitement comes when security issues are discovered in no longer maintained code
-
comment
Comment #33215035
Php 5 would not be boring and safe. You'd have some interesting challenges writing in an unsupported language version
-
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…
-
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...
-
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
-
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 …
-
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…
- comment
- story
- story
-
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.
-
comment
Comment #33019287
Somehow I'd completely missed this feature existed and it's a really nice way of speeding a build up
- story
-
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
-
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.
-
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.
-
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.
-
comment
Comment #32998209
Thanks 4140tm and thanks cinntaile. I was very pleased. That was very much the intention of the name
-
comment
Comment #32995141
Maybe I should have said for cheap
-
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 …