Viewing profile — chrisamanse
chrisamanse
HN member- Joined
- Fri, Jul 03, 2015, 6:06 PM UTC
- HN karma
- 105
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About chrisamanse
Recent public activity
- story
-
comment
Comment #13162498
IMO, it is unnecessary to commit the conflicts. Instead, you can see how merges were resolved by diffing the commits.
- story
- story
- story
-
comment
Comment #12652107
Swift. Create mobile apps instead of websites.
- story
-
comment
Comment #12428134
FireChat ( http://www.opengarden.com/firechat.html ) tried to do mesh network messaging, but security is hard to get right in mesh networks, since the data passes to other clients …
-
comment
Comment #12424590
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 …
- story
-
comment
Comment #12251823
Here's a nice checklist osxdaily: http://osxdaily.com/2012/03/04/mac-maintenance-tips/ Most of the time, I just clean up my desktop and reorganize files. Also, at least once a mont…
-
comment
Comment #12251749
Developers can now just upload one set of screenshots for an app. Optionally, they can also upload one app preview per device family. This will definitely make the release process …
- story
-
comment
Comment #12084085
Yeah, because it's also co-produced by Apple.
- story
- comment
- story
-
comment
Comment #11671105
I wish they would focus more on getting Realm to version 1.0.
- story
- story
-
comment
Comment #11663513
Concurrency is done with libdispatch library, which is also open source. Right now, it's only compatible with OS X, but int their post, they said that "For Linux, Swift 3 will also…
-
comment
Comment #11649848
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.
- story
-
comment
Comment #11649710
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 Swi…
-
comment
Comment #11648942
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;.