Live server push without JavaScript

So in my post Is this evil? I covered a way of tracking users with CSS. While
thinking about those weird ways of using the web I also started thinking about pushing live data to clients
without JS. Or at least maintaining a connection.
So… Read more

Similar

How to Capitalize Strings in JavaScript

To capitalize a string in Javascript so the first character is in uppercase, we donโ€™t need to add another NPM dependency. We can use plain JavaScript or even CSS if it is solely for presentational purposes. TLDR; const chars = 'hello' chars[0].toUpperCase... (more…)

Read more »