Earlier quoted context omitted.
as a very loyal long term emacs user I have to agree. I find myself using vscode more and more just to how more pleasant refactoring and debugging python code is.
I almost switched to VSCode for JavaScript but I’ve found that tide-mode (for JavaScript) and lsp-mode (for other languages) have really closed the gap. (If you turn off lsp-sideline-mode)
Does Visual Studio Rot the Mind? (2005)
51–60 of 122 posts
Re: Does Visual Studio Rot the Mind? (2005)
#52I started on Vim, then moved to Spacemacs, then Emacs with Vim bindings, now on VScode with Vim bindings... honestly, a good IDE does a lot of things for developer productivity. We have to remember that, while we are defined by our tools, we are all still building the same thing: code. What your employer/boss/client cares about is /what/ code you produce and what business value it generates. They don't really care ab…
Small things added up enough to just jar me enough that it wasn’t worth it. Maybe I’ll jump in there again when I need to refactor something in a big way but for me nvim+plugins are where it’s at.
Re: Does Visual Studio Rot the Mind? (2005)
#53I'm sure humanities over reliance on mental aids will increase Alzheimers like mental deficiencies as we age.
Re: Does Visual Studio Rot the Mind? (2005)
#54I started on Vim, then moved to Spacemacs, then Emacs with Vim bindings, now on VScode with Vim bindings... honestly, a good IDE does a lot of things for developer productivity. We have to remember that, while we are defined by our tools, we are all still building the same thing: code. What your employer/boss/client cares about is /what/ code you produce and what business value it generates. They don't really care ab…
Re: Does Visual Studio Rot the Mind? (2005)
#55Petzold's books on Windows GUI programming were pretty much the Bibles if you wanted to understand how stuff worked under the covers of Visual Studio's designers/codegen. Great author from the perspective of someone how needs to know the innards, not just churn out code.
His book "Code" is an amazing exploration of how computers work. One of the best books I've ever read.
(Another approach to the same topic, and also excellent, is Nisan and Shocken's The Elements of Computing Systems. That was the first one to properly demystify computers for me -- until then, they were basically magic. I imagine Code would have done the same if I'd read it first.)
Re: Does Visual Studio Rot the Mind? (2005)
#56> I don’t know what rule you go by, but for me it’s always been simple: “Three or more: Use a for.” This is why we have loops. This is why we are programmers Walking away from stage, he probably thought “I should have said, ‘programmers count 1, 2, 3, for ’”
Re: Does Visual Studio Rot the Mind? (2005)
#57Basically, VS didn’t make programmers dumber, but it definitely made their code worse. And Microsoft eventually started paying attention to the people who were telling them that (probably because some of them were also saying they were switching to Java).
And no, I’m not smarter in environments where I don’t have IntelliSense. I just have more tabs open.
Re: Does Visual Studio Rot the Mind? (2005)
#58Charles wrote probably one of the best explain-the-computer-to-grandma books ever: https://en.wikipedia.org/wiki/Code:_The_Hidden_Language_of_C...
Re: Does Visual Studio Rot the Mind? (2005)
#59While some of his complaints now have solutions[1], when WPF (previously known as Avalon) is used with care, the resulting XAML is much more diff-able and code-review-able. The CodeDOM serialization method is dense and small changes can cause huge code diffs. On the other hand, WPF is a lot more complex than WinForms. There are a lot of different ways to use, many of which involve data binding that is not evaluated t…
Re: Does Visual Studio Rot the Mind? (2005)
#60New vs versions allow to disable the auto popup and allow to only display intellisense when called through C-Space. I've been using that and found that it improved my reasoning.