Viewing profile — steffres
steffres
HN member- Joined
- Wed, Jul 12, 2023, 7:21 AM UTC
- HN karma
- 8
- Public activity
- 12 items
- HN profile
- View on Hacker News ↗
About steffres
No profile information was provided.
Recent public activity
-
comment
Comment #42811708
Forgot to add, that those can be concatanated, e.g. `__o_car__t_finances`.
-
comment
Comment #42807330
I do this manually by appending `__t_tag`, where `t` is a category and `tag` the value. E.g. `__o_car`, where `o` means object, or `__p_supercode`, where `p` = project, `__t_ml`, w…
-
comment
Comment #37624625
I simply rinse my wooden boards with boiling water after cutting meat on them (and then wash them of course).
-
comment
Comment #37406134
oh, you're right. I forgot that a key characteristic of anything being "declarative" is that order of statements should not matter. Acutally, come to think of it, since `RUN` may d…
-
comment
Comment #37402917
I didn't mean to use Django _and_ a separate migration tool. It's just that I did work with Django so far, but switching now to a new codebase without it. Hence my question for exp…
-
comment
Comment #37402612
I see. Thanks for the clarifications. And these DB migrations, did your team keep a history of them? If so, did you manage them yourselves, or did you use some tools like flyway? I…
-
comment
Comment #37402301
That sounds reasonable. But what about the case where the DB migration of version 2 would be incompatbile with code version 1, e.g. a column was dropped?
-
comment
Comment #37336795
I'd say both. Some is declarative, e.g. `FROM`, `ENV`, `EXPOSE`. While on the other hand `RUN`, `CMD`, etc. is fully imperative.
-
comment
Comment #37294744
yes, if one submodule would depend on another, this would cause problems indeed. So far, we could avoid it though, by strict encapsulation. But I definitely see the point in your e…
-
comment
Comment #37293218
In our case, we have a codebase that involves two submodules: one for persistence and one for python based management of internal git repos. Both of these are standalone applicatio…
-
comment
Comment #37292571
for each submodule affected by some change you would need an additional commits, yes. But those commits are bundled together in the commit of the parent repo where they act as one.…
-
comment
Comment #37292510
Anyone know, what's the advantage of this over a big composite repo with several git submdolues? I think that submodules are better suited for separation of concerns and performanc…