Viewing profile — sebleblanc
sebleblanc
HN member- Joined
- Sun, Jan 25, 2015, 9:39 PM UTC
- HN karma
- 7
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About sebleblanc
No profile information was provided.
Recent public activity
-
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…
-
comment
Comment #10799505
Tuple support, which in essence are anonymous structs, would have been very nice in C, too.
-
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/
- comment
-
comment
Comment #9641196
That behaviour is not exclusive to standards committees. The government and private companies do it all the time.
-
comment
Comment #9220257
Great! Now the FBI does not even have to arrest me to get my fingerprints and retina scanned!
-
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…
-
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…
-
comment
Comment #8944370
But it is an implementation, albeit a non-standard one.