4
eo2875
3y

Not sure whether to spend 4 hours looking for an implementation through the internet and the source code, or to spend those 4 hours writing the implementation myself 😕😑😪

Comments
  • 1
    you're better off writing yourself. I've never found anything on the internet that perfectly suited what I have in my head. you can copy and edit too
  • 1
    Wow it must be a very complex implementation! Most of the high level coding I do always has a few libraries available to reuse and it only takes 5 minutes to find them and 15 to test the most recently updated one out.
  • 1
    Yeah but then you want to tweak the default behavior, and your mind is like "of course there's a way of accessing the parent from the child and modifying these fields" but to see in what field or property (cause you don't want to modify a copy but access the reference itself) and at what point of the instance life cycle is a nightmare with high-level untyped languages like Python and JavaScript.
  • 3
    @eo2875 I’ve got a solution for you: don’t use high-level untyped languages like Python or JS ;)
  • 3
    @eo2875 Completely untyped languages, regardless of how high level they are, are good for either quick scripts or compile targets. If you plan to read it twice types will save you time.
Add Comment