I want a text editor that is a pain in the ass
1–10 of 44 posts
Re: I want a text editor that is a pain in the ass
#2Now that I have been using Visual Studio with Resharper for much longer, I understand how unbelievable that setup was to those who followed the Visual Studio path. But if it were my own dime, and still constrained by having to use C#/.Net, I would go back to the text editor + command-line compiler.
Re: I want a text editor that is a pain in the ass
#3Edit: That post also mentioned the fear of exploding complexity. The whole point of abstraction is to manage complexity. The fact that you have a function being called at a hundred places and you don't keep track of them all in your mind is not something to fear, if you do the abstraction right. The fact that the previous fact makes you feel unsettling, should make you feel doubly unsettling.
Re: I want a text editor that is a pain in the ass
#4Re: I want a text editor that is a pain in the ass
#5If you write bad code because your editor makes it easy for you to write code fast, then it is not your editor that is at fault.
Re: I want a text editor that is a pain in the ass
#6Re: I want a text editor that is a pain in the ass
#7Try it on Java and say you still want a dumb editor. It's like saying you want to do rocket science while doing all the math by hand. Why drive a car. Why not walk to grocery so you could reflect carefully on what you want to buy and feel your muscle twitching after carrying 30 pounds of grocery back. Tools are there to help out with the labor and free up your mind for the more important. There is nothing wrong with…
That said, I have occasionally needed an IDE for java projects but in hindsight that seems to be because those projects were so needlessly large and convoluted that it didn't make sense to try to understand to the entire project in my head. That sounds bad, but that's how I see it. Some projects aren't worth understanding fully, and a good IDE is required for them.
Long story short, I can see the need for a java ide sometimes, but I won't call it a necessity.
Re: I want a text editor that is a pain in the ass
#8Also I don't want to have to think about code formatting. It's a necessary piece of writing but it only gets in the way of logic flow.
Re: I want a text editor that is a pain in the ass
#9Re: I want a text editor that is a pain in the ass
#10Try it on Java and say you still want a dumb editor. It's like saying you want to do rocket science while doing all the math by hand. Why drive a car. Why not walk to grocery so you could reflect carefully on what you want to buy and feel your muscle twitching after carrying 30 pounds of grocery back. Tools are there to help out with the labor and free up your mind for the more important. There is nothing wrong with…
I use emacs or sublime for java coding 90% of the time. Of course it is vital to have large screen real estate/extra monitors so I can keep the various docs open for reference. I prefer this approach because I learn more about the particular apis I'm using rather than just autocomplete and go. That said, I have occasionally needed an IDE for java projects but in hindsight that seems to be because those projects were…