Viewing profile — georgef
georgef
HN member- Joined
- Fri, May 17, 2013, 5:03 PM UTC
- HN karma
- 16
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About georgef
No profile information was provided.
Recent public activity
-
comment
Comment #8808144
I'm reminded here that JPEG includes arithmetic encoding as part of the standard, but almost everyone uses Huffman because up until a couple years ago arithmetic encoding was paten…
-
comment
Comment #8573907
It varies a lot, though. My T1D supplies (as a college student on my parents' insurance) cost more like $50-$75 a month.
-
comment
Comment #7494339
POSIX make really does make auto dependencies hard, but GNU make actually solves this fairly cleanly by adding an include directive. As long as you have a script or program to proc…
-
comment
Comment #5726534
Less typing is exactly the benefit, and with it less chance of error because of less repeated code. It is also another way of showing parallelism in your code. And again, the wrong…
-
comment
Comment #5725585
When I first started programming in C, I did the same thing with pointers (i.e., char* str; instead of char *str; ). Unfortunately, this creates the wrong impression that char* str…