|
|
|
|
|
by kelnos
1919 days ago
|
|
It's funny to see us remembering that things can be done on the server. The trend to render everything client-side has always been troubling to me. Such a waste of resources (but it's not your resources, so developers don't care). Sure, things that are truly dynamic or are different for every user is probably usefully done on the client. But a static page with code samples can easily be rendered on the server, with syntax highlighting, and then cached. You only need to do it once, rather than hundreds or thousands of times on every client device. |
|
I've always wondered if it wasn't intentional. Things running on the client means they don't have to run on the server, and you can save money this way.