• 5 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: August 30th, 2023

help-circle










  • I already live in a low cost country, so moving to a cheaper place wouldn’t work

    Some professional help is probably a good idea. My CV is probably not a big part of the problem, it’s getting me those interviews, maybe it gets me interviews for the wrong jobs. As I’m never sure what I want to do, I could make it look like I am all about stack X, and in the next morning I feel like I want to do some Y, and I get a call from someone that wants something to be done on K, on which I only had experience in a 3 months project and left some mention of it there.












  • About the third point, the performance of your JavaScript code can be worse if it’s broken down into several small files rather than a single, bundled file. When a browser encounters a script tag linking to an external JavaScript file, it makes an HTTP request to fetch that file. This process occurs for each separate file. Each HTTP request involves time for network latency, server processing, and data transfer.

    I’m usually preferring typescript too, but this point got me curious. I’m guessing it wasn’t an honest point, almost everywhere I look people are still using a build step, and I didn’t notice any move in a different direction