Earlier quoted context omitted.
Wouldn't it just be Visual Studio then? We would get updates once a year instead of once a month. There are less C++ devs than JS devs. The size of the community that could contribute would shrink also.
> Wouldn't it just be Visual Studio then? No, but it would "just be" an open source, MS backed, version of Sublime or TextMate. The concept of Visual Studio is different. > We would get updates once a year instead of once a month. The language the core is in is irrelevant as to whenever we would see updates. That's a concern of the release process. > There are less C++ devs than JS devs. Not really important, as most…
VS Code can do that?
251–260 of 280 posts
Re: VS Code can do that?
#252Some other ones: - In the Git view, select a modified file, select some lines of code you modified, cmd shift P, Git: Stage Selected Ranges. I dropped my dedicated Git GUI since I know this trick. - If you spend a lot of time coding in React, and have half of your files named index.js, do yourself a favor, go in the settings and add "workbench.editor.labelFormat": "short" (display the name of the file's folder in all…
Re: VS Code can do that?
#253Earlier quoted context omitted.
I keep hearing good things about VSCode. If I weren't essentially married to emacs I'd definitely try it out. I'm not sure I'd recommend emacs to everyone at this point, though I think it remains a really solid choice of editor/OS for people willing to get over the learning curve and put up with a bit of clunkiness. Re the git stuff though- one place that I'm pretty sure emacs is the uncontested champ is in git integ…
I'd say it's uncontested if you like using emacs . Because - for me - it's awful. Mostly because I find using vim or emacs awful and only use either of them when I absolutely can't avoid it. But that said - it does it's job very well and magit is certainly excellent software for those that are interested in that interface.
Re: VS Code can do that?
#254Earlier quoted context omitted.
I keep hearing good things about VSCode. If I weren't essentially married to emacs I'd definitely try it out. I'm not sure I'd recommend emacs to everyone at this point, though I think it remains a really solid choice of editor/OS for people willing to get over the learning curve and put up with a bit of clunkiness. Re the git stuff though- one place that I'm pretty sure emacs is the uncontested champ is in git integ…
I'd say it's uncontested if you like using emacs . Because - for me - it's awful. Mostly because I find using vim or emacs awful and only use either of them when I absolutely can't avoid it. But that said - it does it's job very well and magit is certainly excellent software for those that are interested in that interface.
Others, such as myself, suffer it only when compelled by an instructor.
Re: VS Code can do that?
#255Re: VS Code can do that?
#256Slightly off topic but this code in example #5: get() { return new Promise((resolve, reject) => { fetch(`${baseAPI}/heroes`) .then(response => response.json()) .then(json => resolve(json)) .catch(err => { reject (err); }); }); } Why not just: get() { return fetch(`${baseAPI}/heroes`) .then(response => response.json()); }
or async get () { return await (await fetch(`${baseAPI}/heroes`)).json() }
Re: VS Code can do that?
#257Re: VS Code can do that?
#258Earlier quoted context omitted.
In general, one should consider the audience of the content, not NoScript users, in this case. > JS is a big security/privacy risk. No, 3rd party JS (and 3rd party cookies, JS regardless) allow you to be tracked. And ad-blockers deal with that. Blocking 1st party JS is of tenuous benefit w.r.t security/privacy.
> Blocking 1st party JS is of tenuous benefit w.r.t security/privacy. Blocking all JS lets me click on any link fearlessly.
Re: VS Code can do that?
#259Earlier quoted context omitted.
Are you running Windows? Could put *nix on it, reduce the amount of crap running in the background and pick a low-memory shell?
The biggest consumer of RAM for me is chrome, not windows, and it is basically essential to my development process to have it open all the time. So I worry an OS change would not produce an appreciable enough performance improvement to justify changing my whole workflow over.