TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Benefits of Not Using an IDE

160 pointsby defaultyover 3 years ago

75 comments

wokwokwokover 3 years ago
Listen, long story short: just say no to nonsense like this.<p>Given the choice of a) tooling, or b) no tooling, you’re not being smart, cool or clever by choosing b.<p>Obviously, what tools you pick <i>are important</i> and heavy IDEs like IntelliJ are a trade off between speed and functionality, and yeah, more nimble tools do exist, and it’s <i>definitely</i> worth trying different development tools to see what makes you most productive.<p>…but “no IDE” is just rejecting everything because you didn’t like one thing; it’s just being lazy.
评论 #28258136 未加载
评论 #28257382 未加载
评论 #28258426 未加载
评论 #28257459 未加载
评论 #28258134 未加载
评论 #28257428 未加载
评论 #28257719 未加载
评论 #28257378 未加载
评论 #28258141 未加载
评论 #28260592 未加载
评论 #28258590 未加载
评论 #28258264 未加载
评论 #28266886 未加载
评论 #28261747 未加载
评论 #28258423 未加载
评论 #28260969 未加载
评论 #28258625 未加载
评论 #28257340 未加载
city41over 3 years ago
I consider not needing to remember library and api details a benefit. I&#x27;d rather dedicate my brain cycles to something else. As for syntax, I don&#x27;t recall ever struggling to remember syntax of languages I frequently code in.<p>Also the point about IDEs auto generating toHashCode, toString, etc. If your class needs these methods, whether they were auto generated or not seems besides the point. The point the IDE is &quot;compensating for lacking language features&quot; doesn&#x27;t make sense to me, the code is compensating, whether a human or IDE writes it.
评论 #28257812 未加载
评论 #28257566 未加载
评论 #28260021 未加载
评论 #28257592 未加载
bootloopedover 3 years ago
There is a common perception with electric bicycles that the rider will pedal less hard to go the same speed. But there is an alternative: they could pedal the same amount and go faster.<p>I kind of view IDEs like that. You can use it as a crutch, or you can take the energy you would have used thinking about the things the IDE is now doing for you and focus it elsewhere.
评论 #28257740 未加载
评论 #28257417 未加载
评论 #28258185 未加载
评论 #28257464 未加载
S_A_Pover 3 years ago
Sometimes people need to prove that they are a rare breed of pure developer. Their superior discipline and tastemaking in the development toolchain far surpasses the masses of regular developers who are dependent on old slow crutches to get any meaningful work done.<p>Meanwhile there are real 10x developers out there that while they care about the tools stay out of the weeds of them.<p>This line of blog post reminds me of a Paul McCartney interview I read where someone asked him what kind of strings he uses on his guitar. Paul replied “shiny ones”. I think Paul is actually a lot more technical than he lets on in interviews and probably knew full well what kind they were. What he communicated to the person asking the question was that it doesn’t matter so much.
评论 #28257986 未加载
IlliOnatoover 3 years ago
The author seems to use IDE for one purpose only: to auto-generate boilerplate code. But this is far from the only benefits of IDEs!<p>I rarely use IDEs for code generation, I don&#x27;t even like autocomplete. For this stuff I use code snippets; I develop collections of those for any language I use. You don&#x27;t need an IDE for it; any good text editor has such features.<p>For me really important features of a good IDE are:<p>- Navigation. Being able to right-click on a function or method name and jump to its definition is very handy. Yeah, I may remember where it&#x27;s defined; I can also use grep (which does not work all that well for methods). But jumping is so much faster and does not take you out of the flow.<p>- Code refactoring. I am refactoring code continuously as I work with it. Even simple stuff like renaming a variable or a function (or a method!) is much easier with an IDE.<p>- Error highlighting.<p>Note: I can and sometimes do work without an IDE (esp with more obscure languages which don&#x27;t have good IDE support). There is some fun it it too, like going camping and living for a while without creature comforts like running water and electricity. But normally, if a tool is available, why not use it?<p>About languages: I agree that a well-designed language allows you to factor away most boilerplate code. (This was one thing I really liked about Perl! It basically allows you to develop a language dialect for your particular needs. The downside with Perl was that everybody was &quot;reducing boilerplate&quot; in their own way, but this is another story)<p>Just my 2 cents :-)
评论 #28258679 未加载
评论 #28257877 未加载
评论 #28258219 未加载
评论 #28258246 未加载
评论 #28258256 未加载
评论 #28258040 未加载
onion2kover 3 years ago
Not having an IDE doesn&#x27;t make me remember things. In my case it just means I use a very limited subset of the features, because I&#x27;m not being reminded of the things I don&#x27;t remember and I don&#x27;t get to see newer language features unless I happen to read a blog post or see something here on HN. I tend to fall back to implementing things with primitives and fail to use built-in functionality.
评论 #28257380 未加载
schipplockover 3 years ago
&gt; Some Projects with 40000+ files might take &gt;5 minutes to load.<p>I would buy a more powerful computer. I have a project with 34908 files and IntelliJ doesn&#x27;t care. Not quite 40_000+ files but still a lot :).<p>Also with IntelliJ I make fewer mistakes. This &quot;thing&quot; is just more intelligent than I am. Add &quot;SonarLint&quot; to the game and I sometimes don&#x27;t even know _why_ I am wrong :P.<p>Also I think &quot;Avoid IDE lock-in of your project&quot; is the wrong subtitle for the following paragraph. You would have the same problems by using just a text editor.<p>Rd6n6 mentioned refactoring. Do that in an editor and you will go crazy after a while :).<p>I love and hate my IDE :).
评论 #28259010 未加载
评论 #28258274 未加载
chmod775over 3 years ago
When people say &quot;no IDE&quot; what they usually mean is the concept of an IDE turned on its head.<p>Your command line with vim&#x2F;emacs and other tools that together arrive at the same feature set as a <i>Integrated</i> Development Environment are still... a development environment.<p>Not using an IDE doesn&#x27;t mean you can&#x27;t have autocomplete, syntax checking, linting, automated rebuilds, and all that other good stuff. It&#x27;s just not all in one package.<p>And yes you shouldn&#x27;t force your choice of (integrated) development environment on others. Different people have different needs: News at 11.
mattgreenrocksover 3 years ago
Maybe I’m weird, but at some point I stopped fixating on which tools to use and just settled on a personal workflow:<p>* terminal open at root of project used for source control<p>* one or more tabs for ssh&#x2F;VMs etc<p>* IDE&#x2F;VSCode&#x2F;vim for editing<p>Any of those is fine. And sometimes I switch between them depending on my mood. If I’m out and about it can be nice to conserve battery and focus by going full terminal mode. If I have AC power and a full screen then I don’t mind an IDE as much.<p>One thing I insist on is doing as much work with git from the CLI. IDEs often do things like staging new files automatically that I’m not a fan of.
评论 #28258849 未加载
评论 #28257412 未加载
评论 #28257281 未加载
the_third_waveover 3 years ago
I think the benefits of working with KISS tools - the opposite of &#x27;everything but the kitchen sink&#x27; in Emacs parlance - is that it significantly lowers the cognitive load. This may sound odd when comparing a rather bare-bones vi + tools setup with a bells-and-whistles IDE like Visual&#x2F;Android&#x2F;whatever Studio but it just ends up working that way for me. I already need to keep enough state in my head for the project I&#x27;m working on so I&#x27;d rather not have to worry over the state of whatever tools I&#x27;m using.<p>As an aside, I feel the same about the unbridled growth of tooling around certain languages (Javascript being a prime example) and environments (Android comes to mind). Maybe it is just because of the way I started out with 8-bit assembly where a macro assembler was a luxury which could not entirely be trusted to do the right thing but I know I&#x27;m not the only one.
评论 #28258721 未加载
评论 #28257458 未加载
评论 #28257654 未加载
spapas82over 3 years ago
I was developing python&#x2F;django for a couple of years in notepad++. I had a very slow computer this time and using anything else seemed way too slow. The featured I missed most from notepad++ was not being able to quickly open files for editing (ie like using ctrl+p in vscode).<p>Beyond that, it was a great experience. Of course, using python contributed to that great experience since most things can be easily remembered and the autocompletes are not so useful due to the dynamic nature of the language. When I needed to do Java&#x2F;spring development I always fired up eclipse even if though I knew it would take 5 minutes to start and a couple of seconds for each suggestion to appear. However, trying to develop in Java without an IDE by having the javadocs open and copying and pasting all the package and class names all the time and missing everything static typing offers your is a nightmare!
fartcannonover 3 years ago
In Linux, it often feels like the whole OS is the IDE. In the same shell, you can edit source files, compile, debug, execute, rename, search, create and execute scripts to do literally anything with any language, use git, surf the web, update, reboot, launch a game, etc, etc.<p>An IDE on top of that always felt restricting to me. Like why limit yourself? But maybe that&#x27;s a windows&#x2F;Mac thing.
评论 #28259293 未加载
评论 #28257411 未加载
评论 #28257420 未加载
评论 #28265206 未加载
k__over 3 years ago
I used Webstorm for years, but switched to VSCode.<p>It&#x27;s just more flexible, which allows me to use new tech&#x2F;langs very quickly.<p>If you don&#x27;t focus on IDE features, you tend to implement quality of life improvements at a level that also works in an editor. Like in the language, framework, or library you&#x27;re using (See the code generators point in the article).<p>With languages like Rust, that have zero cost abstractions, you don&#x27;t even run into performance problems when doing so.
评论 #28258211 未加载
评论 #28259875 未加载
cghover 3 years ago
For context, the author is a student with little real-world work experience producing software for a paycheque. To put it mildly, there’s a lot more to writing software in a modern work environment than your choice of editor or whatever.
评论 #28260554 未加载
voidhorseover 3 years ago
I&#x27;ve used vanilla vim more or less without plugins and with a few keymap tweaks for the majority of my software development work. Every now and then I have to use an IDE to match some upstream requirements, and I much prefer using a near featureless text editor. Sure the auto-suggest, tab completion, etc. are nice, but I feel like the downsides aren&#x27;t worth it. I also find it&#x27;s easy to get lazy when using an IDE and produce sloppier code on the whole.<p>In most cases I feel that using an IDE nets you short-term, micro-productivity gains and also nets you long-term rot&#x2F;maintenance headaches. imo it&#x27;s typically not worth it.
评论 #28258152 未加载
blunteover 3 years ago
Things I would greatly miss without Rubymine IDE:<p>1. interactive debugger<p>2. quick jump to function&#x2F;constant implementation<p>3. show usages of function&#x2F;constant under cursor<p>4. source control (Git) diffs<p>5. database browser<p>There are probably other things I&#x27;m forgetting to mention.<p>Sure, all of these can either be cobbled together to some degree out of the fundamental individual tools. You can add plugins to Vim or Emacs to help with many of these. With enough effort you can get close to what a polished IDE offers... but you&#x27;re effectively making your own quirky, fragile, non-portable inferior IDE.<p>Yeah, a heavy IDE is slow to start and resource hungry. But hardware is cheap, and you only start the IDE once every few days (or weeks).<p>When I&#x27;m on a remote server, then I&#x27;m in a shell using vim. Fine, and doable. But to really build and get things done, saving my brain for actual problem solving, I wouldn&#x27;t want to give up my IDE.<p>Also, some of the cons on OP&#x27;s list are problems with the language being developed in, not the IDE.
moron4hireover 3 years ago
Why is it so important for some programmers to convince others of working the way they work?<p>The complaints levied at Java and Android specifically are issues I&#x27;ve really only seen in that language and on that platform. Excise that and all these arguments feel very flat and empty. It has not been my experience at all that using an IDE means I can&#x27;t remember my project layouts, API calls, etc.<p>And frankly, this wreaks of the same sort of elitist arguments that only a small minority of grammarians make against spell-check. So what if the tool is a crutch? ALL TOOLS ARE! That&#x27;s the point of tools, to off-load some forms of manual labor. A table saw and a fence are going to let me make straight cuts a lot quicker and easier than using a hand saw. Humanity grows and life moves on and troglodytes complain that the field is being &quot;ruined&quot;, but what they really mean is they can&#x27;t keep up.
klodolphover 3 years ago
These days I&#x27;m seeing more common support for using an IDE with an external build system. Best of both worlds... you get to have the IDE add the tedious import statements at the top of your file, and people without the IDE won&#x27;t have any problems with your project.<p>Depending on the language and build system, this might be something I set up manually (set up an IDE project to mirror the build system), something you can set up automatically (export build system to IDE project), or there might be a standard layout for source code that mostly works.
Rd6n6over 3 years ago
A good ide is all about auto completion and refactoring tools. The autocompletion means you don’t have to spend as much time memorizing apis, so you can focus more on simplifying your design and minimizing coupling. In something like unreal engine, the intellisense really sets ides apart. The refactoring means you can quickly and easily make large changes to make the code easier to work in. You can just work significantly faster if you have both of these things.<p>I don’t really use other ide features. Separate terminals are great
评论 #28257302 未加载
评论 #28257333 未加载
评论 #28257219 未加载
评论 #28258372 未加载
Insanityover 3 years ago
As the author points out, it does depend on the language. I switched to vim &quot;full-time&quot; when moving to a Go team. (Prev Java).<p>Java is a language that does not lend itself to vim. Even just compiling and running a sufficiently large java program can be a pain without an IDE setup.
评论 #28257263 未加载
评论 #28257672 未加载
评论 #28257364 未加载
matt2000over 3 years ago
None of these feel particularly true to me, but in particular &quot;less code is more readable&quot; is just so clearly not true. If this was the case we&#x27;d all still be using Perl.
评论 #28259542 未加载
评论 #28259554 未加载
jillesvangurpover 3 years ago
The downside is losing access to refactoring, auto-fixes, integrated debuggers, auto complete, countless plugins, etc. Some of that stuff is nice &amp; helpful. Some of it stops you from doing silly things. And some of it automates the detection and fixing of problems you would otherwise introduce without realizing. The latter is why it&#x27;s important to use proper tools. Because introducing such preventable issues to any code base is just really not excusable for a professional software developer.<p>Of course, tooling is better for some languages than for others. But even the ones you think are not that well supported actually do have some nice IDEs these days. Worth checking out such tools. Of course you can compensate with discipline and use command line build tools to tell you what&#x27;s wrong and then manually look up the code location and fix all the issues .... or you could just autofix the warning in your IDE and move on to dealing with more interesting problems.<p>As a good friend used to tell me, laziness is a sign of intelligence. In IDE terms, if you spend half an hour manually fixing something that a tool could have fixed for you in seconds, you are being an idiot. Or alternatively, if you can&#x27;t be bothered to understand and use the command line tools available to you, do consider using an IDE as it will save you some time mastering those tools you clearly can&#x27;t be bothered with mastering. It&#x27;s the intelligent choice.
blumomoover 3 years ago
I started with Q-Basic about 30 years ago, which came with an IDE which was as powerful as Textedit or Nano. No auto-completion, no refactoring, nothing. Then came Delphi, MS Visual Studio, Visual Basic, Eclipse, IntelliJ&#x2F;AppCode&#x2F;Android Studio, Xcode, Visual Studio Code - all in that order.<p>I came to realize that the more the IDE did for me the worse I became as a programmer!<p>Today I’m back to plain text editing with a powerful text manipulation tool - (Neo)Vim.<p>And I program like back in the 90s — I have all file names, methods, the complete code structure of _all_ products and services of our company on my mind. I can see the final solution in my mind before I start typing a single letter. Refactoring is done with regex, it works the same in all programming languages. I work full stack. And I’m really fast. And I’m not tired by having all code and APIs in my mind. Because programming is pure joy again for me. Pure text editing is what makes me fast and having tons of fun. I ship so fast and things very rarely break. Bugs are fixed within minutes because I see the root causes flashing up in my mind.<p>To me IDEs are for intermediate programmers. It’s a good thing to temporarily improve your skills but I don’t see them as a means to achieve mastery, at least not for the mastery that I could achieve.
hsaliakover 3 years ago
I don’t use an IDE but I use emacs. Heavily use Helm, heavily use its ag integration to navigate around projects and I yasnippet useful patterns and rely on them a lot. Am I using an “IDE” - no. But am I using tooling to make my life way easier than a raw text editor? Absolutely. Will my productivity fall off rapidly without this tooling? Most likely.<p>So I reject the argument made in the article. Just choose your IDE wisely and make the tradeoffs you want to be productive.
MontyCarloHallover 3 years ago
&gt; When you have to manually find a file to change a subroutine implementation, or to refactor a subroutine, you will have good file names and a good directory structure. The Antipattern of the directory layout of your typical Java Enterprise Project is a Testament to this. (src&#x2F;main&#x2F;java&#x2F;org&#x2F;company&#x2F;product&#x2F;...)<p>To play devil’s advocate, isn’t the goal of a good IDE to abstract away the actual filesystem organization of the code? As long as I can quickly look up function definitions via the IDE, I don’t care how they’re actually organized on disk. As an analogy, I’m sure my Gmail inbox is internally stored across multiple different databases and would be a nightmare to manually browse at the database level, but I don’t care because I can easily access all my messages through my email client or the web UI.<p>Disclaimer: I’m not an IDE user myself (simply because I’m oldschool, have all the emacs keybindings burned into my muscle memory, and I’ve never taken the time to learn one well), and in principle agree with the author’s point. IDEs are not (yet) at a point where they’ve rendered the filesystem completely irrelevant, although some are getting pretty close.
评论 #28257609 未加载
oneplaneover 3 years ago
None of this matters in the slightest as soon as you have to work with other people on stuff. At that point common tooling is more important than specific personalised tooling.<p>If everyone is using IntelliJ and you&#x27;re using Atom, it&#x27;s going to be problematic. Not because of either of those tools, but because you now have a discrepancy that is not relevant to the work you&#x27;re doing yet it&#x27;s creating problems for the work you&#x27;re doing. Adding friction like that doesn&#x27;t help anyone.<p>&quot;Works on my machine&quot; doesn&#x27;t just apply to the artifacts you build, it also applies to the way you work on your project.<p>Of course there is some difference between multiple people editing random plain text in a random editor and multiple people building a piece of software with a toolchain, deployment strategy, tests etc. If everyone in your team can scaffold the tests in 1 second because that&#x27;s what the IDE does, and you&#x27;re the only one that has to burn half a day on manually stubbing out the same scaffolding, you&#x27;re the problem.
评论 #28258133 未加载
评论 #28258003 未加载
评论 #28257487 未加载
elondaitsover 3 years ago
There are some things that I feel that IDEs do better than a terminal or editor:<p>- Running tests (test running requires juggling a hierarchy of tests, their results, their declarations, plus with an IDE you can run tests directly from the test declaration)<p>- Lint &#x2F; Static analysis (you get the warnings automatically as you code)<p>- Debugging (it&#x27;s easier to watch several things at once, easier to inspect a complex object, you can inspect through a tooltip when hovering over a variable on the code)<p>I really don&#x27;t care about how anyone prefers to work, but I fear that anti-IDE people in many cases don&#x27;t even debug (except by printing), lint or test... which I <i>DO</i> care about, if I have to work with them. These things are about being a responsible coder.<p>I could also add that the &quot;Local history&quot; feature of Jetbrains IDEs can save code from accidental deletion, which is another thing that goes beyond personal preferences.
评论 #28257899 未加载
评论 #28257895 未加载
nerdbaggyover 3 years ago
He bashes VS Code at the end but that seems exactly what he wants. VS Code is more of a text editor then an IDE, and you can turn off all the “issues” he complains about.
评论 #28257234 未加载
评论 #28257236 未加载
wvhover 3 years ago
If I am the main developer on a three year project, I use whatever editor, command-line tools and custom scripts I need to get the job done. The whole project, from code to ops, architecture, security and documentation, is in my head.<p>However, if I&#x27;m thrown in half-finished projects as consultant, the tooling in IDEs can help me to get a grasp on what needs to get done without necessarily having to construct the whole map inside my head. Whether this approach leads to better code is highly dubious, but one doesn&#x27;t always get to pick outside factors.<p>These are just tools, each with their own purpose, benefits and weak points. The main criticisms of IDEs seem based on a certain type of developer that does not know the world outside of their favourite IDE and programming language, which of course is not a problem of the tool itself.
clircleover 3 years ago
The difference between an IDE and a souped-up vim or emacs configuration is ... very little. Your average fancy pants vim config has auto-completion, debuggers, etc.
评论 #28257383 未加载
评论 #28257851 未加载
liorben-davidover 3 years ago
This is the equivalent of never washing your hands to build up immunity. You&#x27;re just spending more time and energy to solve a problem that the tool can solve for you.<p>Are you more independent for it? Sure, I guess. But I&#x27;d rather be efficient then get brownie points
wyagerover 3 years ago
I write very different code when not using an IDE.<p>If I’m not using an IDE, my code has to be contextually simpler for me to remember it (because I can’t just jump to definition) which makes my code ultimately better organized. However, I assume this comes at some speed penalty, at least in the short term.<p>For personal projects I don’t use an IDE, but for work because everyone else writes IDE-style code, I also need to use an IDE to wrangle it.
willjpover 3 years ago
I guess it depends on your definition of an IDE, and where you&#x27;re most comfortable&#x2F;productive. I see a lot of posts about autocomplete, refactoring, linting, tooltips, tests-by-cursor&#x2F;file, snippets. Thanks to a very friendly plugin community, you can get all of these in vim, emacs etc. I like vim, and it has nothing to do with hubris.<p>For me it&#x27;s mostly about:<p>1. proximity to the terminal: I find cli tools very useful for most of my daily tasks. Using an editor puts the terminal first, and my editor second. One-off tasks are a tmux split&#x2F;tab&#x2F;session away and everything is neatly organized.<p>2. consistent interface: Working with a terminal is neat because everything is text and it is composable. Working in vim, all menus are just buffers - you can navigate them the same way as you would your code. Searching, navigation, jumping between windows&#x2F;menus, filtering -- everything stays consistent.<p>3. quick n&#x27; dirty workflows: If I identify a task-specific workflow I want to improve in vim, it is pretty easy to drop in functions and&#x2F;or keybindings to do what I want. The interface was built in a way that makes this easy. Writing a plugin for visualstudio, or jetbrains etc. requires knowing a lot more about the editor you&#x27;re working in and how it&#x27;s built. Maybe it just feels that way to me.<p>4. 0% adjustment when working over SSH: tabs, splits, etc. both in my editor and terminal are identical in an SSH session. No discomfort. Mostly useful at home.<p>5. low distraction: This one&#x27;s personal. IDEs are intimidating, hundreds of buttons, menus, logs prompts all fighting for your attention. If I click through a deeply nested menu I often forget what I&#x27;m doing - especially if there is a fire. Functions and Muscle memory works for me. It clearly does not work for everyone.
评论 #28258878 未加载
jeffterns8over 3 years ago
To be clear, this comment is about IDEs for common languages where they are a viable and general consideration as the topic is about IDEs as a whole. Platforms and&#x2F;or languages where IDEs are commonly known as limited&#x2F;awful, with no alternatives, are a moot point and not the root of the topic&#x27;s points.<p>The points made and most of these comments are a joke. Basically bad practice and poor use of source control is being blamed on IDEs. Anyone with these problems (in modern times, old projects&#x2F;approaches are products of their time) simply isn&#x27;t a competent dev and&#x2F;or never studied. I don&#x27;t even recall any of these things being an issue in the first months of learning to code, 10 years ago.<p>To be a good programmer, don&#x27;t learn from bad sources and don&#x27;t be overly lazy to the point you develop bad habits. You can do all of that while still using an IDE. How you use the tools available is on you, not on the tools.<p>If a tool is so bad it enforces bad practice and has no way to avoid complicating workflow, find a better alternative. A tool is meant to streamline and improve workflow, not hinder it. I&#x27;ve never chosen to use an IDE that has enforced any of the issues being commented on, as if the only alternative is avoiding IDEs outright. I choose to use IDEs that are best-suited for the language I am using, are flexible and allow me to work how I like without convoluting my workflow. I also never commit IDE or user-specific files to a repository as that&#x27;s just awful practice.<p>I&#x27;m also yet to read a complaint in comments here that claims to be a specific IDE forcing or creating problems that isn&#x27;t actually about a company&#x2F;team that has created a terrible dev ecosystem (or backing off an archaic one) for a project that they restricted and boxed into an IDE. Just because poor project management can make a project a nightmare to work with doesn&#x27;t make the tools involved the problem.
sodover 3 years ago
&gt; By not using an IDE, you have to remember the syntax<p>&gt; because there is just so much, that it becomes impractical to remember<p>I got more comfortable and faster with large projects when I stopped caring about remembering and switched to search &amp; find. I&#x27;m always amused seeing someone trying to navigate a directory tree of 2000 files.
temporallobeover 3 years ago
When I first started my career, I used vi (not even vim) on Solaris terminals to develop and learn Perl, which I still know and love 20+ years later. I believe that I never would have learned it so deeply if I had used an IDE with syntax highlighting, autocomplete and the other various nanny features. That said, my life would be a whole lot more difficult if not for modern IDEs (which I currently use for Java, TypeScript, Clojure, Ruby, etc.), and at this point in my career, I can’t see myself going back to bare-bones editors. However, I have started using VSCode more often (when it makes sense to do so) - this seems to be a good compromise between a full-fledged IDE and a plain text editor, although you could certainly configure VSCode in such a way that it is basically an IDE.
YuukiReyover 3 years ago
One of my personal role models, <a href="https:&#x2F;&#x2F;github.com&#x2F;Gabriel439&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Gabriel439&#x2F;</a>, uses mostly vanilla Vim. Maybe they&#x27;d be 10x as productive with an IDE, but I doubt it. And in any case, the difference in quality and output between them and me is certainly not the tools.<p>I don&#x27;t think the tooling matters at all, unless you work in a very specific field where certain tools may be mandatory.<p>Whether you look up APIs in documentation or read that same documentation in your editor, who cares? Seeing red squiggles as you type or in a terminal window that refreshes on change? Who cares. It wouldn&#x27;t even make a difference if you only saw errors when manually starting compilation.<p>None of it really matters in the end.
randcrawover 3 years ago
“IDEs considered harmful”. That&#x27;s exactly the thesis of Nicholas Carr&#x27;s book, “The Glass Cage”. He claims the more we employ cognitive-enhancing tools like IDEs to help us perform tasks that require mental effort, the less engaged we become, the less creative, and the less effort we&#x27;re willing to apply in tackling other kinds of mental tasks. In short, “flow” stops when we disengage and let automation to do the job for us.<p><a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;gp&#x2F;product&#x2F;B00J9PQXOE&#x2F;ref=dbs_a_def_awm_hsch_vapi_tkin_p1_i3" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;gp&#x2F;product&#x2F;B00J9PQXOE&#x2F;ref=dbs_a_def_a...</a>
crispyambulanceover 3 years ago
&quot;Not using an IDE&quot; can mean very different things depending on how you define &quot;editor&quot;.<p>I would say that an editor that INTEGRATES knowledge of your source in some way, like auto-complete, or red-squiggles, is very much a big step towards an IDE and should could as &quot;using an IDE&quot;. Whether it does that using plug-ins&#x2F;extensions or natively doesn&#x27;t matter. If it has that functionality there&#x27;s not that much more separating it from an IDE.<p>VSCode, for example, is more like an IDE than an editor especially as you add more and more extensions.
sharikoneover 3 years ago
I always take this kind of opinions with a grain of salt but I also don&#x27;t like bloated IDEs, like the author.<p>But it&#x27;s a general and trivial comparison. Like using MS word vs markdown, or Ubuntu vs Arch or Alpine.<p>It all comes down to your use case and it&#x27;s not black and white. My Swiss knife is VS Code, arguably an IDE-minus, or an editor-plus. And given that I work all day on software it happens that I occasionally go down (vim) or up (XCode, Visual Studio, Android Studio) and I have no problem with that.
BrianOnHNover 3 years ago
Switching between languages frequently, VS Code is great. Other IDEs are better for specific languages&#x2F;contexts.<p>However, I credit my understanding to the time I spent in Notepad++ and times I explored code on the whiteboard while reading docs. Thus, I feel my &quot;internal compiler&quot; would not be anywhere as useful if I had always relied on productivity tools (IDEs).<p>That said, my input isn&#x27;t maximized by more efficiently producing the same thing, like a factory, in which case I say IDE all the way.
bluedinoover 3 years ago
&quot;The benefits on not working with enterprise Java&quot;
评论 #28259088 未加载
dave333over 3 years ago
In the early days of IDEs (1990s) there were projects where I spent more time trying to figure out the IDE than I did on the project code! Same goes for many frameworks. Just when you get competent, the IDE&#x2F;framework changes. AFter a few generations, informal standards developed in IDE functionality so it was easier to switch. But still by far the most powerful tool I know that I only had to learn once is the Unix pipeline.
atribecalledqstover 3 years ago
&gt; The Antipattern of the directory layout of your typical Java Enterprise Project is a Testament to this. (src&#x2F;main&#x2F;java&#x2F;org&#x2F;company&#x2F;product&#x2F;...)<p>My eye twitched when I read this. My company recently switched to a new build system and for whatever reason this required (I guess??) a change to the src&#x2F;main&#x2F;java... structure. The commit history going back over a decade, gone. It&#x27;s not great.
shredditover 3 years ago
I think that’s why VSCode is so popular. It’s a very powerful text editor, not a light version of an IDE.<p>On the other side, I’d never use vsc to edit a normal text file…
评论 #28257198 未加载
评论 #28257240 未加载
djhworldover 3 years ago
Ehhh, I dunno.<p>I&#x27;ve yo-yo&#x27;d between minimalist setups and full blown IDEs over the years.<p>Nowadays I&#x27;m happy with IntelliJ for Go development and a little bit of Rust. There&#x27;s something quite freeing from not having to tinker much with configs and just get on with actual work!<p>Admittedly I do use the terminal feature in IntelliJ quite extensively so I&#x27;m not making full use of the features, but meh.
throw3849over 3 years ago
I feel most of those points are obsolete with Idea. It takes seconds to start and so on.<p>Only benefit I see is remote development over terminal.
评论 #28257261 未加载
agumonkeyover 3 years ago
one trauma from eclipse days, is that for instance, libs thus classpath management was left to eclipse devs .. and I had no idea what was going on, why it worked, what differences between the options ..<p>when I could write a makefile to finally jar &#x2F; launch a java app on my own, I felt such a relief..
jbverschoorover 3 years ago
&gt; By not using an IDE, you have to remember the syntax of the language you are using, the subroutines from your own project and their arguments. You also remember (standard-)library subroutines better for your chose programming language.<p>Use an IDE, and discover + learn the syntax by being assisted. Start biking on a unicycle, and fail.<p>&gt; When you have to manually find a file to change a subroutine implementation, or to refactor a subroutine, you will have good file names and a good directory structure. The Antipattern of the directory layout of your typical Java Enterprise Project is a Testament to this. (src&#x2F;main&#x2F;java&#x2F;org&#x2F;company&#x2F;product&#x2F;...)<p>There were no IDEs for Java when it started. And it immensely structured everything. Not having an IDE doesn&#x27;t mean anything about naming.<p>&gt; With big projects, it might slow you down to have the IDE load the entire project before you can start working. Some Projects with 40000+ files might take &gt;5 minutes to load.<p>But in return you&#x27;ll get something that will tell you what&#x27;s going on, or even do hot code swaps, saving you a lot more than those 5 min.<p>&gt; This is almost always the result of bad language design and&#x2F;or bad library design. An example is developing android apps in Java with Android studio. Here, you will be slowed down a great deal in order to program without Android Studio. There will be a steep learning curve.<p>The IDE does more than just edit code. Welcome to different resolutions, devices, etc. Please tell me you&#x27;d rather have the device mess of J2ME &#x2F;&#x2F; Symbian.<p>&gt; Good Open Source Projects encourage people to clone, fork, and maybe even to contribute to a Project. People are able to directly edit files on github, if an IDE is not required and they know the language being used. Not requiring an IDE makes it easier for blind people, who might be using screenreaders to understand your project, and enables people without modern hardware (which might be unable&#x2F;impractical to run an IDE) to work on your project.<p>IDEs have makefiles &#x2F; build.xml &#x2F; whatever. You&#x27;re totally uninformed<p>&gt; Have you ever seen a Java Enterprise Project? Sometimes the Java classes in there have 20+ import statements, automatically generated by the IDE. Working in this style, with such long package names and lots of classes&#x2F;namespaces eventually almost forces you to use an IDE because there is just so much, that it becomes impractical to remember.<p>All Java IDEs support maven or whatever is popular right now.<p>&gt; Not having Autocomplete &#x2F; Code Generation guides you naturally to writing more compact and idiomatic Code in the Language of your Choice. It helps you to learn language-specific features and syntactic sugar.<p>That&#x27;s a language design issue.<p>In Java, there is the Concept of Getters, Setters, toString, hashCode and so on. These methods can be auto-generated by the IDE. In practise, this leads to bloat. The IDE is simply compensating for missing language features (built-in hashing of a composite data type, built-in string representation ).<p>That&#x27;s a language design issue.<p>What a shit article
评论 #28257747 未加载
评论 #28257354 未加载
Shorelover 3 years ago
Well, I get linters (errors are highlighted even before the file is saved), jump to function definition and a lot more in Sublime Text.<p>I mean, I don&#x27;t use an IDE, but at the same time, reading the comments, I don&#x27;t miss much of what it offers.
评论 #28258889 未加载
Zababaover 3 years ago
&gt; simply listing Reasons, The Antipattern of the directory layout of your typical Java Enterprise Project is a Testament to this., contribute to a Project, idiomatic Code in the Language of your Choice.<p>What&#x27;s with the wild capitalization?
timdaubover 3 years ago
Hey Alexander,<p>thanks for your genuine post. I can&#x27;t help but notice the big red disclaimer you put on the beginning.<p>Once I wrote a blog post about a thing I didn&#x27;t like about Typescript and submitted it to Hacker News [1]. Bad choice. The hate was immense and unnecessary. I even had one guy write a long post about what a &quot;soy dev&quot; I am. That made me feel sad and dislike the HN and dev community.<p>Anyways, I just wanted to say that I appreciate your blog post and that I think you&#x27;ve made some good points. Thanks!<p>-1: <a href="https:&#x2F;&#x2F;timdaub.github.io&#x2F;2020&#x2F;09&#x2F;01&#x2F;typescript&#x2F;" rel="nofollow">https:&#x2F;&#x2F;timdaub.github.io&#x2F;2020&#x2F;09&#x2F;01&#x2F;typescript&#x2F;</a>
ilakshover 3 years ago
One thing that makes a big difference for me when programming in the terminal is the `fish` shell. It just has really good autocomplete. Also check out the `micro` editor.
bigbillheckover 3 years ago
I don&#x27;t find any of that person&#x27;s arguments particularly compelling, especially this one:<p>&gt; Respect the Unix Philosophy<p>I have no respect for the unix philosophy.<p>They go on to clarify:<p>&gt; (Visual Studio&#x27;s poor man&#x27;s autocomplete is a prime example)<p>And so from this I deduce that the author considers autocomplete to NOT be part of the &quot;one thing&quot; that an editor, under the Unix Philosophy, is supposed to do. But both emacs and vim have autocomplete capability, so either autocomplete in an editor is only philosophically acceptable if it&#x27;s good enough, or emacs and vim are not worthy of the Philosophy.
z3t4over 3 years ago
Another advantage is better naming, better parameters, as you need to remember them. I would say less bugs also as you have most of it in your head.
slifinover 3 years ago
There&#x27;s no rule that says you can&#x27;t use multiple editors<p>I&#x27;m happy taking advantage of the strengths of many editors for many different situations
devsatishover 3 years ago
IDEs are tech equivalent of power tools. You need them. Of course you can always chisel down when needed, but tooling helps.
ju_shover 3 years ago
I can understand people using text editors (a la Vim, Emacs) if they&#x27;ve been using them for donkeys years and are extremely proficient and productive with them, additionally for making quick changes to files from the terminal.<p>However, why any developer would reach for one of these tools now when working on application development is beyond me (other than to feel like a 1337 OG hax0r of course)<p>Power tools &gt; hand tools
zerubeusover 3 years ago
No thanks I can&#x27;t live without Intellij Ultimate + ideavim, I just can&#x27;t...
评论 #28258082 未加载
Koshkinover 3 years ago
&gt; <i>The IDE is simply compensating for missing language features</i><p>This is a good thing, no?
npapag7over 3 years ago
You must know how to work without an ide. Then you can learn on top an ide.
tasukiover 3 years ago
Wow these are really weak. And I&#x27;m not much of an IDE lover...
whateveracctover 3 years ago
emacs, ripgrep, fd, fzf, sed, shell aliases &amp; functions, a little custom elisp here and there<p>what more do you need? typing the code is never the bottleneck lol
nrvnover 3 years ago
Benefits of being a troll,<p>And art of creating clickbaity titles.
MagicWishMonkeyover 3 years ago
I know it&#x27;s a personal anecdote, but 100% of the devs I&#x27;ve worked with who refused to use an IDE ranged from below average to flat out bad at software development.
评论 #28257565 未加载
noidestoover 3 years ago
Does emacs&#x2F;vim using lsp count as an IDE?
graycatover 3 years ago
So, we are talking about tools. First some generalities:<p>We can expect that considering tools has to be complicated, e.g., apparently the rise of civilization involved the development of many tools for many purposes.<p>Closer to Hacker News, there is a LOT of <i>data</i>. The explosion in price&#x2F;performance of computing and digital communications has the amount and variety of data growing. So, handling data can be a challenge, and picking tools can also be a challenge.<p>For handling data, there are some tools&#x2F;data types, e.g., SQL, IDEs, Word, TeX, Aspell spelling checker, the old file search utility grep, HTML, JPG, comma separated values (CSV), spreadsheets, ....<p>Of course, if concentrate on one source of data for a few narrow purposes, then can have some specialized tools that were expensive to develop and needed training to learn to use but with a lot of usage can be very productive. Maybe a good analogy is the factory that produces the cans of beef ravioli that I eat sometimes for a fast meal -- no doubt they prepare ravioli by the square mile, and I doubt that they use a rolling pin!<p>Then there are people; they tend to be different: Some of these people work in a gold&#x2F;copper mine, coal mine, on a huge fishing trawler that goes from catching the fish to having them frozen in retail packages, ..., down to changing the air filter in the family car once a year, getting the garage door back on track about each two years, cleaning up after the kittens have accidents, .... Some of this work uses big, expensive, specialized tools, and some uses just simple, old, general purpose tools, hammers, pliers, screwdrivers, maybe Vise Grips, a 1&#x2F;4&quot; electric drill, etc.<p>So, to give some evidence of case n = 1, me, and in computing, I use various tools. Examples include Google, Wikipedia, YouTube.<p>But for what I do on my PC where Google, etc., doesn&#x27;t help, I settled on a broad strategy: As much as I reasonably and efficiently can, stay with text, standard ASCII (maybe more accurately with some UTF definition) text. Then to manipulate this text, use my favorite text editor, KEDIT.<p>I can <i>customize</i> this editor using its macro language, Kexx, a version of the M. Cowlishaw Rexx. Rexx is no toy -- before internets or the Internet, IBM had something similar in their internal computing, and a lot of it was run by servers written in Rexx. Currently I have something over 250 Kexx macros for KEDIT.<p>So, where I make use of KEDIT directly?<p>(a) Since some of my most important writing is pure&#x2F;applied math, I&#x27;ve had to get good with D. Knuth&#x27;s math word processing TeX -- I&#x27;ve written about 100 macros in TeX. So, I use KEDIT with its macros to type in documents in TeX with my TeX macros. Now that I&#x27;m good with TeX, it is also my favorite word processing for letters, business cards, and more.<p>(b) For remembering URLs, phone numbers, mailing addresses, other little items of information, I have a very simple little system based on KEDIT and a few, simple macros. All the data is in one file of, currently, 3,368,455 bytes. Currently I have 5947 such entries starting in September, 2005 and more in other files going back some decades. With the 5947 entries and 3,368,455 bytes, that is an average of<p>3,368,455 &#x2F; 5947 = 566<p>bytes per entry.<p>Since<p>5947 &#x2F; 16 = 371<p>on average I add an item to this file about once a day.<p>KEDIT makes it fast and easy to count the number of entries.<p>(c) In a file I maintain with KEDIT, I keep medical, diet, exercise, etc. history. I have some macros I use to extract data to read in with Excel and draw graphs.<p>That Excel will read in data from just simple text files is terrific.<p>(d) Mostly KEDIT is good for editing files one or a few at a time, but I use the Windows file system as a <i>taxonomic hierarchy</i> for organizing the files. Then I have a little program in Rexx that puts the data describing a file system subtree in a text file with several columns of fixed widths and use KEDIT to sort, search, <i>select</i> that content.<p>(e) One of my favorite macros is IDC, <i>insert dated comment</i>, e.g.,<p><pre><code> Modified at 13:24:42 on Saturday, August 21st, 2021. </code></pre> So, with IDC I can slap time&#x2F;date stamps on content and do so many times a day. Yes, the little macro reads the file type and puts in appropriate comment delimiters.<p>Just these time&#x2F;date stamps are a good, fast, single way to provide first-cut documentation of work -- that months or years later are great to have if don&#x27;t have anything else.<p>(f) I wrote a little KEDIT macro <i>calc</i>, abbreviates <i>calculate</i> to evaluate simple numerical expressions. E.g., at one point in my career my manager believed that a disk drive of 100 million bytes was <i>large</i>, much larger than necessary. At Amazon I just ordered an external hard disk drive with 5 trillion bytes. So, using calc, we can find the ratio<p>(5 * 10*12)&#x2F;(100 * 10*6) = 50,000<p>(g) So I write code in Rexx, Kexx, TeX, C (occasionally), and Microsoft&#x27;s .NET. And now that I&#x27;m good with KEDIT, I use it to write all this code. In .NET, with a little C, for my startup I typed in code in 100,000 lines of typing with 24,000 programming language statements. So, about 75% of the lines are documentation for me to understand the code! Some random exogenous events pulled me away from that code, but I will be back to it soon, and then the comments will be very welcome, get me back to 100% in understanding all the code.<p>Most of the comments have tree names on my development computer of, usually, HTML files of .NET or other documentation, and, sure, I have a macro that helps with that. E.g., with one keystroke, Firefox will display a file of HTML documentation.<p>The comments are essentially just text, technical writing, and KEDIT with its formatting is good for that. Also my standard spell checker, Aspell, works with that text. That is, the code is, to KEDIT and Aspell, just text.<p>(h) Sure, I use KEDIT to write email and often to read email. I went for some years using some code I wrote in Rexx for email -- then email got more complicated and I had to use Outlook or now what my ISP provides (I intend to return to Outlook). But when I write email, I still use KEDIT. When I receive email that is just simple text, I use KEDIT to format (<i>flow</i> it) and read it.<p>(i) Sometimes I still want to print some things, e.g., shopping lists, envelopes, etc., and use KEDIT for that.<p>I&#x27;m numbering, labeling, my external hard disk drives with PASSPORTnnn sequentially with integers nnn, and I print these with KEDIT.<p>(j) Sure, eating is necessary, and I cook my own food. For that, I develop recipes and use KEDIT to create those. To take a recipe to the kitchen, I can print via KEDIT.<p>(k) Sometimes URLs have hex characters. So, I have a little KEDIT macro to convert those URLs back to just text.<p>(l) And, sure, I&#x27;m using KEDIT for typing this Hacker News post.<p>So, as in these examples, (a) -- (l), as much as I can I use just simple text files maintained with KEDIT. Then I get good with KEDIT, macros, <i>muscle memory</i>, etc. and use that skill as much as I can.<p>I can&#x27;t use KEDIT for everything, so sometimes I use other tools.<p>Once I tried to use Microsoft&#x27;s Visual Studio. I didn&#x27;t like the documentation but charged ahead. I created a <i>project</i>, and before I had typed in any code I looked and saw a directory subtree with maybe, IIRC, 50 files I knew nothing about. I stopped right there. Maybe someday I will see need to use an IDE, maybe Visual Studio, and will return to it.<p>All the programming I do is in languages where the code is in just simple text files. To me that use of simple text is terrific, and I take advantage of it.<p>So, net, I use KEDIT and simple text files for dozens of varieties of work; in principle each variety, done with enough volume, could be done with more productivity with a specialized tool, but for just my work, where I use KEDIT and text files, none of the varieties are worth the investment, overhead, of a specialized tool.<p>By analogy, to me KEDIT is like a Swiss Army knife with 15 tools including a can opener. If I opened enough cans, I might want some restaurant kitchen $500 counter top electric can opener, but for me, now, the Swiss Army Knife is better.
tester756over 3 years ago
whenever people are talking about not using an IDE I do wonder<p>whether they had an opportunity to use Visual Studio&#x27;s features like<p>expression evaluation during debugging with access to local variables,<p>ability to change code at fly,<p>ability to execute code in immediate window with access to local variables
walshemjover 3 years ago
Isnt an editor with syntax highlighting, Atom for example and an IDE
ch_smover 3 years ago
The obligatory XKCD: <a href="https:&#x2F;&#x2F;xkcd.com&#x2F;378&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xkcd.com&#x2F;378&#x2F;</a>
VelkaMoravaover 3 years ago
This is truly a HackerNews moment. IDEs bring optional usefull stuff you can ignore if you want. Yet here in comments we have autists arguing that using IDEs (=option stuff you can ignore) is bad vs using their favourite 40 year old text editor in terminal. Jesus christ you people are funny.
unknownOriginover 3 years ago
If you&#x27;re no using an IDE, you&#x27;re not working in big enough codebases or are not required to move fast enough - either way, I&#x27;m not really interested what you have to say. After you work in this business for over a decade, you&#x27;ll know dumb ideas just because you&#x27;ve seen them several times before. &quot;No IDE&quot; is just that. A dumb idea.
评论 #28261502 未加载
enriqutoover 3 years ago
Using an IDE is like playing the piano and putting stickers with the name of each note. There&#x27;s no objective downside to doing this, but it&#x27;s not really going to help you play better music once you go beyond the very basic stuff. It may give some people a false sense of security, but it won&#x27;t make a difference to a professional programmer. Some of those programmers (but not all, and that is OK) will become annoyed at the stickers once they know how to play the instrument.
评论 #28258145 未加载
bitwizeover 3 years ago
Always use an IDE for significant software projects. Maybe not for small scripts, or for faffing about on your own learning to code Charles Petzold style. But for professionals working on production code, artificially restricting your productivity by denying yourself the time- and effort-saving features of a good IDE is tantamount to goldbricking.
评论 #28258216 未加载
adamnemecekover 3 years ago
I don’t get why these articles get written. They are so predictable and just…overdone. What’s next “the unreasonable effectiveness of the vim text editor”? You are literally verbatim repeating the a thing that has been written one million times.
评论 #28257224 未加载
评论 #28257286 未加载