Sérgio Gomes

@sergiomdgomes
85 Followers
77 Following
62 Posts
Developing things on the web. Web performance engineer at Automattic. Clumsy maker.
Websitehttps://sgom.es
Twitter (inactive)https://twitter.com/sergiomdgomes
@codepo8 The author claims this is a *critical* security vulnerability, yet doesn't present any timeline or other evidence of responsible disclosure? Not a great look.

@dimillian Yes! It's my main development tool, since it strikes the right balance between editor and IDE for me. And it's fast, unlike all the Electron-based stuff out there.

I need to check out those backgrounds, didn't know it was a thing 🙂

@pluralistic Have you tried Kapton tape? It’s made for high temperature applications, so the glue shouldn’t melt. Not sure how well it holds up to skin oils over time, though.
@tomayac @homeassistant Oh, that’s really neat! I need to take a closer look at that repo 😁

@tomayac @homeassistant

Note that I don’t use a HA integration for it either, but IIRC it does support MQTT and has its own HTTP API

@tomayac @homeassistant

Yes! Try the ones at https://go-e.com/en/ 🙂

I’ve been pretty happy with mine so far, but I don’t have anything set up for excess solar (though it does support it)

Smart Walboxes to Charge Your EV | go-e

Charge smart, safely & quickly with the EV charging solutions from go-e. We manufacture and sell wallboxes, charging cables and other accessories.

[Translate to Englisch:] go-e GmbH

“React proponents might claim that React will teach you modern UI, but from what I've seen it barely copes with modern UI.”

💯

Great read by @keithamus

https://indieweb.social/@keithamus/113518012130847468

keithamus (@[email protected])

https://www.keithcirkel.co.uk/i-dont-have-time-to-learn-react/ I don't have time to learn React.

Indieweb.Social
The extremely low-tech, dumb solution to this, would be to enforce a path structure for the icons, and blindly attempt loading e.g. `/assets/icons/<iconname>.svg`. Or having server aliases set up for them so that the mapping is essentially baked into e.g. nginx instead.

@jaffathecake If the data in the map/trie is itself a problem, you could split it up and lazily load it. I worked on an icon system where the approach we ended up taking was to generate a server-side spritemap for only the icons in use on the page, and then kick off a low-priority background load for the full set, to speed up future icons.

One approach you could take in your case would be to split up the trie, and include the most popular icons in it, but lazily load other branches as needed.

@jaffathecake The assumption would be that there's a single one. That's what I meant with potentially misunderstanding your requirements; is the requirement that we avoid any sort of map (including a spritemap)?

If so, then the best approach I can think of is a trie. It's a good data structure to use for this sort of indexing.