teps | 10 years ago | on: Proposal: Go should have generics
teps's comments
teps | 10 years ago | on: Five hundred days using Ubuntu Phone
I would miss whatsapp too... Not that I like the app, but it's commonly used within my group of friends.
Fix the two points above and you've go a buyer :)
teps | 10 years ago | on: The Weird Global Appeal of Heavy Metal
I know some people who where only interested in metal because it made them more rebellious. Their interests quickly fade always as they grew up and now they are the first to tell everybody how it's a music for teen. I remark that your souvenir is about your idols and how they acted/are dressed and not that much about the music.
But some people are genuinely interested in metal and if you happen to be a bit curious, it's easy to see that it's not more rigid, codified or stalled that any other genre.
teps | 10 years ago | on: What to do when your self-driving car decides to drive you to the police
teps | 10 years ago | on: A Message to Our Customers
teps | 10 years ago | on: Vulkan is Here
teps | 10 years ago | on: OpenFace: Free and open source face recognition with deep neural networks
A plugin for vlc that can show you the name of any actor when you ask would be really fun!
teps | 10 years ago | on: The Traveling Salesman with Simulated Annealing, R, and Shiny
I quote the explanation of step 4:
If the candidate tour is worse than the existing tour, still maybe accept it, according to some probability.
The probability of accepting an inferior tour is a function of how much longer the candidate is compared to the current tour, and the temperature of the annealing process.
A higher temperature makes you more likely to accept an inferior tour
Why would you need a simulated annealing for a seemingly so simple function?teps | 10 years ago | on: Why Go Is Not Good (2014)
With similar argument, I could list every feature of xml, show that they are not easily solvable with json and conclude that json is not good.
teps | 10 years ago | on: Show HN: Adblock to Bitcoin
The problem is that there is no way to easily give a small amount of money to a content creator on its creations.
teps | 10 years ago | on: Academics sharing paywalled papers with a codeword on Twitter
Couldn't the scientist refuse to peer review non-openly published papers?
teps | 10 years ago | on: W3C Web Payments Roadmap
As an example in Switzerland most online retailers allow you to pay with a Postcard. ( https://www.postfinance.ch/en/priv/prod/card/pfcard/direct/o... ) I would have hoped that PostFinance, the issuer of the card, would be able to implement some standard that would allow it's client to pay retailers that implement such standard.
Switzerland has only 8 millions inhabitant, It's certainly not enough to convince big tech companies to add it as a payment option.
teps | 10 years ago | on: W3C Web Payments Roadmap
For me, one of most important problem is the inability for small payment processor to enter the field because now if amazon, eBay, steam, etc... don't include your payment scheme you're better be ready for a though (impossible?) battle. That's one reason the payment industry stagnate so much.
I think they would really fit the language well. The good part is:
* Only the package and import statement change, the rest of your code stay the same and is not cluttered
* They are easier to reason about as it is more coarse grained
* They do not break the compatibility
The the bad part is:
* You cannot implement filter/map/reduce (but being able to implement them would conflict with the orthogonality of the language)
* It could lead to code bloat, but not more than manually copy pasting the code.