Live data from Hacker News

Viewing profile — 0xFACEFEED

0xFACEFEED

HN member
Joined
Fri, Aug 25, 2017, 5:27 AM UTC
HN karma
1,465
Public activity
200 items

About 0xFACEFEED

No profile information was provided.

Recent public activity

  1. comment
    Comment #43644502

    Honeypot.

  2. comment
    Comment #43500383

    > not liking the consequences of choosing those options Correct. "Shove it" is usually preceded by not liking something. > They could negotiate with their manager to lessen the loa…

  3. comment
    Comment #43499948

    The difference is agency. Let's say I'm a business owner and I'm frustrated with the current state of the on-call system. I have options. I can try negotiating with my clients to l…

  4. comment
    Comment #42511509

    > A function with well-constrained inputs and outputs is easy to reason about. It's quite easy to imagine a well factored codebase where all things are neatly separated. If you've …

  5. comment
    Comment #42072911

    Assuming you're just referring to repos: not really IMO. As soon as you split 1 repo into 2 repos you need to start building tooling to support your 2 repos. If your infrastructure…

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

    And that's what LLMs are trained on. Hahaha

  9. comment
    Comment #41991047

    I'm with you. I use Copilot every day in the way you're describing and I love it. The person I was responding to is claiming to code "hands off" and let the AI write the majority o…

  10. comment
    Comment #41990449

    I can definitely see the value in letting AI generate low stakes code. I'm a daily CoPilot user and, while I don't let it generate implementations, the suggestions it gives for boi…

  11. comment
    Comment #41990320

    > A lot of the concerns you describe make me think you work in a larger company or team and so both the organizational stakes (maintenance, future changes, tech debt, other people …

  12. comment
    Comment #41990160

    How do tests account for cases where I'm looking at a 100 line function that could have easily been written in 20 lines with just as much, if not more, clarity? It reminds me of a …

  13. comment
    Comment #41989925

    As a programmer of over 20 years - this is terrifying. I'm willing to accept that I just have "get off my lawn" syndrome or something. But the idea of letting an LLM write/move lar…

  14. comment
    Comment #41989832

    You could make the same argument for any non-AI driven productivity tool/technique. If we can't trust the user to determine what is and is not time-saving then time-saving isn't a …

  15. comment
    Comment #41952489

    > not what work resources are for Employees are not robots. They are human beings. Sometimes human beings have human problems that need the assistance of other humans. This makes h…

  16. comment
    Comment #41835139

    No amount of discipline was going to make medium-large websites maintainable back then. Today it's actually possible if the creators know what they're doing. Tooling isn't going to…

  17. comment
  18. comment
    Comment #41835042

    1) Rats nest of non-declarative JavaScript. 2) Rats nest of JavaScript callbacks. 3) Overlapping stylesheets with !important everywhere. 4) Elements used for style not their semant…

  19. comment
    Comment #36756304

    > If you are a vim newbie, it takes a lot of time to figure out... The horror!

  20. comment
    Comment #32150428

    I don't get it. I love ambient tunes and listen to them for 1-10 hours a day while doing stuff. Any time I need to focus (even when writing an email) I'll throw on my favorite ambi…

  21. comment
    Comment #32046895

    Yea, it's tricky. The conception of an idea and the sharing of that idea could be completely different skills in some cases. I'm reminded of the classic Jobs/Wozniak duo that we of…

  22. comment
    Comment #32042564

    A heuristics based approach like yours is very underrated.

  23. comment
    Comment #32041953

    So... the example the author provides is super contrived. There's no problem with that. But I would expect a contrived example demonstrate the point without obvious holes. So I'm g…

  24. comment
    Comment #32010420

    > Great, now do multiple versions of typescript. and jest. and ts-jest. Why would I do that? There is absolutely no reason a single application should be using two versions of Type…

  25. comment
    Comment #32008910

    > Heck even with JS, Yarn and NPM are not fun. $ mkdir hello && cd hello $ npm init -y $ npm install react17@npm:react@17 $ npm install react18@npm:react@18 $ cat "var react17 = re…