Viewing profile — maxpolun
maxpolun
HN member- Joined
- Fri, Mar 08, 2013, 3:12 AM UTC
- HN karma
- 72
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About maxpolun
No profile information was provided.
Recent public activity
-
comment
Comment #15505176
I don't tend to believe people who say that everyone working in a particular field are crazy and stupid. Wrong maybe. Whole fields are wrong all the time. But not because they're a…
-
comment
Comment #14424599
You can have multiple threads with coroutines. However you generally only have one thread per CPU/hardware thread, and use async io within that thread. This is the general architec…
-
comment
Comment #13356541
I wonder what the performance difference is when you're actually handling the errors though. I'd imagine that try { doThing(); } catch (Exception1 e) { handleError1(); } catch (Exc…
-
comment
Comment #13214934
A lot of people will recommend reading great code -- well known open-source libraries etc. That's good, but one thing I think is useful is to read your dependencies. Then you can g…
-
comment
Comment #13172368
I think they're just being very strict about what counts as breaking. They gave the example of upgrading the typescript compiler they use as breaking.
-
comment
Comment #13117092
Rust has overflow checking in debug mode, but release mode does not have any overflow checking. The thinking here is that you'll hopefully catch most of your overflows while testin…
-
comment
Comment #13081657
Modern JS does allow you to send large buffers from one worker to another with just a pointer copy (because it stops being accessible from the sender).
-
comment
Comment #12751870
Sounds like a similar process to hand-pulled cotton candy, just with pasta instead of sugar. here's how to make that: https://www.youtube.com/watch?v=auRNHI2nkIU
-
comment
Comment #5341896
for migrations in go, check out goose ( https://bitbucket.org/liamstask/goose ). I've used it, and it's pretty simple, but works pretty well. You can write migrations either in pla…