Live data from Hacker News

Viewing profile — megadal

megadal

HN member
Joined
Sun, Apr 21, 2024, 10:11 PM UTC
HN karma
137
Public activity
103 items

About megadal

No profile information was provided.

Recent public activity

  1. comment
    Comment #41913732

    > I don't see how it is related is relevant to this discussion. Because it was brought up as a subtopic in my original comment and someone quote responded directly to it.

  2. comment
    Comment #41894277

    It's related to MS contribution to .NET which is the subtopic of this particular thread.

  3. comment
  4. comment
    Comment #41887330

    Have you ever read the source code for Microsoft's ilasm compared to Mono ilasm? Anyway, EF is cool, but probably every .NET dev has an EF/LINQ performance related horror story (th…

  5. comment
    Comment #41887222

    I mean they kind of are. You can find a library in almost every language that transpiles source code ASTs. They're just not core features. In Haxe, it's extremely common :) but Hax…

  6. comment
  7. comment
    Comment #41887194

    You could also bundle your JS. Or pretend like any number of other solutions like caching parsed ASTs exist instead of being as obtuse as possible, or something idk

  8. comment
    Comment #41879354

    Yes, but I think the point is practically every high level language can already do this pretty trivially. If it's scripted you can typically just get a string representation of the…

  9. comment
    Comment #41879194

    It's just an API for JIT, basically metaprogramming. It's cool but you can definitely do a similar thing in pretty much every high level language. With scripting languages, it's al…

  10. comment
    Comment #41683152

    this comment further confirms my belief that GraphQL is a cult. > this completes the move from the server side to the client side OK, how does that benefit end users, developers, o…

  11. comment
    Comment #41186771

    What BIM formats does it support?

  12. comment
    Comment #41121389

    Of the 3 big US based clouds, Azure was the worst I dealt with. AWS comes close second to worst. GCP is the best UX but pricing is probably comparably crazy. Azures biggest issue i…

  13. comment
    Comment #41108991

    The title: "bug exposed up to 255 bytes of server heap and existed since 2011" The post: "Silently sends up to 255 bytes of the client’s heap to the server."

  14. comment
    Comment #41046402

    I could be wrong but I think a good way to have an edge is pricing. Email is generally a low bandwidth service with lots of cold storage, yet for most personal email services the p…

  15. comment
    Comment #41006896

    So then your argument isn't that GraphQL is better than REST. It's that you need something specifically designed for graph based data access to handle graph based data access. Whic…

  16. comment
    Comment #41002915

    > The whole point of my comment is that with REST Hence your comparison is invalid > you don't have any guarantees about the API and thus it's a much harder target to support. You …

  17. comment
    Comment #40985867

    GraphQL literally is a "federation gateway point." It's literally meant to be a gateway to a bunch of different external systems working in federation. It's the exact same scope if…

  18. comment
    Comment #40984667

    > REST is a PITA for any data model that’s more complex than CRUD. Also I'd just like to point out that for everything but queries themselves, GraphQL uses JSON. JSON is used in th…

  19. comment
    Comment #40984306

    If you don't need to write resolvers by hand, from experience I can tell you writing an OpenAPI over an ORM/ODM is trivial and will accomplish the same end. It's schema-first and q…

  20. comment
    Comment #40984179

    > Why do you mention GraphQL and JSON:API in the same sentence? I usually tend to use words like these in sentences wherein there are phrases or clauses in which those words are th…

  21. comment
    Comment #40984141

    > Why are you writing your own restful graph based data access APIs? https://en.m.wikipedia.org/wiki/Nihilism

  22. comment
    Comment #40984056

    > With the right team, with the right use-case it's excellent. So please don't take it as GraphQL=bad. If a framework requires you to be just as, if not more competent in its niche…

  23. comment
    Comment #40983890

    Comparing GraphQL to REST and not a RESTful Graph-based data access API like JSON:API is just being disingenuous. For GraphQL, you know it will be a nightmare. For REST, you don't,…

  24. comment
    Comment #40983694

    > you can make all the same claims for REST That's why I mentioned OpenAPIs, which you certainly can't make the same claims about. I have never had a problem with an OpenAPI, it's …

  25. comment
    Comment #40983425

    > This is nonsense. GraphQL queries are simple HTTP requests, with no more complexity than REST. You POST a query string and some JSON The complexity of GraphQL in fact begins ther…