Full stack developer and privacy advocate. I like to keep the mentality, if you can program one language well, then you can program in any language!

  • 1 Post
  • 35 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle


  • I like and been using JetBrains IDEs for years now,
    and am/was happily paying for a good product.

    However I feel like they’ve been going backwards in the last year or 2,
    it feels less premium,
    and more like your a paying beta tester,
    since lately I deal with bugs in their IDEs too often to my liking.

    But this news kinda scares me,
    usually if something is free,
    then you are the product,
    paying with your data.

    Which I can see happen to these IDEs now :/
    Especially in this day and age where massive data collection by big tech is sadly normalized, and where coding data likely is wanted to be trained upon by AI companies with the current ongoing hype bubble and all.

    If that would start to happen to JetBrains products, I fear for enshitiffication in the forms of:

    • Losing your privacy
    • Leaking company secrets

    And further once the AI bubble pops,
    which will lead to less demand for data,
    since there will be less companies.










  • WASM = WebAssembly,
    this has nothing to do with Java,
    but with JS (JavaScript).

    JS works with JIT (Just In Time) compilation, meaning every user that requests a web page, will request the JS and your browser will compile that JS on the fly as you request it.

    WASM on the other hand is pre-compiled once, by the developer, when he/she is making the code. So when a user requests a WASM binary, they don’t have to wait for JIT compilation, since it was already pre-compiled by the developer.

    They only have to wait for a tiny piece of JS,
    which is still JIT compiled,
    a tiny piece of JS to load in the WASM binary.

    This saves the user from waiting on JIT compilation and thus speeds up requesting web pages.

    WASM also increases security,
    since binaries are harder to reverse engineer then plain text JS.

    Due to those reasons,
    I believe WASM will be the future for Web development.

    No clue why people are hating on WASM,
    but I guess they just don’t grasp all of the above yet.