Viewing profile — optymizer1
optymizer1
HN member- Joined
- Fri, Dec 06, 2013, 2:33 AM UTC
- HN karma
- 28
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About optymizer1
No profile information was provided.
Recent public activity
-
comment
Comment #7129987
You could even go further and assume all user resources are logical extensions of sleepy.Resource: type HelloResource struct { sleepy.Resource } This makes it clear that you're inh…
-
comment
Comment #7095477
Russian first names (not Cyrillic) are very strange: "Innocent Korovin" - really? Russian (cyrillic) seem more realistic though.
-
comment
Comment #7081523
So.. it's like prefetching.
-
comment
Comment #7081498
Here's an advice: browse for job posts you'd be interested in. Look at required/preferred qualifications. Start learning those. When ready, apply for those kinds of jobs. Also, fin…
-
comment
Comment #6988931
In C, variables have function-level storage. I don't recall the actual term from the C standard, but the storage for _all_ variables declared in any blocks inside a function is all…
-
comment
Comment #6988897
That's the obvious next step, but it's not valid C89 and that may or may not be relevant for people doing embedded programming. Personally, I'm all for using newer standards and de…
-
comment
Comment #6986055
I'm not completely on board with #4 (initialization of variables). I agree that 'declaring and then assigning a value' _within the same block_ vs 'initialized declaration' has no s…
-
comment
Comment #6970497
I hate to be that guy, but what's the big deal? Where's the full disclosure? It looks like they're just documenting the API, which is not really disclosing much. Anyone can fire up…
-
comment
Comment #6963063
On a related note, 10 years ago, I was asked to go to MIT and take a math exam instead of a student. Obviously, I said no, but I did not expect an MIT student to do that. He was mo…
-
comment
Comment #6925709
I find the JSON benchmark misleading a bit. I posted this before, but I'll say it again: JSON serialization in Go is slow (2.5x slower than Node.js for example [1]). The web server…
-
comment
Comment #6874194
This is pretty neat. Functions that read from or write to http.Request.Body should be able to accept a Context object, assuming they take a Reader/Writer. If they take an http.Requ…
-
comment
Comment #6871718
Interesting. Now, what does SetUser(r, "dave") do? Since you're passing in 'r', it must keep a map of all requests and their data, i.e. map[*http.Request]string ("dave" being the s…
-
comment
Comment #6859050
I'm not saying that having a bug is something to be ashamed of. I am pointing out that the page is making a big deal out of a small issue, in order to argue a bigger point: operati…