Live data from Hacker News

Viewing profile — tylerchurch

tylerchurch

HN member
Joined
Thu, Mar 26, 2015, 4:53 PM UTC
HN karma
109
Public activity
46 items

About tylerchurch

No profile information was provided.

Recent public activity

  1. comment
    Comment #46102030

    I am! I love the design of Gleam in theory but keep bouncing off it so I’m interested in seeing if AoC will help me give it a fair shake.

  2. comment
    Comment #43431214

    I always interpret “core” as “no libraries”. What can you do with just your browser and an HTML file? Poke through MDN and see what you find. Do you know about dialog? https://deve…

  3. comment
    Comment #43419303

    I’ve been tracking it for weeks and it comes back in stock only to sell out minutes later. I’ve had 2 or 3 times where I thought I got one, only to get the order cancelled email. I…

  4. comment
    Comment #43238020

    > Code by one LLM can be reviewed by another Reviewed against what? Who is writing the specs?

  5. comment
    Comment #42569558

    > LLMs I believe can help in synthesize what knowledge is there and what is missing. How could the LLM help? Given that it is missing the critical context and knowledge described i…

  6. comment
    Comment #42487803

    While I did say "VM" in my original comment, to me this counts as "cloud" because the UI is functionally the same.

  7. comment
    Comment #42486974

    I think this is only true for teams and apps of a certain size. I've worked on plenty of teams with relatively small apps, and the difference between: 1. Cloud: "open up the cloud …

  8. comment
    Comment #42102701

    Vue still is usable that way! It's my favorite way to slowly add some order to legacy apps that have been overcome by jQuery soup.

  9. comment
    Comment #41475827

    > It transmits user input via a HTTP header called SHELLY-INPUT It sounds like user input is the _only_ input, so why not just use a POST request with a body?

  10. comment
    Comment #40093295

    If C++ was JavaScript you would do: import {vector} from 'std'; Which I think is a reasonable compromise, you're only bringing vector into scope rather than all of the standard lib…

  11. comment
    Comment #39660449

    Likely a typo for "disbarment".

  12. comment
    Comment #39354801

    When I encountered sub-fizzbuzz programmers I think the job postings were all for junior developers. So the bar was already low-ish, you just had to have the right keywords on your…

  13. comment
    Comment #39242401

    It was a complete rewrite. Angular 1 vs. 2 share nothing besides name and some basic concepts. The actual code and tooling was completely separate.

  14. comment
    Comment #38749977

    > I've manually unfollowed all my friends and yet the spam comes through. If you've unfollowed everyone what do you expect to see?

  15. comment
    Comment #38585437

    > especially with products that have lot of features No kidding. I'm 2 or 3 years into working on a SaaS app started in ~2013 and I still get bug reports from users that make me sa…

  16. comment
    Comment #38442843

    I've never seen it be buggy, but it will often remove unnecessary parens. For example: (a * b) + (x * y) becomes a * b + x * y. This the same code, but I often use parens for seman…

  17. comment
    Comment #38143089

    I think the main complaints are: 1. Enums are one of the few TypeScript features that isn't a type annotation that can simply be erased. Enums emit code and don't have an equivalen…

  18. comment
    Comment #35759592

    > I think people would be shocked to find out how many channels are ran by teams of people. Indeed! I was surprised recently when a video creator mentioned the cameraman and produc…

  19. comment
    Comment #35551519

    Two things off the top of my head: 1. Denormalized data is often a boon. One of your key use cases is "give me all the information about this Product so I can show it to the user."…

  20. comment
    Comment #35499510

    Expo makes React Native fairly tolerable. Just don't go outside the guardrails, there lies pain.

  21. comment
    Comment #35498857

    As someone who has deployed projects to the App Store/Play Store in both React Native and Ionic for my day job - Ionic is a breath of fresh air compared to React Native. Ionic+Capa…

  22. comment
    Comment #35210678

    > let's just set a formula for the entire column, and make it refer to another column. And let's name the columns something If you turn a worksheet section into a proper Table in e…

  23. comment
    Comment #35026523

    It's all about a persistent connection between the client and server, with the server pushing updates to the client as new data/events come in. If you don't have a good async model…

  24. comment
    Comment #34176720

    Agreed! Kids vary significantly, and much advice I’ve read about sleep doesn’t apply to our kid. You’ve just gotta do what is best for your family, not what is best for some intern…

  25. comment
    Comment #33854474

    Indeed. In my view making informed trade-offs, communicating with stakeholders, and tracking down bugs based on limited information are hugely important job duties, and are entirel…