Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
natedub
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
natedub
3y ago
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.
2.
▲
by
natedub
10y ago
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
3.
▲
by
natedub
12y ago
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 course, logging_tree is a
4.
▲
by
natedub
14y ago
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 a small flame to a bare piece of foam — a situation unlikel
5.
▲
by
natedub
14y ago
Recovering seemingly lost commits is really important skill to have when working with git. However, it is infinitely easier with the git reflog command.
6.
▲
by
natedub
14y ago
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 installed via Macports and it works for me.
7.
▲
A bit of nostalgia: Python.org in 1997
(web.archive.org)
1 points
by
natedub
15y ago
|
0 comments
8.
▲
by
natedub
15y ago
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-2010-2011/pycon-2011-jav... The key similarities in my mind a
9.
▲
by
natedub
15y ago
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 learning curve is rather steep, there are no tutorials besides Mic
10.
▲
by
natedub
15y ago
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 <body> element, btw). The font size is not a design decision. It should alw
11.
▲
by
natedub
15y ago
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.
12.
▲
Nginx+gzip module might silently corrupt data upon backend failure
(tech.blog.aknin.name)
3 points
by
natedub
15y ago
|
0 comments
13.
▲
by
natedub
15y ago
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) will do the trick.