HackerTrans
トップ新着トレンドコメント過去質問紹介求人

piranha

no profile record

コメント

piranha
·4 か月前·議論
> Rule 5 is often shortened to "write stupid code that uses smart objects".

This is probably the worst use of the word "shortened" ever, and it should be more like "mutilated"?
piranha
·昨年·議論
First release happened in 2019
piranha
·昨年·議論
That's a fantastic idea! I've made it a bit simpler for myself — basically just `source file`, so that I don't need to press enter to execute it, but also added one cute detail in the loop:

    if [[ -f "$target/.exec" ]]; then
        zsh "$target/.exec"
    fi
piranha
·2 年前·議論
Middle click does not work for me on a Mac. Maybe cmd+click or double click would be ok to do?
piranha
·3 年前·議論
Why bluetooth? Buy something like Samson Q2U, it's cheap, usb-enabled, and dynamic, so that you don't need a treated room or a house empty of noises.
piranha
·3 年前·議論
Actions are somewhat similar, yeah, even if much more limited.

Svelte was too js-heavy, and it requires js backend to be rendered on the server - while we had no js engineers. Plus markup was already done, as we rendered it server-side when using React.
piranha
·3 年前·議論
Yeah, that was the inspiration. If you know, htmx predecessor was called intercooler.js, so I just continued the automotive theme. :)

I had a reference on main page for a long time...
piranha
·3 年前·議論
That's one of the reasons TwinSpark got actions, you still need little bits of client-side interactivity.
piranha
·3 年前·議論
Why do you feel the need to use lit-html? Just interested in the use-case.
piranha
·3 年前·議論
Yeah it’s only the first way, since the second is effectively the same as rendering html on the server.

As for the first - it could give a way to use legacy apis and static data. Not sure if I want this in the core, but… how hard can it be?
piranha
·3 年前·議論
There is no way to render JSON as HTML right now, it expects server to return HTML.

OTOH that's an interesting thought and it feels like just an addition of one command to whatever there are in actions ( https://twinspark.js.org/api/ts-action/ ) right now... I need to think about it a bit. :)
piranha
·3 年前·議論
Thanks for that message, it was just hard for me to decide on what to put in there :)

But your comment forced me to, so I've put something in there, even if it's not really thought through. :)
piranha
·3 年前·議論
It's more like an alternative implementation of htmx. Alpine is more about "let's do components in HTML", and this one is more of an idea "how do not go there, but still have practical results". :)
piranha
·3 年前·議論
Two reasons really: I wrote it before htmx appeared, so it already existed and a few projects were using it in production. And second one - I really hate attribute inheritance, and it’s everywhere in htmx…
piranha
·3 年前·議論
Basque - sure, but Finnish and Hungarian? :-) Those were too far away for Romans even to have contacts with them. :)
piranha
·3 年前·議論
I haven't read your report completely, but it's very interesting.

I would love to hear a bit more details about query selector performance. Could you maybe provide some details or a pointer where this was tested?

Also about websockets vs HTTP calls: HTTP calls do not open separate socket connection even when you're using HTTP/1.1 with keep alive, with HTTP/2 it's a default way of working, so should not be a problem. I guess something else is a culprit here?