Live data from Hacker News

Viewing profile — ryangs

ryangs

HN member
Joined
Wed, Jul 28, 2021, 4:32 PM UTC
HN karma
137
Public activity
33 items

About ryangs

No profile information was provided.

Recent public activity

  1. comment
    Comment #43600019

    While laudable, this seems significantly harder to implement than banning advertising. Not that either are particularly feasible policies but this one seems harder.

  2. comment
    Comment #43339474

    Epistemic statuses are a great aid in sharing ideas without sounding overly confident. https://forum.effectivealtruism.org/posts/bbtvDJtb6YwwWtJm7/...

  3. comment
    Comment #43201342

    https://www.hillelwayne.com/post/graph-types/ gives an interesting take on why we don't see a graph type as a primitive on more programming languages. Essentially boils down to gra…

  4. comment
    Comment #42799670

    I like this. Testing the browser extension now and pretty happy with it (after tweaking so returning to a tab has a grace period). I was using StayFocused, which is okay, but too t…

  5. comment
    Comment #42678309

    Java Streams and Kotlin Sequences provide similar iterator capabilities. Iterators are great for this lazy performance but can sometimes be difficult to debug. Especially if you ar…

  6. comment
    Comment #42443303

    Excited to hear about Hardcover! I like StoryGraph but the lack of API frustrates me - I want to be able to sync back to my general notes store (Obsidian). Hopefully Hardcover work…

  7. comment
    Comment #42140559

    >Debug information tends to be large and linking it slows down linking quite considerably. If you’re like many developers and you generally use println for debugging and rarely or …

  8. comment
    Comment #42020919

    What is your pattern for navigating to a function definition (as an example of a basic IDE operation that doesn't seem supported)? Grep?

  9. comment
    Comment #41871065

    What are some of the challenges involved with international hiring in a remote environment? I work at a fully remote startup with ~200 employees. We hire from a couple dozen countr…

  10. comment
    Comment #41569946

    I think proper nouns get a bit more of a pass in terms of purple prose.

  11. comment
    Comment #41382664

    But the nonempty list never has an element, so we don't need to worry about the type mutation of removing an element from it. Filter just returns a nonempty list.

  12. comment
    Comment #41046623

    The problem is that user inferring doesn't scale. For small projects this is reasonable but for enterprise software engineering it is easy for a constraint that isn't enforced by t…

  13. comment
    Comment #40990470

    Indeed, still in use. Also presumably the Aho of the Aho-Corasick string matching algorithm.

  14. comment
    Comment #40857162

    Right - it is saying that there is no algorithm to do this in general. Any specific instance may have a solution.

  15. comment
    Comment #40370580

    Interesting read. Does not seem to be working with the same set of facts as the ACX post[1], especially around FDA approval. [1]: https://www.astralcodexten.com/p/defying-cavity-la…

  16. comment
    Comment #39444348

    Big fan of todoist. I've been using it for less than a month, but have already switched to the yearly subscription. I use Obsidian for my notes, but for remembering to do something…

  17. comment
    Comment #39178960

    I've noticed some streaming platforms have ads for other shows/movies they've made. I don't love these but can tolerate them because: 1. They are only at the start of a show, so I'…

  18. comment
    Comment #39028053

    Linking is an exceptionally good idea. It is very transformative to how I think about organizing information and doing it with Obsidian the past few months has felt great. Besides …

  19. comment
    Comment #38957456

    Being 'fair' helps company relationships with current and future employees.

  20. comment
    Comment #38072451

    Highly recommend Freya's various deep dives into various game development contents. She also has twitch vods for developing those videos which are also fascinating. https://www.you…

  21. comment
    Comment #38072401

    Highly recommend the chrome extension Facebook Purity. It strips your feed of the nonsense you don't care about in a very configurable way.

  22. comment
    Comment #38072396

    This was effective for me around a decade ago. These days it feels like most algorithmic content generation sites don't care when you express negative interest in something.

  23. comment
    Comment #37781841

    I think there is a fundamental gap between the OP's concept of "Point" versus the responders. They're essentially asking if decidability has practical[1] uses to which the answer i…

  24. comment
    Comment #37779161

    Interesting breakdown. But this format is horrible for conveying information. An improvement would be removing the slides, crafting some coherent paragraphs and then reinserting so…

  25. comment
    Comment #37570673

    It looks so bad in the context they give themselves: C# $"{x} plus {y} equals {x + y}" Visual Basic $"{x} plus {y} equals {x + y}" Python f"{x} plus {y} equals {x + y}" Scala s"$x …