HN user

txttran

119 karma
Posts0
Comments42
View on HN
No posts found.

From: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...

['1', '2', '3'].map(parseInt); // While one could expect [1, 2, 3] // The actual result is [1, NaN, NaN]

parseInt is often used with one argument, but takes two. The first is an expression and the second is the radix. To the callback function, Array.prototype.map passes 3 arguments: the element, the index, the array. The third argument is ignored by parseInt, but not the second one, hence the possible confusion.

I'm always interested in reading about the inner workings of gangs. It seems like these biker gangs are not particularly sophisticated nor well organized, though. The main one in the story immediately lost cohesion when their leader fled the country and were absorbed by the Yakuza. In many ways, they seem less robust and effective than biker/street gangs in America.

What constitutes a startup?

Because they did have customers and revenue for the service that they offered. They had everything that is part of a business (albeit, a very slow and unprofitable one). They're missing the ability to scale since they had no tech stack to speak of, but their MVP did not really need one.

They said Groupon is one of the "examples of successful Chicago based startups". So it's no longer a startup. And it IPOed recently whereas Orbitz IPO'ed in 2003 so it's not a recent startup.

I disagree on this. Casual poker players will just play his hand as he's not that experienced with reading people.

While you are right that there is no DFS analogy to 'playing the player,' advanced DFS players build complex models, hedge their bets, and write (or hire people to write) scripts that update their bets as their beliefs about that day's games changes. Different kinds of skills than poker, but not less skill.

I love how he ignores the top response to his question: "If knowledge of a candidate's previous salary doesn't influence your offer, why do you ask for it and what do you do with it?"

SEEKING WORK

San Francisco, but remote preferred.

Full-stack LAMP Web Engineer (also proficient with node.js)

Five years experience in Silicon Valley at both Zynga and as engineering hire #1 at a startup working on point of sales. I lead development for our website component, which is a dashboard for our merchants, showing them their sales data, business analytics, inventory management, email marketing, and much more. I am happy to give you a demo of all the features I worked on over Skype or gChat.

I have extensive experience with both scaling problems and building and shipping a product from scratch. I can help you ruthlessly prioritize your features and build your product!

Please contact me at tom.tran at gmail.

Clinkle 12 years ago

What a disappointing product after such hype. Seems like a desperation pivot. I'd guess that the business partnerships didn't pan out and Apple supplants their proprietary technology with Apple's ecosystem. Given how crowded the rewards marketplace is, this seems like they're just throwing good money after bad.

I believe conduit produces one of those adware toolbar plugins that get installed when you install utorrent, etc. It will also attempt to change your browser home page as well. I'm assuming that very few hits to conduit.com are actually intentional.

For everyone who is poo-pooing Coin because it's not a digital wallet, please answer this question: How long from now will most merchants that accept credit cards also start accepting an e-wallet of some sort?

I honestly would be stunned if this happened in <10 years. I think we very often underestimate how slow adoption rate is for new technology and how much money can be made by playing nice with the incumbent technology instead of trying to disrupt it from the onset.

I'm a complete noob when it comes to cryptography. I understand that having a PRNG that doesn't return numbers with even distribution across a range is bad. Extreme example would be something like http://xkcd.com/221/.

But could someone explain how an attacker can take advantage of the fact that 0 is returned ~1% more often than other digits? It this flaw alone sufficient to break cryptocat? Or does it simply make brute forcing easier when combined with other crypto flaws?