Viewing profile — cbrogrammer
cbrogrammer
HN member- Joined
- Fri, Apr 08, 2022, 4:26 PM UTC
- HN karma
- 32
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About cbrogrammer
No profile information was provided.
Recent public activity
-
comment
Comment #34350834
TDD helps close to 0 % with fragility and only exists to help development
-
comment
Comment #34218845
> const createUser = ( > attributes: UserAttributes, > onCreate: (user: User) => void > ): User => { > user = User.create(attributes); > onCreate(user); This stood out to me, in an…
-
comment
Comment #33622562
Well that is just objectively false. The man was never "sentenced to 13 federal crimes, 50 years of imprisonment and one million dollars in fines". It is blatantly false.
-
comment
Comment #33620194
Saying anyone is "responsible" for a suicide is disingenuous
-
comment
Comment #33558080
> Goal: Distribution of labor and resources based upon the needs of society > Proxy: Capitalism > Strong version of Goodhart's law leads to: Massive wealth disparities (with income…
-
comment
Comment #33466408
We could start by considering not writing stuff like > /* > * Truncate to 8 chars if standard DES since not all crypt()'s do this. > * If this turns out not to be safe we will have…
-
comment
Comment #32636454
there is no copy-on-write in the C language
-
comment
Comment #32480141
Gnome and making bad choices, name a better combo
-
comment
Comment #32355201
if C throws away portability it is no longer C
-
comment
Comment #32249893
That is what many people fail to understand as to why us C programmers dislike C++
-
comment
Comment #31988061
CUDA is absolutely fine just like x86 assembly is absolutely fine. They are well thought out. What I am saying is that from my perspective they are as granular and difficult, and p…
-
comment
Comment #31987980
> is **like** writing x86 assembly by hand yes absolutely, way too granular and low level
-
comment
Comment #31986236
Writing CUDA by hand is like writing x86 assembly by hand, why would anyone ever do that willingly and not for fun?
-
comment
Comment #31093615
will this laptop ever ship with a non-US keyboard layout? The enter key is so bad on them, I hate that it is long and not high. Dealbreaker unfortunately, wish I could buy one of t…
-
comment
Comment #30959184
What do you mean? A cast to a char pointer is absolutely valid C. For most intents and purposes, a pointer "type" in C is merely the step size, and only void pointers cannot be dec…