What blissful place you must be in, to think the wars have stopped. Hell, there is even inter-Vim wars now (vim, neovim, lunarvim et al)
What blissful place you must be in, to think the wars have stopped. Hell, there is even inter-Vim wars now (vim, neovim, lunarvim et al)
Dont know the specific artist but its the album cover for a Cranberries album, “Bury the hatchet”
Its important to understand that:
When you are writing typescript, you are writing JavaScript but have additional syntax to help support type safety and structure. If you are creating a function that does x, it should very much be the same in JS and TS, just in TS it has extra syntax
TS doesn’t modify the way JS works, its one of the stated needs for the tooling.
In TS, for example, I can denote an object as
const x: Record = {}
In JS it would be
const x = {}
It’s still nothing but an object. TS doesn’t change the functionality, it just adds typing and checks that you are using that object properly as static build step.
Typescript doesn’t really remove anything you learn in JavaScript. Like at all. It’s not really a library as such. It adds ways to enhance your JavaScript, with typing, structure, and tooling
Learn JavaScript as much as possible. Every bit you learn will benefit you with typescript
Teenagers? What effing instance are you running on? I mostly see 30+ IT people wherever I go
Such a weird statement. webkit is and has been a fully released browser engine for decades, companies forked from it for licensing and profit, not because it wasnt ready or complete (at the time)
No, its been there for about the same time ios. A few years ago now they changed it so that the permissions are asked for from inside the app (when X is used) instead of when installing if that is what you are thinking about
It is, the one that starts with lower case is called camel case. As in camelCase has a “hump”
… Is a sentance I never thought I would read in a million years
In general, any data that can be used to tack you, such as IP number that is sent with the request, is identifiable information so an anonymous username is not enough in itself
Eh no not necessarily. This depends on the type of audit and the questions specifically, but should never be a default stance if you want to provide a full report. Moreover, if you are learning to do software audits, it would be beneficial to check everything because experience is key to know what you are looking for