Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
alts
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
alts
14y ago
I met Danilo (briefly) at a Grubwithus dinner a while back in the SF. It's strange to type, but I never suspected he was Latino based on appearance. I'm in a similar boat, where I pass as white. There have been a number of times in my (so f
2.
▲
by
alts
14y ago
But there are better ways of attacking fraudulent IAPs. Perhaps more effort, but certainly fewer false positives. http://developer.apple.com/library/ios/#documentation/Networ...
3.
▲
by
alts
15y ago
One github user already put the Utah state legal code on github. All commits are attributed to him, but it's fascinating watching the wording change commit by commit. His README proposes a similar law patching idea. https://github.com/dive
4.
▲
by
alts
15y ago
It happened to me with a recruiter. They were calling people that were somehow connected to me to try to get my phone number. What I found most upsetting was how they treated the people that they called. The recruiter was very persistent, a
5.
▲
by
alts
15y ago
I really like this idea. I took a look at the Javascript output of the compiler, and noticed that effectively every statement of the program would result in a function nested within the function created by the last N statements. Since Javas
6.
▲
by
alts
15y ago
To those concerned, a request with your provided info appears to only be sent to their servers once you arrive at the Results step (which itself is mostly just a recap of the previous step).
7.
▲
by
alts
15y ago
When I took cs142, it was actually a web security class. It seems that the last few weeks of the class will still be devoted to security. The introduction to Rails was done solely to get students to implement safeguards against the attacks
8.
▲
by
alts
15y ago
Haskell: (\>) x f = f x Allows me to write in a more readable manner [1..10] \> map (*2) \> filter (<5)