Live data from Hacker News

Viewing profile — silver-arrow

silver-arrow

HN member
Joined
Sat, Dec 12, 2020, 3:49 PM UTC
HN karma
320
Public activity
50 items

About silver-arrow

No profile information was provided.

Recent public activity

  1. comment
    Comment #42434148

    I loved Plato on my TI-99/4A computer when I was a kid. I credit it with helping me become a much better student. When my oldest son was struggling in grammar school, 15 years ago,…

  2. comment
    Comment #37149044

    We moved away from ClojureScript entirely. We just run a plain ole java uberjar with the Clojure/ring/hiccup/Compojure spitting out the HTML with whatever htmx attributes and respo…

  3. comment
    Comment #37147554

    Exactly! I love the sweet spot that htmx hits; please don't change that!

  4. comment
    Comment #37146779

    That's fair. I agree - that type of blanket statement is not helpful in the technical realm. I should have kept it at just: HTML should have continued to be expanded into what htmx…

  5. comment
    Comment #37146370

    Great news. I have had good success and a rewarding experience using htmx the past year. It has been so great in tandem with Clojure using hiccup for SSR. Once htmx clicks for you,…

  6. comment
    Comment #36333261

    htmx is so wonderful. We have had amazing success utilizing it and returning to a hypermedia approach to web dev. The essays go into detail of why this is.

  7. comment
    Comment #36084396

    I have immensely enjoyed and benefited from using htmx for the past 18 months on projects with Clojure as the backend language. I had done years of full-stack Angular then React on…

  8. comment
    Comment #35840582

    Exactly! Well said

  9. comment
    Comment #35840483

    htmx has provided the greatest satisfaction and production of my 30-year programming career. After a year of constant development experience with it, I am confident that this is th…

  10. comment
    Comment #35805382

    That was such an educational experience! Great talk and speaker.

  11. comment
    Comment #35004436

    Vim9script is pretty darn good; and fun to use.

  12. comment
    Comment #34791123

    Excellent and very productive language. Personally, I did 15 years of straight Java (before that C and C++), then 5 years of Clojure. For me, the most telling dynamic is when I rec…

  13. comment
    Comment #34648778

    True BizarreByte. I love how htmx let's you easily add animation indicators on actions, because many times it's too fast due to the small chunks coming back and getting placed so q…

  14. comment
    Comment #34648746

    You for sure wouldn't want to build a spreadsheet type app with htmx because of that aspect. Many other types of web apps can benefit from the simplification of the architecture, h…

  15. comment
    Comment #34648657

    Yes it can. Right, your server-side routing would have those routes set-up. Naming them can get interesting :)

  16. comment
    Comment #34647925

    Yes indeed! The core aspect, however, is that your server is returning fragments of html that htmx places in the DOM extremely quickly. They have pretty good examples on their site…

  17. comment
    Comment #34647839

    It really is so terrific. After using it for over a year, I agree with the creator's of htmx when they say that this is how web development would have been if HTML as hypermedia wa…

  18. comment
    Comment #34646946

    Much more prefer the htmx way of SSR parts of the page dynamically. Also, totally server-side agnostic, so we can use what we prefer. Clojure in our case. https://htmx.org/

  19. comment
    Comment #34626784

    Excellent article that clearly describes the benefits and simplicity of hypermedia applications. We have experienced the benefits of designing our web applications in this manner u…

  20. comment
    Comment #34057928

    I initially had the same thoughts as you when I got on my first Clojure project. Previously, I used strongly typed languages with "approved" frameworks. Developed in Java for over …

  21. comment
    Comment #34000757

    Hmmm. alpine.js does complement htmx very well and is pretty popular, so it is a great choice. I liked _hyperscript when I saw it when assessing htmx so thought they might play bet…

  22. comment
    Comment #34000573

    I see bnert gave a very good answer to your question in a reply. So to echo what bnert said, as far as the java template frameworks like jsp and thymeleaf, htmx is complementary to…

  23. comment
    Comment #33993344

    The JavaScript we use is now much, much less. Actually, most times we just sprinkle in a bit of hyperscript for the times we need something a bit more dynamic than plain htmx. _hyp…

  24. comment
    Comment #33992142

    This answer is exactly correct. You must really think about how this dramatically makes developing these types of applications simpler by a magnitude. You are literally killing sig…

  25. comment
    Comment #33991759

    That’s part of the benefit of htmx and it’s hypermedia approach, you can build the backend in anything you prefer. Some like using language and frameworks that use templates. Other…