Live data from Hacker News

Viewing profile — regi

regi

HN member
Joined
Wed, Oct 16, 2013, 5:25 PM UTC
HN karma
20
Public activity
16 items

About regi

https://github.com/reginaldl/librinoo

Recent public activity

  1. 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'…

  2. 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…

  3. 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…

  4. 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…

  5. 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…

  6. comment
    Comment #8240375

    I fully agree. And besides being outdated, this article totally matches the expression: "Torture numbers and they'll confess to anything".

  7. story
  8. comment
    Comment #8223971

    Wow. How many videos is this?!

  9. 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…

  10. story
  11. 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…

  12. comment
    Comment #8200965

    And anything that requires more than 1024 fds...

  13. 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

  14. 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…

  15. 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 …

  16. comment
    Comment #6560909

    Interesting. I'm attempting to do pretty much the same thing in C: http://github.com/reginaldl/librinoo