I’m surprised that this is legal: “our AI Biden avatar gives you speeches, interviews, analysis, and viral moments”
RE: #Mastodon: I like that you stay within your server’s web app if you click on a quoted post. Combined with all replies being fetched on demand, it means that you almost never have to visit other servers.
Interesting warning label image
Buying a tablet-keyboard combo (with the option for light web dev) is tricky right now: • Smallest iPad + Logitech Combo Touch: great tablet user experience, but no package manager etc. • Surface Pro 12 inch: Windows seems to be getting worse with AI and ads. Upside: WSL • Linux tablet: I have not seen any good ones.
Use case for iterator methods: > document.querySelectorAll('div').map undefined > document.querySelectorAll('div').values().map ƒ map() { [native code] } .querySelectorAll() returns a NodeList which does not have Array methods such as .map() and .filter(). But its method .values() returns an iterator.