HN user

chrisamanse

105 karma

[ my public key: https://keybase.io/chrisamanse; my proof: https://keybase.io/chrisamanse/sigs/V_gX5b0K47R_-bMiduTMFy9mdPolmQtDwg9go_Nmnd4 ]

Posts15
Comments14
View on HN

Bluetooth used to be common until vendors started implementing their own file-sharing or just focused on sharing files in the "cloud", which is really inconvenient when there's no internet connection (not to mention, even when there is internet connection, it's really an inefficient process, bandwidth-wise, to send someone right beside you a single file over the internet).

Maybe we should push a standard for local file-sharing so that all vendors will implement it in their mobile operating systems.

Swift for Windows 10 years ago

This is just Swift :) It does not include the UIKit or AppKit framework. Not yet at least. Let's hope that Apple open source them too.

Yes, currently. But in the link, it states that "For Linux, Swift 3 will also be the first release to contain the Swift Core Libraries." And GCD (or libdispatch) is part of the Swift Core Libraries :)

IMHO, ++ is not readable. A beginner would think that data[pos++] is the same as data[pos+1] when it's actually, data[pos]; pos = pos + 1;.