Earlier quoted context omitted.
The article: "Surely the smartest redhead in Ireland,” read one headline about 16-year-old Patrick being named Young Scientist of the Year for developing a programming language and artificial intelligence system."
Are "redheads in Ireland" stereotyped as being particularly smarter or stupider than other Irish? That's the only way I can make sense of that headline - it makes as much sense to me as "the smartest black-haired person in Ireland"
How the Collison brothers turned ‘seven lines of code’ into Stripe
51–60 of 195 posts
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#52Earlier quoted context omitted.
To expand, it's these 7 lines. (Actually 12) - more or less. Maybe not precisely that, but it's the bit where you add a payment form to your website. It's a nice headline, but it really leaves out the tremendous amount of back-end work that went into making that front end easy to use.
The PayPal form is roughly the same number of lines. The real break through for stripe was it was an alternative to PayPal with a modern UI.
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#53Earlier quoted context omitted.
To expand, it's these 7 lines. (Actually 12) - more or less. Maybe not precisely that, but it's the bit where you add a payment form to your website. It's a nice headline, but it really leaves out the tremendous amount of back-end work that went into making that front end easy to use.
Actually it's 1 line.
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#54The bit about Amazon is the actual news contained in the story, if anyone here is interested in discussing that.
Yeah, this is really, really interesting: > Stripe’s new partnership with Amazon. com Inc., the largest and most sought-after customer on the internet. Over the past couple of weeks, Stripe began handling a large, though undisclosed, portion of Amazon’s transactions. Lots of questions about why Amazon would do something like that. Is it so they have a backup in case their systems go down? Or was Stripe actually able…
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#55Earlier quoted context omitted.
The PayPal form is roughly the same number of lines. The real break through for stripe was it was an alternative to PayPal with a modern UI.
Another great reminder to all you founders - don't underestimate the power of great product design.
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#56If you are wondering how Stripe could even start with just 7 lines of code, it's a bit misleading: With Stripe, all a startup had to do was add seven lines of code to its site to handle payments: What once took weeks was now a cut-and-paste job. I.E. the simplicity of the Stripe platform (taking only 7 lines of code for developers) was how they succeeded, not that they built a startup at first with just 7 lines of co…
To expand, it's these 7 lines. (Actually 12) - more or less. Maybe not precisely that, but it's the bit where you add a payment form to your website. It's a nice headline, but it really leaves out the tremendous amount of back-end work that went into making that front end easy to use.
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#57~12 years ago, it was Patrick Collison that was named young scientist of the year for developing a dialect of Lisp called Croma: http://lemonodor.com/archives/001038.html I'm glad to see he has continued to do well.
I read these stories and feel like I was the only good kid that actually focused in class.
What did I do wrong? I blame WoW :P
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#58Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#59If you are wondering how Stripe could even start with just 7 lines of code, it's a bit misleading: With Stripe, all a startup had to do was add seven lines of code to its site to handle payments: What once took weeks was now a cut-and-paste job. I.E. the simplicity of the Stripe platform (taking only 7 lines of code for developers) was how they succeeded, not that they built a startup at first with just 7 lines of co…
So it's the equivalent of saying "How this inventor made $X billion with the flick of a switch" after they spent decades inventing the light bulb.
Re: How the Collison brothers turned ‘seven lines of code’ into Stripe
#60Earlier quoted context omitted.
To expand, it's these 7 lines. (Actually 12) - more or less. Maybe not precisely that, but it's the bit where you add a payment form to your website. It's a nice headline, but it really leaves out the tremendous amount of back-end work that went into making that front end easy to use.
Wait, the /your-server-side-code bit seems like the most difficult. Did Stripe not implement this aspect as well? I would have no idea how to securely process credit card transactions server-side.
So you get an anonymous "charge" token that you can revoke if a later part of the checkout process fails, and CC data never touches your system.
(I think the markup for that was a little bit different than what was posted above though).