Viewing profile — regi
regi
HN member- Joined
- Wed, Oct 16, 2013, 5:25 PM UTC
- HN karma
- 20
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About regi
Recent public activity
-
comment
Comment #13412004
38% + about 1 month of net income to pay each year as income tax. There's absolutely no visibility on retirement plan. You just know that you earn "points", with no idea what they'…
-
comment
Comment #11720056
So I spent 3 years in Epitech, which forked into 42, and the first 4 weeks aren't a competition but more like an onboarding thing. You basically learn C in 4 weeks, with coding tes…
-
comment
Comment #8243556
Oh, so this is your thing right? Checking people's background... https://news.ycombinator.com/item?id=8183055 ;) And as I'm saying in following comments, even in 2006, this was poo…
-
comment
Comment #8243530
The C10k problem is 15-20 years old. Tcl uses select() which can handle a maximum of 1024 FDs. In other words, it would not be able to handle more than 1024 connections in parallel…
-
comment
Comment #8242901
"From SMTP filters/routers that handle millions of email deliveries a week to in-memory message journaling (for redundancy) that handle hundreds of transactions per second." I stop…
-
comment
Comment #8240375
I fully agree. And besides being outdated, this article totally matches the expression: "Torture numbers and they'll confess to anything".
- story
-
comment
Comment #8223971
Wow. How many videos is this?!
-
comment
Comment #8201316
It uses "user-space threads" similar to ucontext (swapcontext(3)). I have my own version: https://github.com/reginaldl/fcontext Once the stack allocated for a thread, context switc…
- story
-
comment
Comment #8200975
Callbacks can be avoided using co-routines. I started a project that uses asynchronous sockets but they appear synchronous. With a bit of abstraction, it's really easy to develop n…
-
comment
Comment #8200965
And anything that requires more than 1024 fds...
-
comment
Comment #8086250
How come this code has 117 stars on github?! Here's something that is probably safer and that actually scales: https://github.com/reginaldl/librinoo
-
comment
Comment #6573974
You show me yours, I show you mine ;) https://github.com/reginaldl/librinoo Just to comment on your post, as using blocking calls in coroutine might be a nice feature I think it de…
-
comment
Comment #6561169
We often forget that even though this common problem of replacing callbacks is getting more critical and urgent, people already thought about it and gave some solutions. Maybe not …
-
comment
Comment #6560909
Interesting. I'm attempting to do pretty much the same thing in C: http://github.com/reginaldl/librinoo