This account is mostly for shitposting. Don’t take anything it says too seriously.

All my OC is created with MS Paint (not Paint 3D). I know how to use “real” photo editing software, but I still prefer Paint for memes; I enjoy how its technical limitations add a problem solving element to the creative process.

I despise ads in nearly all forms. My art aims to offer the viewer a glimpse into how I perceive them. Colors are often inverted because inverted colors are often perceived as being “ugly” and “harsh” and I think all ads are ugly and harsh-looking.

I try not to spend more than 20-30 minutes on any one piece because I think spending any more time than that indicates a certain level of respect for the original source material I don’t wish to convey, and I want my art to have a certain “vandalism” or “graffiti” vibe to it.

  • 0 Posts
  • 15 Comments
Joined 11 days ago
cake
Cake day: July 1st, 2026

help-circle













  • Cloud engineer here. I’m going to do my best to provide an adequate explanation without getting bogged down in technical details. As such, some of the following may be simplified or missing details for brevity.

    Short answer: Yes.

    Medium answer: You CAN, but the better question is, “what would the tradeoff be?”

    Long answer: JavaScript was born from a need to have page changes occur client-side. This has some benefits. The main ones are client-side control of page rendering (helps with accessibility), server-side performance, and asynchronous page changes.

    The benefit to client-side rendering is that the site host only needs to worry about the content of their site; how it appears to the user is controlled by the user. So, if a user needs high-contrast colors, they can do that on their own; they don’t need to rely on the host to program that functionality.

    Next, performance. If no page updates can occur client-side, they must occur server-side, which demands much higher performance from the hosting server. Rendering a page requires a lot more compute than simply transmitting the HTML code and letting the browser figure it out.

    Finally, possibly the biggest benefit to JS is the ability to perform asynchronous updates to the page you’re viewing. This is when the browser communicates with the server and updates the page without refreshing the page.

    So, depending on the use case, it can be done. For simple, static sites with low traffic and adequate server performance, it’s fine to do. But, the more sophisticated you want the site to be, depending on exactly what you want to do, it may not possible. I don’t think an online store or secure web portal would be possible, for example.