Live data from Hacker News

Viewing profile — mortalapeman

mortalapeman

HN member
Joined
Tue, Oct 15, 2013, 3:28 AM UTC
HN karma
10
Public activity
7 items

About mortalapeman

No profile information was provided.

Recent public activity

  1. comment
    Comment #49217550

    This has been my experience as well. The best model I have access to right now is Opus 4.8. It's really good at fixing bugs in an established architecture or adding a similar featu…

  2. comment
    Comment #49134244

    That's funny, I found the article to align exactly with my own personal experience of working with LLMs in cobdebases with poor test coverage, uncertain requirements and non standa…

  3. comment
    Comment #47758479

    As a senior dev who has been using these tools to their fullest effectiveness in production environments, until AI can reduce the entropy of a codebase while still adding capabilit…

  4. comment
    Comment #6551418

    I partially agree, directives are not easy to learn, and there is not enough good documentation or literature on how to write them well. However, I have found the api to be very ex…

  5. comment
    Comment #6551393

    The only reason one would use scope.$watch in this fashion is to have a function executed when a digest occurs. The original purpose of the $watch function is to take 2 functions, …

  6. comment
    Comment #6551357

    A single element cannot have more than once isolated scope. It only makes sense to use an isolated scope when a directive has a template associated with it. Otherwise, one should r…

  7. comment
    Comment #6551344

    Directives are a DSL for creating new behavior using HTML. Once you learn the language, the symbols make sense and directives are easy to read. I think you are confusing "intuitive…