Viewing profile — nymanjon
nymanjon
HN member- Joined
- Fri, Jun 06, 2014, 6:47 PM UTC
- HN karma
- 25
- Public activity
- 79 items
- HN profile
- View on Hacker News ↗
About nymanjon
No profile information was provided.
Recent public activity
-
comment
Comment #48960882
With HTMX 4.0 it might be a bit nicer. I use my own home-grown HTMZ-BE lib/snippet that has the back end decide where to place the elements. Deciding from the back end makes it so …
-
comment
Comment #46617245
I created this app to help me track cash transactions that I can then export as a CSV file and then import into my PTA. It works well. It can work offline. I built it to be progres…
-
comment
Comment #46617194
I created a little app that tracks the cash spending that I can export with a CSV file. You can host it yourself. I had no idea that my wife was using so much cash! https://github.…
-
comment
Comment #46378091
I took that idea and made it actually usable. https://github.com/jon49/htmz-be It's amazing how much further you can go when you flip the server as the one deciding where what shou…
-
comment
Comment #46378074
HTMX and related libs work just fine as offline apps. I've been doing it with my personal apps I make for myself for a long time. Also, morphdom/idiomorph get you a long way even w…
-
comment
Comment #46378039
There's also htmz-be, nomini.js. Depending on your complexity needs.
-
comment
Comment #46378031
This exactly. React is spaghetti code with the reducers. Using API end points to fetch HTML makes it super simple to see what is going on.
-
comment
Comment #46378019
fixi.js, nomini.js, data-star, htmz-be. All have smaller footprints. All work just fine, depending on your needs.
-
comment
Comment #46342710
Here's an example offline-first hypermedia-driven soccer application. The match page is the most complex part of the application and I use Morphdom to just do a diff on the main se…
-
comment
Comment #46342694
Interesting read. I haven't quite finished it all. I haven't ever needed anything like that when writing web pages with HTMX, html-form (my own), nor htmz-be (another one I wrote b…
-
comment
Comment #45981040
This is a offline-first PWA app where I serve the back end from a service worker using JS template literals to stream HTML. This uses a variant of HTMZ to increase the interactivit…
- story
-
comment
Comment #45928378
Mastro looks like what I do for my offline-first, rendered from Service Workers. I just compose html template string literals and stream them back to the front end. The lib I use f…
-
comment
Comment #45861751
I added one site that is mostly a static recipe site that my family uses. It includes VanJS to pick random recipes and you can save them as you go along to pick what you are planni…
-
comment
Comment #45819977
With highly dynamic page where you would normally start using a front end lib, Idiomorph makes it so you can stick with the hypermedia approach instead.
-
comment
Comment #45819943
HTMZ-BE: Edit Hhhmmm..., that's more verbose than both :-(
-
comment
Comment #45819886
If you are looking for a very tiny foot print, you might like htmz-be.
-
comment
Comment #45738393
I build most of my personal websites with service workers. No need for the framework, I just build it for the specific use case I have at the moment. Here's an offline-first soccer…
-
comment
Comment #45738184
No need for HTMX, HTMZ can get you most of the way there if it is going from simple MPA to slightly more complicated. I used a variation of HTMZ to make a offline-first soccer app …
-
comment
Comment #45723375
My intent wasn't to say it is a Datastar replacement. Just to say that I used their idea of deciding where to place the returned HTML is based on the back end driving the decision,…
-
comment
Comment #45723099
When HTMZ was announced I thought it was a neat little script. But I didn't understand how this would be practical in the real world. This little "extension" makes it have the full…
- story
-
comment
Comment #45540043
The article stated that he no longer needs eventing to update other parts of the page, he can send down everything at once. So, I guess that is much less complex. Granted, eventing…
-
comment
Comment #45505022
I advocated for intercooler.js/HTMX at work and to better understand HTMX I built this library. This library takes an HTML-standards-first take to hypertext programming. Because of…
- story