Live data from Hacker News

Viewing profile — lyinsteve

lyinsteve

HN member
Joined
Thu, Nov 14, 2013, 4:19 AM UTC
HN karma
283
Public activity
61 items

About lyinsteve

No profile information was provided.

Recent public activity

  1. comment
    Comment #38504620

    The Swift optimizer has matured dramatically since 2017, to the point where I think this benchmark would almost certainly not result in a 3x power usage/4x slowdown compared to C. …

  2. comment
    Comment #17816237

    I don’t know much about rust specifically, but the overflow traps happen in debug (i.e. -O0) builds, and are not emitted when optimizations are enabled. LLVM’s constant folding and…

  3. comment
    Comment #14975653

    There are tons of amazingly-smart people working on Swift at Apple right now

  4. comment
    Comment #14975635

    -swift-version 3 really just turns on some different paths through the parser and type checker to allow previously-valid Swift 3 code to survive to code generation time. They're bo…

  5. comment
    Comment #14850531

    I have the strange feeling this will really only be used to enforce the copyrights of large music and movie industry corporations and will not be effective at protecting the IP of …

  6. story
  7. story
  8. comment
    Comment #13324645

    This should be much higher. Thanks!

  9. story
  10. story
  11. story
  12. comment
    Comment #10836544

    The author completely missed the point of named parameters. How am I supposed to know that the string argument of "make_window" is the title?

  13. comment
    Comment #10684572

    Why did I just implement this in Swift? https://github.com/harlanhaskins/Base65536.swift

  14. comment
    Comment #10572796

    Apple uses XMPP internally as a way to securely communicate. Doesn't really change much; just thought that'd be an interesting thing to throw out.

  15. story
  16. story
  17. comment
    Comment #10187472

    I'm a Computer Science House member -- Drink is still a staple of our organization! Where else can you get Jolt on campus? Also we've since made an awesome web app and iOS app for …

  18. story
  19. story
  20. story
  21. comment
    Comment #9830968

    Surprisingly salient and cogent points for an article that's so hostile and willfully ignorant. The author is correct about when to use both, and I'm glad he doesn't discount struc…

  22. story
  23. comment
    Comment #9752072

    >The move fast and break things approach Sounds like something I want no part in.

  24. comment
    Comment #9683779

    LLVM has a GitHub mirror, too. https://github.com/llvm-mirror/llvm

  25. comment
    Comment #9494167

    Why no mention of GCD here? GCD is very, very good at synchronizing access to shared resources. The most Cocoa-compatible way of handling background execution of expensive procedur…