Viewing profile — natedub
natedub
HN member- Joined
- Fri, Jul 22, 2011, 2:14 AM UTC
- HN karma
- 19
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About natedub
No profile information was provided.
Recent public activity
-
comment
Comment #36939446
One more tip: try Gear Aid Revivex Odour Eliminator (formerly Myrazime). In my experience it’s like a reset switch for your synthetics - no matter how far gone.
-
comment
Comment #12108236
Passwords are not keys, but you can generate a key from a password with a Password-Based Key Derivation Function. See https://en.wikipedia.org/wiki/PBKDF2
-
comment
Comment #7911664
You can disable Celery's automatic logging configuration by connecting a listener to the setup_logging signal. https://celery.readthedocs.org/en/latest/userguide/signals.h... Of co…
-
comment
Comment #4493733
The article quotes a fire-safety scientist named Vytenis Babrauskas, whose study has been used in support TB 117: "The problem, he argues, is that the standard is based on applying…
-
comment
Comment #4415785
Recovering seemingly lost commits is really important skill to have when working with git. However, it is infinitely easier with the git reflog command.
-
comment
Comment #4294845
It can work in terminal vim, too. I believe the special + register for the system clipboard is enabled by a compile option, but that may not be entirely accurate. I have Vim 7.3 in…
- story
-
comment
Comment #3646548
Ian Bicking gave a talk on the similarities and differences between Python and Javascript that might be helpful, but it's pretty high level: http://blip.tv/pycon-us-videos-2009-201…
-
comment
Comment #3550473
Us too. After a year, we're still really happy we went with Closure, but trying to convince most javascript developers outside our team to learn it has an uphill battle. The learni…
-
comment
Comment #3516987
Agreed, this frustrates me immensely. Fortunately both Chrome and Safari have good built-in Developer Tools that let you disable that style (it's set on the element, btw). The font…
-
comment
Comment #3292749
Any HTML5 player will play WebM in Firefox 4, Chrome and Opera 10.6. IE9 can play WebM with a plugin. Every other browser cannot, nor can any Flash player.
- story
-
comment
Comment #3144775
Actually [x for x in xrange(..)] will produce only one list. In Python 2.X, range() returns a list while xrange() an iterable. If you just need an iterable, itertools.repeat(0, 100…