Viewing profile — doboyy
doboyy
HN member- Joined
- Wed, May 08, 2019, 4:28 PM UTC
- HN karma
- 42
- Public activity
- 39 items
- HN profile
- View on Hacker News ↗
About doboyy
No profile information was provided.
Recent public activity
-
comment
Comment #24089324
I liked your first post, but this one is in line with the article.
-
comment
Comment #23918886
I feel this is a more accurate assessment. The relationship between abuse/quality of parenting and anxiety/disfunction can't be thought of as linear. When parenting starts qualifyi…
-
comment
Comment #23907256
Very cool. I'm not a super big horror fan, but when this whole pandemic thing started, I consciously went on a ~2 month horror binge for fun, watching a bunch or horror films (of v…
-
comment
Comment #22132161
I thought most of this was just normal life tbh
-
comment
Comment #22091872
I thought they were better on the road that season? It's not clear sign stealing helps much oddly enough.
- comment
-
comment
Comment #22088815
Unless you are doing web stuff, you'll face significant resistance from your platform with no clear gain imo
-
comment
Comment #21951529
If you're doing dynamic dispatch then there is still code that's living for each specialization. Sort of solves linking because symbols don't have to be generated and compile times…
-
comment
Comment #21950306
I really don't like the monomorphization approach to generics (I think that's the concept?), where the function/struct essentially gets duplicated for each type. It seems to mess w…
-
comment
Comment #21947531
Typesafe generics via a better void* would make me super happy. There are definitely other quality of life improvements that could be added or reworked that wouldn't affect the sim…
- comment
-
comment
Comment #21443468
This is a very beautiful piece. Thanks for posting it.
-
comment
Comment #21442418
8 days per week. 5 days of work. The calendar has been conspiring against us.
-
comment
Comment #21418921
If status is not tied to a sense of self then I don't know what is. You mentioned in another comment that the skills you've learned are not you (roles?). They are just things you h…
-
comment
Comment #21418327
I'm treading into Marxist territory, but I think industrialization, technology, and their societal consequences are a large part. If I dropped the first part, there would be no dow…
- comment
-
comment
Comment #21345099
Basically allowing societies to function (people assuming roles, shame, and whatever). It should be of no surprise that a damaged sense of self often correlates with poor integrati…
-
comment
Comment #21316321
God forbid poor people catch on to this noble lie
-
comment
Comment #21284657
Language designers and enthusiats will forever be disappointed at how many social and human factors are at play, which coincidentally, is a large part of the motivation for program…
-
comment
Comment #20968522
No doubt, but they are all non standard which is irritating for people who expect that out of the box.
-
comment
Comment #20968496
This is bait but whatever. Keeping some properties of C is very hard if you go this route. It also seems you'll end up playing lanaguage design whack-a-mole problems which manifest…
-
comment
Comment #20889910
Don't do allocations in the call until the API becomes annoying and unpleasant to use. Also weighted upon the domain and performance implications of the particular API By nature of…
-
comment
Comment #20799875
Unfortunately, it's often algorithmically less efficient and more error prone, so everybody ends up replicating what git is doing with 'strbuf' but in slightly incompatible ways. T…
-
comment
Comment #20797601
The thing you are pointing to could have its length prefixed. I've always assumed that this isn't the case because nobody could commit to the size of the length prefix. Is it strin…
-
comment
Comment #20797416
I do this, but I like to just return the actual struct and also avoid typedefing pointer semantics. Can double as a dynamic array too. It's true. We all have string libraries...