Live data from Hacker News

Viewing profile — sebleblanc

sebleblanc

HN member
Joined
Sun, Jan 25, 2015, 9:39 PM UTC
HN karma
7
Public activity
9 items

About sebleblanc

No profile information was provided.

Recent public activity

  1. comment
    Comment #13280905

    "If Microsoft forced either SmartScreen OR AppLocker" Meh, just add a button or clickable link that allows the sysadmin to swiftly disable such warnings. Just make sure to put a sc…

  2. comment
    Comment #10799505

    Tuple support, which in essence are anonymous structs, would have been very nice in C, too.

  3. comment
    Comment #10570712

    SQLAlchemy[1] is a large project with a very solid codebase; it is very well documented and the API is exemplary. 1: https://github.com/zzzeek/sqlalchemy/

  4. comment
  5. comment
    Comment #9641196

    That behaviour is not exclusive to standards committees. The government and private companies do it all the time.

  6. comment
    Comment #9220257

    Great! Now the FBI does not even have to arrest me to get my fingerprints and retina scanned!

  7. comment
    Comment #9160751

    Regarding the C++ code: /* This is standard modern C++ random number generation. It means, using the random generator "engine", return a number according to distribution "dist". In…

  8. comment
    Comment #9091628

    And if you want to emulate static variables in a function, you can do that: def counter(): counter.x += 1 return counter.x counter.x = 0 counter() > 1 counter() > 2 Beware! singlet…

  9. comment
    Comment #8944370

    But it is an implementation, albeit a non-standard one.