Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jmreardon
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
jmreardon
13y ago
Sure: http://www.law.cornell.edu/cfr/text/8/101.3 The relevant portion is: "A person born in the United States to a foreign diplomatic officer accredited to the United States, as a matter of internationa
2.
▲
by
jmreardon
13y ago
With the exception of children of foreign diplomats, if you are born in the USA, you have citizenship. Who your parents are is irrelevant.
3.
▲
by
jmreardon
15y ago
It's pulling in a copy of the css file the flask site uses.
4.
▲
by
jmreardon
15y ago
Microsoft has had such a service for a few years now, they call it SkyDrive. Unfortunately it wasn't a very good user experience when I last looked at it. It's been a while though (and I just use Dropbox now), so it might have gotten better
5.
▲
by
jmreardon
15y ago
It goes something like: a b c d e f g becomes: a.b(c).d(e).f(g)
6.
▲
by
jmreardon
15y ago
Java and the JVM are not the same thing. Java is a programming language. The JVM is a stack-based virtual machine that executes Java bytecode. Java bytecode is what Java compiles into (ie. the contents of .class files). As it happens, the J
7.
▲
by
jmreardon
15y ago
In scala you would use a for-comprehension to get the same effect: for (p <- persons; if p.getAge >= 18) { println(p); }
8.
▲
by
jmreardon
15y ago
Big O notation is intended to convey the algorithm's runtime as a function of the inputs. By the sounds of it, the number of checkboxes you had was actually fixed and relatively small. In this case, the algorithm is still O(n). The real pro
9.
▲
by
jmreardon
15y ago
For anyone that has no idea what's going on here, this is a reference to a sea shanty called "Drunken Sailor" ( http://en.wikipedia.org/wiki/Drunken_Sailor )
10.
▲
by
jmreardon
15y ago
This document isn't actually a legislation. It is a regulation made under the authority of the Copyright Act, and as the preamble states, it is "for the years 2009 and 2010". The actual legislation does not make any reference to "pixels" or
11.
▲
by
jmreardon
15y ago
They have a call centre in my hometown, handling calls for a cell phone provider and a credit card company (for the most part at least). My understanding is the company mostly does incoming calls, ie. customer support lines and the like. Th
12.
▲
by
jmreardon
15y ago
I can tell you is isn't being deallocated before being used, that would be a major bug. So, I guess it would get moved, but the GC probably won't run unless the first gen space is pretty full. I'm glossing over details because, well, the GC
13.
▲
by
jmreardon
15y ago
High object churn shouldn't be a problem for the JVM, whether it is running Scala or Java code. Allocation lots of little objects and then discarding them shortly after is a use case the JVM is well optimized for. You would have to allocate
14.
▲
by
jmreardon
15y ago
Actually, that doesn't appear to be the case. You can see some long term trends from StatsCounter[1]. From May 2009 to May 2011, Firefox's marketshare has been fairly stable, while IE's dropped ~18% and Chrome's rose ~17%. [1] http://gs.st
15.
▲
by
jmreardon
15y ago
I think the other replies have answered your question well enough, but your definitions for = are a litle off. The cases 1 and 2 are really the same thing. In Python the names are references to objects. Assignment in Python is like using po
16.
▲
by
jmreardon
15y ago
The "=" in the declaration of Haskell functions isn't considered an assignment, but a binding of a name to a definition. Usually when you have assignments, you are permitting a name to be rebound to a different value than it had originally.
17.
▲
by
jmreardon
16y ago
While not quite a legal requirement, at the last company I worked for the timesheet was described as something like: If we don't give the government timesheets, they don't pay us our salaries. The one before that said the timesheets were us
18.
▲
by
jmreardon
16y ago
There's Happstack too: http://happstack.com/index.html . That said, there are quite a few little Haskell web frameworks/libraries floating around already, so unless you're bringing something absolutely amazing to the table compared to wha
19.
▲
by
jmreardon
16y ago
If the title suggests the article is directly relevant to me, I'll open the article, then the comments. If the title merely looks interesting, or there are a lot of comments, I'll take a look at the comments first, and then maybe the articl
20.
▲
by
jmreardon
16y ago
It's not just .ca domains, I got one from them for a .com recently. The contact information is a Canadian address though.
21.
▲
by
jmreardon
17y ago
Visiting the site sets a cookie on your machine. It would appear they are checking that cookie to determine if you get counted again.