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

help-circle




  • al4s@feddit.detoAsklemmy@lemmy.mlInsomnia
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    If you have vitamin deficiencies, fortified food can also cause you to run at 120%. In some countries (e.g. US) Noodles and flour are fortified with B-vitamins. Maybe that’s what you’re experiencing? It happened to me a few times.




  • I think it makes more sense if you think about backend applications: If you write a Webserver with ExpressJS in typescript, you need typescript only to compile it (dev dependency) but once compiled, you only need ExpressJS in your node_modules for the app to be able to run (“regular” dependency).

    Frontend development is a bit strange in that respect, because often everything gets bundled into your dist/ directory, so technically there are no runtime dependencies? In that case it’s more of a hint to let you know “this goes into the bundle” vs. “this is part of the compiler toolchain”










  • If your local branch and the branch on GitHub diverge, they need to be merged. If you pull using the console it will tell you that, apparently VScode does this automatically?

    Anyways, nothing to be concerned about. If you’re annoyed by the merge commits, you can configure git to “rebase on pull”, google it, you’ll find instructions pretty quickly.