Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
pindi
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Mixed Content Blocking Enabled in Firefox 23
(blog.mozilla.org)
1 points
by
pindi
13y ago
|
0 comments
2.
▲
by
pindi
13y ago
Not quite. The essence of a double-spend attack is creating two transactions spending the same bitcoin: one to the merchant (call it A) and one to another of your accounts (call it B). You send A to the merchant and secretly submit B to ano
3.
▲
by
pindi
13y ago
I don't know that comparing EC2 reserved instances to DigitalOcean is really "apples-to-apples", since DigitalOcean has hourly billing and no upfront cost just like EC2 on-demand, and unlike EC2 reserved.
4.
▲
Getting started with Puppet
(pindi.us)
1 points
by
pindi
13y ago
|
0 comments
5.
▲
by
pindi
13y ago
I think the focus is on pedantic corrections that are entirely irrelevant to the discussion and serve only to make the commenter feel superior. For example, see this recent thread [1]. The first commenter proposes a device that would use a
6.
▲
by
pindi
13y ago
A similar method is a "pepper", a form of salt common to all users and stored in the application configuration, allowing the passwords to resist attack even if the hash and user-specific salt are lost. The reason it's not often used is that
7.
▲
by
pindi
13y ago
Also IcoMoon for generating icon fonts: http://icomoon.io
8.
▲
by
pindi
13y ago
Well, not dangerous so much as will fail with a "Model instance is not JSON serializable" message. So of course you'll need to construct the list/dictionary representation of your data manually. A good framework can help with that, but this
9.
▲
by
pindi
13y ago
> Django does not have a built in JSON HTTP response, so you are going to have to either man up and roll your own (good luck) Am I missing something? What's wrong with: return HttpResponse(json.dumps(data), mimetype='application/js
10.
▲
by
pindi
13y ago
Good idea, posted my reply: https://github.com/zmoazeni/csscss/issues/25
11.
▲
by
pindi
13y ago
It seems like when run on SCSS mode, it expands mixins before running the redundancy check. For instance, two of my selectors both include three of the same mixins, which end up expanding into 23 rules, and CSSCSS reports 25 shared rules be
12.
▲
by
pindi
13y ago
Sounds like Google TiSP: http://www.google.com/tisp/install.html
13.
▲
by
pindi
13y ago
You may want to mention that the Python library is not thread-safe, since it essentially uses a global variable to store the logged statements until the middleware writes them to the response. Shouldn't be a problem when used with a develop
14.
▲
by
pindi
13y ago
It's certainly detectable with precise instruments, but it's not practical to test each and every bit of gold one acquires so thoroughly. Hence the opportunity for counterfeit gold that passes casual inspection and weighs about the right am
15.
▲
by
pindi
13y ago
Tungsten has a density extremely similar to that of gold (19.25 g/cm³ for tungsten, 19.30 g/cm³ for gold), and is substantially less expensive. And tungsten counterfeiting does happen: http://www.zerohedge.com/news/tungsten-filled-10-oz-go
16.
▲
Show HN: StudyRoom, our social learning platform for online students
(getstudyroom.com)
3 points
by
pindi
13y ago
|
0 comments
17.
▲
by
pindi
13y ago
It's used in the sense of "decentralized": no one company controls the Persona system as a whole. Authentication is performed against the domain of the email address the user gives, falling back to authenticating with Mozilla's central serv
18.
▲
Debugging a race condition with client-side load balancing
(pindi.us)
2 points
by
pindi
13y ago
|
0 comments
19.
▲
by
pindi
13y ago
Memory corruption is generally defined as occurring when the contents of RAM are modified in a way not intended by the original programmers. [1] Under this definition, buffer overflow attacks would certainly qualify, as would this exploit.
20.
▲
by
pindi
14y ago
I have a system exactly like this at my company, with a prettier UI on top of the SQL querying. I've been considering open sourcing it for a while; I wonder if there really is a demand for this, or if it's one of those things that everyone
21.
▲
by
pindi
14y ago
Well, if they crashed on a certain block then the operators of the client would notice and presumably update to a newer version of the client. The problem in this case was more subtle: the old clients did not crash on the block, they simply
22.
▲
by
pindi
14y ago
No. You would have 100% control of the subtree following that failing block, but it would be very quickly outpaced by another subtree that the rest of the network would be working on. You need to construct a block that close to 50% of clien
23.
▲
by
pindi
14y ago
Puppet does have a single run mode of usage: http://docs.puppetlabs.com/man/apply.html I use it to manage just 5 servers, with a Fabric script that rsyncs the manifests up to the servers then runs `puppet apply` to apply the changes.
24.
▲
by
pindi
14y ago
When run in client-server mode, Puppet will run every 30 minutes by default, overwriting local changes with the configuration on the server.
25.
▲
by
pindi
14y ago
When defining our initial data schema, we forgot to put a unique constraint on user email addresses. There ended up being quite a few duplicates, so before we added the constraint I had to write a query to remove the duplicate users. About
26.
▲
by
pindi
14y ago
When developing Javascript apps locally, I often use SimpleHTTPServer so I can access them through http:// rather than file:/// URLs, which tend to interact badly with the same-origin policy.
27.
▲
by
pindi
14y ago
No, Django's XML deserialization is not used automatically. It is only used for mass importing objects to the database, which most sites would allow only admin users to do.
28.
▲
by
pindi
14y ago
"Node.py" is Twisted [1] and/or Tornado [2]. And you're definitely correct. [1] http://twistedmatrix.com/trac/ [2] http://www.tornadoweb.org/
29.
▲
by
pindi
14y ago
They do, you just have to request it: //Python >>> repr(1000000 * 8.2) '8199999.999999999' >>> "%lf" % (1000000 * 8.2) '8200000.000000'
30.
▲
by
pindi
14y ago
Not quite: Dwarf Fortress has always used OpenGL ( http://www.bay12forums.com/smf/index.php?topic=28841.0 ) to render tiles that just happen to be ASCII characters onto the screen. The fan effort was to port it to SDL, making it much more e
More ›