bertolo1988 | 7 years ago | on: Aptoide wins court battle against Google in landmark case
bertolo1988's comments
bertolo1988 | 7 years ago | on: Apple Engineers Its Own Downfall with the Macbook Pro Keyboard
I am not paying 2k for a laptop that wobbles.
bertolo1988 | 7 years ago | on: Apple Engineers Its Own Downfall with the Macbook Pro Keyboard
bertolo1988 | 7 years ago | on: The EU's Copyright Proposal Is Extremely Bad News for Everyone, Even Wikipedia
bertolo1988 | 7 years ago | on: The EU's Copyright Proposal Is Extremely Bad News for Everyone, Even Wikipedia
bertolo1988 | 7 years ago | on: The EU's Copyright Proposal Is Extremely Bad News for Everyone, Even Wikipedia
Can you imagine how much businesses are ilegal now? Telemarketing is ilegal now, consultancy companies can't recruit new people via email or phone. People are yet to realize the true impact of GDPR.
bertolo1988 | 7 years ago | on: The EU's Copyright Proposal Is Extremely Bad News for Everyone, Even Wikipedia
How can you defend a legislation that makes everyone illegal, even outside your jurisdiction?
bertolo1988 | 7 years ago | on: GDPR for lazy people: Block all European users with Cloudflare Workers
There is no possible way they can enforce any law, fine or penalty outside their borders. They won't even try.
bertolo1988 | 7 years ago | on: GDPR for lazy people: Block all European users with Cloudflare Workers
I experienced this myself. EU is absolutely powerless outside their borders.
bertolo1988 | 8 years ago | on: France’s government is building its own encrypted messenger service
bertolo1988 | 8 years ago | on: Linus Torvalds: “Somebody is pushing complete garbage for unclear reasons.”
bertolo1988 | 8 years ago | on: Meltdown and Spectre Linux kernel status
bertolo1988 | 8 years ago | on: Node.js v9.2.0
bertolo1988 | 8 years ago | on: Secret Service Agent Sentenced In Scheme Related To Silk Road Investigation
bertolo1988 | 8 years ago | on: Secret Service Agent Sentenced In Scheme Related To Silk Road Investigation
bertolo1988 | 8 years ago | on: Plain emails not only save time but work better (2016)
bertolo1988 | 8 years ago | on: Plain emails not only save time but work better (2016)
They wanted to implement few dozen of auto generated emails with huge content.
The task was suspended 3 times, always because of the same thing: cost. Its insanely costly and hard to make a good looking cross platform email. After every suspension there were new design changes to implement so we ended up starting almost from scratch in every attempt.
I worked on it for a bit and i can assure you email clients are the biggest shit. Specially Gmail and Outlook.
A few highlights:
* Javascript not allowed.
* Outlook processes HTML and CSS with a specific engine which is also used in Microsoft Word.
* Outlook does not support paddings.
* Gmail requires the styles to be all inline.
* We followed Foundation Zurb recommendations and used tables all over. Still didn't work on all clients.
Humanity urgently needs to replace the emails with something else. Not only because the clients suck but because the protocol is outdated.
bertolo1988 | 8 years ago | on: Napa.js: A multi-threaded JavaScript runtime
Use C++.
If you ever decide to scale and distribute it for real save the state in a database and orchestrate containers. For this solution i would recommend using Node.js or Go.
bertolo1988 | 8 years ago | on: Napa.js: A multi-threaded JavaScript runtime
2 - That is only true if the your bottleneck is on communication somehow. Usually it is not.
And a huge advantage: You will write stateless and easy to scale apps that do not care how the machine resources are being handled.
bertolo1988 | 8 years ago | on: Napa.js: A multi-threaded JavaScript runtime
My app should be stateless and scale by replication. This is the most efficient solution in every possible way.