Might be worth asking in !selfhosted@lemmy.world
Might be worth asking in !selfhosted@lemmy.world
Fascinating! Thanks for sharing.
In the Kelvin timeline they have auto-expanding seatbelts that can go down when there’s an emergency
Grounding cables do not exist in The Federation
If you want a standard way to disable it, I made this patch for lemmy which makes it a config flag: https://github.com/LemmyNet/lemmy/pull/3897
Yeah, all images are broken, likely due to a corrupt pictrs store (the sled db).
Wasn’t the Vulcan ship in DS9 still technically a Starfleet vessel?
You don’t need to do anything when you get a security advisory if you’re not impacted or the risk is acceptable. They’re just there to advise you.
I think you do if your IDE is doing JSDoc-based autocompletion 😉
It’s just likely built into your IDE.
The IDE support based on JSDoc is typescript (at least it is in all the ones I know about). They’re just using TypeScript’s JSDoc annotation support under the hood.
I’m not sure what you mean about the “heavy JS env” though, it’s just calling tsc
in your package.json
or whatever build script you’re using (or even if none, it’s one command).
Whatever you do, I’d recommend using Typescript to give you some type safety with your JS.
Hi, I’ve been doing TypeScript in my day-job and hobbies for six and a bit years now. I would not write JS in any other way.
TS is also a superset of JS so all JS is valid (unless you turn on
strict
mode). So there is no productivity loss/learning curve unless you want there to be.In fact, a lot of people who think they’re not using typescript are using it because their editors use typescript definitions for autocomplete and JSDoc type signatures are powered by typescript.