MartinodF
|
12 years ago
|
on: Lightweight HTML5 Grooveshark Player
Surprisingly, it works fine here in Italy too.
MartinodF
|
12 years ago
|
on: Leaseweb has wiped all Megaupload servers
You may be right! In that case, that's the risk you take when you decide to store the only copy of your important data on a service which is known for offering tons of pirated content (Megaupload appeared among the top results when searching for movies, tv shows, cracks and so on), run by a man who "was convicted of 11 counts of computer fraud, 10 counts of data espionage, and an assortment of other charges" [1]. If you really don't want to have a secondary copy, you should at least inform yourself about the company you're trusting your data with.
That said, I'm sorry for everyone that lost their data, but it's really not different than your hard drive failing without a backup.
[1] http://en.wikipedia.org/wiki/Kim_Dotcom
MartinodF
|
12 years ago
|
on: Leaseweb has wiped all Megaupload servers
The hypocrisy?
MartinodF
|
12 years ago
|
on: Leaseweb has wiped all Megaupload servers
Well, if you stop paying for the "cloud" storage you're using, I don't know what else you could expect...
MartinodF
|
13 years ago
|
on: Show HN: Save Memory in Google Chrome
MartinodF
|
13 years ago
|
on: How fast is apple.com?
You didn't get my point, probably because of my terrible english :) The browser has no way of knowing in advance if a script doesn't depend on any of the previous ones, so it cannot optimize this specific case and parse/execute the script before the other ones have been executed. You can manually tell the browser to load the scripts and execute them as soon as they're ready, in no particular order, via the async attribute. If you don't, the browser is going to assume that the order is important and load them one by one.
MartinodF
|
13 years ago
|
on: How fast is apple.com?
AFAIK the scripts cannot be parsed and executed in parallel since they're not explicitly async. The browser doesn't know if any of the following scripts may depend on the previous ones (think jQuery), so it just downloads them and then waits to parse and execute them in order, blocking rendering.
It's true that delivering them in parallel may in some cases reduce the actual download time, but given the small file sizes Apple is serving, the connection overhead (TCP handshake, HTTP headers, slow start, ...) just makes it worse. Most browsers (especially mobile ones) aren't even going to download more than 4-6 files at a time, since they're not using domain sharding.
MartinodF
|
13 years ago
|
on: AMA with Barack Obama
MartinodF
|
13 years ago
|
on: Show HN: Coding.fm - Raining.fm for coders
FYI, the link to raining.fm at the bottom of the page doesn't work :)
MartinodF
|
13 years ago
|
on: Final thoughts on Windows 8: A design disaster
"Pinning" to the taskbar also allows you to launch the first 9 (i think) programs by pressing Win+{1,9}
MartinodF
|
13 years ago
|
on: The New MacBook Pro: Unfixable, Unhackable, Untenable
And they're charging 200$ for an 8GB upgrade, not the whole 16GB!
MartinodF
|
14 years ago
|
on: Device turns Android phone into computer. A reason to make HTML 5 apps?
MartinodF
|
14 years ago
|
on: New PHP Vulnerability:?-s may expose source code for mod_cgi
Thanks for digging that up, it's indeed a very strong example in favor of good comments.
MartinodF
|
14 years ago
|
on: Galaxy Nexus now on sale in Google Play
We have tons of NFC-enabled terminals in Italy, at least in the bigger cities. They're already used by Mastercard PayPass and Visa PayWave. If I could use my Italian credit card with Google Wallet (or even recharge the Google prepaid card) I would be doing half of my purchases via NFC.
MartinodF
|
14 years ago
|
on: Richard Branson launches Virgin Volcanic, journeys to the center of the Earth
Happy 4/1!
MartinodF
|
14 years ago
|
on: Man Supposedly Flies With Custom-Built Bird Wings
MartinodF
|
14 years ago
|
on: Man Supposedly Flies With Custom-Built Bird Wings
I believe this could be real, but the wings are powered by 4 electric motors. He uses an HTC Android phone and a WiiMote to read the movements of his arms, and that readings are used to control the wings.
There are many more details on his blog http://www.humanbirdwings.net/project-timeline/
Edit: JoeCortopassi raised some good points in his comment. I'm not so sure this is plausible, even with the 4 motors.
MartinodF
|
14 years ago
|
on: Apple Store App knows when you walk into an Apple Store
Also, the title is misleading for another reason. iOS doesn't "know when you walk into an Apple Store", you have to manually open the app, which removes most of the "wow" factor IMHO.
MartinodF
|
14 years ago
|
on: 3-SAT in polynomial time, or P=NP
Thanks! I looked for other entries but couldn't find them. Interesting discussion