Live data from Hacker News

Viewing profile — chrisamanse

chrisamanse

HN member
Joined
Fri, Jul 03, 2015, 6:06 PM UTC
HN karma
105
Public activity
32 items

About chrisamanse

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

Recent public activity

  1. story
  2. comment
    Comment #13162498

    IMO, it is unnecessary to commit the conflicts. Instead, you can see how merges were resolved by diffing the commits.

  3. story
  4. story
  5. story
  6. comment
    Comment #12652107

    Swift. Create mobile apps instead of websites.

  7. story
  8. 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 …

  9. 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 …

  10. story
  11. 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…

  12. 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 …

  13. story
  14. comment
    Comment #12084085

    Yeah, because it's also co-produced by Apple.

  15. story
  16. comment
  17. story
  18. comment
    Comment #11671105

    I wish they would focus more on getting Realm to version 1.0.

  19. story
  20. story
  21. 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…

  22. 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.

  23. story
  24. 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…

  25. 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;.