TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

What do you really get from IDE-driven development?

104 点作者 tbonesteaks超过 3 年前

49 条评论

jolux超过 3 年前
This is an argument against programming by autocomplete, not an argument against programming with IDEs. IDEs make this method of programming <i>possible</i>, but they don&#x27;t make it mandatory. The primary thing I use autocomplete for is to insert method calls that I already know that I want. Secondarily I use it like a documentation browser to read the documentation for every function that I could call if I&#x27;m trying to figure out a better way to do something. If you program by just selecting functions at random without taking the time to figure out the problem you&#x27;re solving and the easiest way to solve it with the tools at your disposal, eschewing the IDE will not save you.<p>I do plenty of programming without autocomplete as well and it doesn&#x27;t bother me. But it&#x27;s certainly nice to have, it reduces a lot of the friction of finding documentation and putting code on the page when you already know what you want.
评论 #30395202 未加载
评论 #30392607 未加载
评论 #30394122 未加载
评论 #30394432 未加载
评论 #30398887 未加载
Ozzie_osman超过 3 年前
There&#x27;s a common argument from craftsmen embedded in here. When something decreases accessibility of something difficult, the people who already know how to do the difficult thing criticize it, because from their eyes, it brings the average quality down. But ease and accessibility always win.<p>This goes for IDEs, programming languages, frameworks, etc. Think of a language like PHP, which made it so easy to code that countless shitty websites were made, ridden with spaghetti code and security issues. But, I was amongst probably tens of thousands of script kiddies who cut our teeth on PHP and eventually learned how to &quot;properly&quot; build web products. My first startup&#x27;s MVP was a giant functions.php file and a bunch of templates, FTP&#x27;d onto a VPS. Probably wouldn&#x27;t have gotten into it if instead I had needed to learn something like C++ or Java.<p>Yes, making something easier to do decreases the quality on average. But even skilled professionals can benefit from better accessibility. And it&#x27;s hard to quantify the full benefit to those who wouldn&#x27;t have been able to do the work without the lower barrier.<p>Personally, yes, I know if I blindly use Github Copilot I&#x27;ll prob write some shitty code. But it just makes everything easier&#x2F;faster to do. So I use it and put in a tiny bit of extra effort to make sure I&#x27;m not abusing it. And it&#x27;s game-changing. I&#x27;m also sure tools like Copilot will improve at a pace that is much faster than people expect. It will recognize deprecated calls, misused calls, errors, security holes, etc.
评论 #30392877 未加载
评论 #30392841 未加载
评论 #30392886 未加载
rehevkor5超过 3 年前
It seems like the author understands, or perhaps his criteria is based on, only a thin layer of what an IDE can provide. Here&#x27;s the highlights:<p>- Data flow to&#x2F;from here (where did the value of this variable come from&#x2F;go to)<p>- Call hierarchy (up and down)<p>- Class hierarchy (up and down)<p>- Class structure (including all inherited fields, methods)<p>- Checking your code against an actual database schema, perhaps one automatically launched in a Docker container<p>- Automatic refactoring of various kinds (rename, extract variable, extract method, inline method, extract interface, add&#x2F;remove parameters, etc.)<p>- Build tool dependency tree inspection with filtering etc.<p>- Inspect code for a huge variety of potential code quality issues, with highlighting and auto-resolutions available<p>- Locate duplicate code, and automatically refactor it out<p>- Detect likely problems with nullity<p>- Easily navigate to lines of code in an exception call stack<p>- Analyze dependencies across classes &amp; packages, detect cyclical dependencies<p>- Debugging, including watch windows and conditional breakpoints of various kinds<p>- Helpful tools for a variety of programming frameworks such as Spring<p>- Integration with git so you can view history, diffs, etc.<p>- WYSIWYG style rendering for stuff like Markdown<p>- Easily navigate to any class, including classes that come from your dependencies (for example I&#x27;ve worked with plenty of people who had no idea how to figure out how Rails worked if it wasn&#x27;t in the documentation, because they didn&#x27;t use an IDE which allowed them to easily browse the code)<p>Personally, all of that is just a huge amount of value.
评论 #30394088 未加载
评论 #30400373 未加载
评论 #30395982 未加载
ambrozk超过 3 年前
This is normal crotchety &quot;kids these days&quot; silliness. Most IntelliJ autocomplete suggestions are things like: * syntactic constructs (e.g. &#x27;v&#x27; -&gt; &#x27;void&#x27;, &#x27;p&#x27; -&gt; &#x27;public&#x27;). * variable names you&#x27;ve already defined, or likely will define (e.g. &#x27;MyFoo m&#x27; -&gt; &#x27;myFoo&#x27;). * methods names you&#x27;ve already defined or method names in commonly-used modules. The idea that the average programmer writing in an IDE is using functions that the IDE suggested, (but they have no idea what those functions do), is nonsensical. In addition to giving you (extremely rudimentary) autocomplete, IntelliJ gives you the ability to browse the libraries you&#x27;ve imported and read their doc. It gives you the ability to quickly see where variables were defined. It gives you the ability to conduct mass renames, move methods into new classes, and to conduct complicated syntax-aware search-and-replaces. It gives you an effective debugging GUI for tests, and allows you to inspect variables at will. I do believe that, as an IntelliJ programmer, I have lost my memory for certain language-specific details, (e.g. the fact that in Java, it is Collection::isEmpty vs. Collection::empty), but it&#x27;s arguable whether these sorts of details are actually useful information for a working programmer.
alkonaut超过 3 年前
The benefit of an IDE is integrating compiler&#x2F;editor&#x2F;debugger&#x2F;test runner&#x2F;linter&#x2F;profiler&#x2F;source control&#x2F;etc<p>If these things somehow prevent you from writing code that is as good as it would be without these integrations then what on earth were you doing? Apart from the “copilot” like things (which almost no one uses and which is orthogonal to the concept of IDEs, any editor can have that) what is “IDE-driven development”? Taking the first autocomplete suggestion after typing a dot in Java? instead of what? Reading docs? It’s not like the IDE having autocompletion for valid method names is forcing your hand to blindly take the first one or the wrong one? This reads a bit like that rant against syntax highlighting making developers bad.
pvorb超过 3 年前
I&#x27;m not sure I buy his argument. I see many programmers who produce inferior code with an IDE and many programmers who produce excellent code with an IDE. I&#x27;m in the Java ecosystem, where IDEs are pretty much ubiquitous. But I&#x27;ve used plain editors in the past mostly for other languages.<p>All in all, I don&#x27;t see the link between using an IDE or not and the quality of the outcome. But I do see the link between using an IDE and development speed, where refactoring is just so much faster and less error prone if you have a decent IDE.<p>I haven&#x27;t tried copilot yet, so can&#x27;t say much about it.
评论 #30392779 未加载
评论 #30391904 未加载
评论 #30394926 未加载
评论 #30395132 未加载
emodendroket超过 3 年前
This seems rather silly, doesn&#x27;t it? A modern IDE like IntelliJ is going to be full of &quot;golf&quot; suggestions anyway, so I find it hard to believe that IDE-composed code is actually going to be more verbose!<p>In my experience CRs from non-IDE users were more likely to have issues like unused imports, weird formatting, unused variables, and so on, because their text editors won&#x27;t yell at them over that (perhaps a linter should be set up to catch it but let&#x27;s face it, few people have all the things they&#x27;d like to have in place).
takeda超过 3 年前
&gt; He’s a really good programmer, but that’s not why his solutions were better.<p>I disagree, if he was forced to use IDE he would came up with the exact same solutions. People who disregard IDEs generally are good, and thy disregard helpful tools like IDE at least partially due to their arrogance. Also their supposed &quot;simple editors&quot; with various extensions are often very close to IDEs in term of functionality.<p>Author also seem to used perl for demonstration, which makes me not so certain he benefits from IDE all that much. The key benefits of IDE truly starts to open when you start using typed language. This shows especially clearly when you use python (in PyCharm for example) and start adding type annotation. Is a completly different experience.<p>You start getting:<p>- reliable autocomplete (as mentioned)<p>- reliable refactoring (this is big, because one of the major cry about python is that as it grows it gets hard to maintain)<p>- showing errors immediately without having to run the code<p>No matter how good you are all these things make you better.<p>Note: Above argument doesn&#x27;t apply to github-copilot (which was used as a demo), it&#x27;s probably no surprise that using that tool will get someone to arrive with same source code. Especially if it is a tutorial so many people before you typed similar thing as well.
xupybd超过 3 年前
Having spent a few years in Perl I understand some of the frustration of an IDE. I find dynamic languages don&#x27;t gain a lot from an IDE. But if you&#x27;re in something with stronger types like Java, typescript or F# the IDE is a God send. The best tool ever is refactor rename. When the IDE can parse your entire code base and rename just the function or variable you want it&#x27;s amazing. Go to definition is worlds better too.<p>I found, in Perl and JavaScript, these tools didn&#x27;t work reliably enough so the IDE was just a slower tool.<p>Also reading the documentation is important regardless of the tool you&#x27;re using. I don&#x27;t think that&#x27;s a true reflection of IDE development.
评论 #30395353 未加载
zwieback超过 3 年前
I learned programming before IDEs existed so I think I can join the author&#x27;s crotchety old elitist club. As such I&#x27;m also a sceptic of anything AI-driven or crowdsourced.<p>On the other hand, I recently allowed Visual Studio to use whatever their version of AI autocomplete is called and holy smokes - it can read my mind!<p>Sure, you can complain about how things were better before the latest crop of tools allowed the unwashed masses to trample your domain but if you&#x27;re smart you take advantage of the good parts while being aware of the bad ones.
评论 #30394489 未加载
avl999超过 3 年前
I can&#x27;t speak for Github CoPilot as I don&#x27;t use it nor intend to ever use it but I find this article extremely unconvincing. He is basically considering an IDE as an autocomplete suggestion automaton. For me the features of an IDE that I use and value (fast code browsing both across my code and the code of my dependencies, refactoring support and taking care of mundane stuff like code formatting and import statements) have very little to do with autocomplete method suggestions.<p>I also find the workflow that author is describing where people blindly probe around until autocomplete suggests them a method that does what they want extremely unrealistic. Most developers will look up various libraries and options to accomplish a thing, indeed the only way you can get autocomplete to even work is if you kinda know what library&#x2F;tooling you want to use.<p>For example if you want to use a b-tree for something the IDE can&#x27;t read your mind, you&#x27;re gonna have to go on the internet and see the options available in the language of your choice, weight them out, decide on one, add the library to dependency management file in your language and only then will the IDE be able to provide any help.
zmmmmm超过 3 年前
There&#x27;s a sort of meta irony in computer programmers rejecting software assistance in conducting their trade, when a large fraction are actually focused on building software to do exactly that in one form or another.<p>Do such people fundmentally believe software is incapable of helping people work with information oriented tasks better? In that case, how do they assess the actual value of their own work?
ChrisMarshallNY超过 3 年前
I use an IDE (Xcode). Works a treat.<p>I&#x27;m also <i>very</i> effective, and <i>very</i> fast. I write fairly significant volumes of well-structured, well-documented code, in a pretty short period of time.<p>It seems work well, too.<p>I don&#x27;t really give a hoot whether or not anyone else thinks I&#x27;m somehow &quot;lesser,&quot; because I use an IDE.<p><i>DISCLAIMER: I started programming well into the last century, and have used CLIs that would have a lot of folks curled up, under their desks, whimpering. It&#x27;s just that I’m not a touch typist, so couldn’t ever really get comfortable with CLIs.</i>
tonymet超过 3 年前
I noticed a trend that engineers think all engineering is just like their own job.<p>The fact is that only few engineers can code in a single language to build the product they are working on.<p>Sure a kernel device driver dev can write 100k lines of C over a year and memorize every API.<p>But many product devs have to land code in 4-5 repos &amp; languages. e.g. a bit of python, PHP, c++ &amp; SQL just to complete one use-case.<p>For those in one language with narrow API dependencies, IDE may seem redundant. But if you are contributing code across multiple stacks &amp; APIs, IDE is a life saver.<p>Lesson: Engineering is very diverse, and don&#x27;t assume that tools that work great for you scale to other roles.
ipaddr超过 3 年前
The speed of loading an ide first thing, the speed within the and the memory hogging is the biggest reason against an ide.<p>Others reasons matter: - It allows you to be lazier and never learn the actual method names instead remembering two or three characters - Switching editors could leave you lost. Sometimes you have to code in vim, notepad, gedit or a different ide. And without your ide could destory your mental workflow.<p>SublimeText fan.
CraigJPerry超过 3 年前
A single context to do everything. I don’t need to alt-tab away to run a CI job, browse the filesystem, run a shell, run my tests, etc etc its the same keyboard shortcuts, it eliminates the overhead of multiple contexts. I try to exploit features like “run tool” in my Ide so i never need to switch away.
seanmcdirmid超过 3 年前
Auto completion has always worked well as a way to discover methods, not as a way of writing code. It’s like…”so where can I go when I’m here?” without having to pour over a bunch of API docs. No one ever presses the “I’m feeling lucky button” on the auto complete suggestions unless it’s an API they recognize.<p>I get the feeling that co-pilot wasn’t really designed with usability in mind, more like it was just a cool thing that could be done with a large code corpus and good machine learning techniques. If they could redo it as a mechanism for discovery somehow, it would be much more useful. But I’m not sure how to do that here, perhaps ranking completable methods based on a statistical likelihood that the user will want to use them (but then we start hitting Hick’s law where sorting by name is super important).
评论 #30394919 未加载
dmitriid超过 3 年前
All these anti-IDE rants strike me as coming from people who have never actually used an IDE beyond &quot;oh it&#x27;s an editor with an autocomplete&quot;.
评论 #30394374 未加载
评论 #30395364 未加载
评论 #30393378 未加载
EdwardDiego超过 3 年前
&gt; Mark Jason Dominus has an interesting perspective on Java, which he enjoyed: You will not produce anything really brilliant...<p>I&#x27;d argue that there&#x27;s plenty of brilliant things written in Java. And Perl people sneering at Java feels a bit like defensiveness.
killingtime74超过 3 年前
Why stop there, why not go back to punch cards. If there are tools that save time why not use them. We aren’t at University sitting exams anymore
chromanoid超过 3 年前
When the main reason for you to use an IDE is to write code, you are missing out the most important part. An IDE helps you to reason about code, to navigate it, to read it, easily.
4WIW超过 3 年前
What you really get from IDE is higher productivity, based on a sample of few hundred people I&#x27;ve worked with. It won&#x27;t make bad engineers good or vice versa, it would just make everyone more productive.<p>If I were hiring an engineer who claimed not to use IDE on principle, I would be very careful and maybe even suspicious: a craftsman who doesn&#x27;t care about using best tools for the job, may have problems.
hackandtrip超过 3 年前
Refactor functionalities in JetBrains tools probably saved tons of hours of incidents, typo bugs, copy and paste... only that makes IDE Driven Development as completely worthed it.<p>Also, tools such as Tabnine take away the plumbing from coding - I am so much more focused on the high-level design and goal of what I am doing if I don&#x27;t have to pass so much time trying to remember what I wanted to write...
squeaky-clean超过 3 年前
&gt; He didn’t use a IDE, He didn’t get method name suggestions, code completion, and so on. His solutions were completely different, and they were smaller and faster.<p>I&#x27;m confused by this. I&#x27;ve used pretty much every major IDE and ignoring Github Copilot, I&#x27;ve never had one suggest code for me to write or suggest a method name. I&#x27;ve had them do things like find a typo in a method name , or alert me that I&#x27;m calculating a value twice when I could just re-use a variable. Stuff like that. But I don&#x27;t understand how it could suggest a method name for me.<p>The only code completion IDEs give me are things that are rigidly fixed by the syntax of the language. If I start writing &#x27; for (var i&#x27;, it will automatically complete the for loop header and brackets. But it&#x27;s never actually written code inside the loop.<p>I guess I&#x27;ve had Rider suggest ways to convert imperative code to LINQ, but that&#x27;s only after writing the original code.
评论 #30394899 未加载
rendall超过 3 年前
I think the main point of the article, to question whether using an IDE actually improves our work, is valuable to at least ponder, if not just as a way to improve IDEs in future. As an aside, I don&#x27;t think the author steal-manned his argument by using a few illustrative anecdotes, but he&#x27;s not completely wrong, either.<p>My objection to the article is to the sentiment expressed:<p>&gt; <i>&quot;But, a lot of code doesn’t matter because Sturgeon’s Law informs us that 90% of the code is crud. He was talking about science fiction, but it feels true of just about anything. All of that code learning is parroting the bad habits of the 90% crud.&quot;</i><p>I strive for empathy with my colleagues, and I have mostly* won the struggle against harshly judging the code that I read and maintain, and judging the people who wrote it. Judging code can be a terrible distraction that turns programming from a lovely, interesting and fun task into a grind.<p>Is it true that &quot;90% of code is crud&quot;? It is, if you want it to be. Or, perhaps we all as a community and a society are slowly learning how to program, and the best of the code written 5 years ago uses ways and means that we are abandoning. I think specifically of the movement away from Object Oriented programming toward immutability and Functional Programming, which is arguably an overall improvement. Also, the No Blame movement, which assumes that the engineer at the time is making a smart decision given all of the constraints. But we&#x27;re not done, and the code of today will look quaint in 5, 10, 20 years.<p>It helps me to have &quot;warrior mind&quot;, which I interpret to mean that completing a programming task is a mission, and I can feel upset about the circumstances, or I can put all of that aside and help complete the mission (or fail to complete the mission, which happens), without ego or drama.<p>So, I would say, &quot;90% of code is crud&quot; belies an attitude that would benefit from correction. All code contains a lesson.
评论 #30395101 未加载
kcb超过 3 年前
No. IDEs are a tool that makes programming more efficient. If you somehow fail at using that tool it&#x27;s on you.
RcouF1uZ4gsC超过 3 年前
&gt; Since he didn’t have suggestions to guide him, he read the docs and by simply perusing them, was aware of methods and other features that the IDE did not suggest.<p>This post reminded me of the story of Mel.<p><a href="http:&#x2F;&#x2F;catb.org&#x2F;jargon&#x2F;html&#x2F;story-of-mel.html" rel="nofollow">http:&#x2F;&#x2F;catb.org&#x2F;jargon&#x2F;html&#x2F;story-of-mel.html</a><p>So Mel, not only did not use IDEs, he did not use compilers, or even an assembler because they got in his way of deep knowledge of the instruction set of the computer as well as the performance characteristics of the hardware he was programming.<p>Because of that, he was able to achieve program efficiency in both space and time that others could only dream of.<p>The &quot;real programmers&quot; don&#x27;t do X, trope has been going of since before most of the people of this forum were even born.<p>This is just another manifestation of this trope.
评论 #30395029 未加载
galaxyLogic超过 3 年前
An IDE has lots of tools I need to use to get my work done efficiently.<p>Because there are so many tools it is not obvious which tools should I should use when and in which order. And it depends on the context. Should I search for a string globally or in the current file? Or current directory or project? Should I split the code-editor vertically or not, or should I split it horizontally.<p>What I&#x27;m fascinated by is how working with an IDE it feels like I&#x27;m constantly creating a program in my head for myself to execute, to use the tools and functions of the IDE in a given sequence. I am thinking ahead what tasks I need to do and then I do them, in other words I am writing a program in my head for myself to execute.<p>I wonder if people are doing this kind of thing generally, or think of it this way?
999900000999超过 3 年前
&gt;We end up knowing less than we should and get less than we deserve.<p>Speak for yourself.<p>When I program it&#x27;s to get things done, I need to read a text file. Auto complete me a solution.<p>C# would be impossible without an IDE. Maybe you can write something in JavaScript, but any language with a large standard library is impossible sans IDE
jrc2022超过 3 年前
Let&#x27;s all just start writing code on a typewriter...<p>I remember the 90s IDEs. They were not fun. But still better than nothing!<p>Thanks to Copilot, etc bad programmers can now get a lot further, and perhaps it would be good for them to struggle so that they can become better, but don&#x27;t lay bad code at the feet of an IDE.
评论 #30391720 未加载
le-mark超过 3 年前
I feel like this is more of a commentary on dynamic vs statically typed languages under the guise of being about (a poor caricature of) IDEs. Autocomplete for dynamic typed languages has always been a really hard problem, but that’s less than 10% of what an IDE does for you.
e2e4超过 3 年前
I found the following interesting<p>&quot;&quot;&quot; As a postscript, I’ve heard several stories about people who leave Google or Facebook and have a hard doing being productive at the next place. Both of those companies have planetary-scaled systems and the amazing tools to handle that. The next place doesn’t have those tools, and suddenly you have to know how to do things at much lower levels. If you never learned those levels, you are practically starting over and your previous experience isn’t that important. Their tools do their things, not general things, and certainly not someone else’s things. &quot;&quot;&quot;
mikewarot超过 3 年前
I&#x27;ve been using IDEs since Turbo Pascal came out. Delphi 5 was the most productive thing I&#x27;ve ever used for building GUI programs.<p>Python and languages that support lists, dictionaries, etc. natively have an advantage as far as expressivity. Generics and other support in Lazarus, the Delphi clone I use, lag far behind. However, for building GUI programs, it&#x27;s still the best option for me.<p>Something even better for non-gui programs is IDLE, the python REPL... it lets you experiment with the data interactively, the make a program out of it, once you&#x27;ve figured out your algorithm, etc.<p>Better support of REPLs inside the IDE would be the way to go, I think.
jaredcwhite超过 3 年前
There&#x27;s a lot here I resonate with. Ironically, I&#x27;m sort of headed in the opposite direction—I&#x27;ve been spending more effort experimenting with and working with tooling in VSCode to add autocomplete&#x2F;docs&#x2F;type hints&#x2F;etc. for Ruby projects. My background is essentially IDE-free…for years I programmed Ruby and JavaScript using nothing but BBCode!<p>I definitely think there&#x27;s a sweet spot somewhere in the middle here, and industry trends are likely headed too far into IDE-plus-AI-all-the-things! territory. Over time, I think we&#x27;ll come to understand the tradeoffs better.
throwthere超过 3 年前
On the theory level the article talks about I don’t really have a problem with IDEs Not always suggesting the sort of optimal solution so long as it reduces my cognitive load and gets the job done.<p>Regarding copilot, I’d say it guesses the exact code I would write or code that is very similar to it over 50% of the time. My main complaint there is sometimes it oddly miss places a parentheses and sometimes it seems to block the code completion function of VS code. This is with typescript&#x2F;jsx. Other than that which I assume is going to be fixed eventually copilots been a very pleasant experience for me.
deehouie超过 3 年前
Title is totally misleading. I use Rstudio, which is an IDE, and there&#x27;s none of those &quot;terrible&quot; features in Copilet. Does it make my code terrible?
sys_64738超过 3 年前
All these suggestions and options are total distractions to me trying to get work done. It impacts the ability to get work done. I go with the mantra if you’re trying to code your way to a solution then you’re going about it wrong. Write down what you’re trying to do in a few sentences first. If you can’t then how can you code something? This is why code structure suggestions make no sense to me.
908B64B197超过 3 年前
Some schools out there encourage students to do as much as they can with the terminal (at least, for the first semester) and a simple text editor.<p>The side effect is that there’s no IDE magic behind builds (it’s all plain makefiles and command line tools the students can run on their own). There’s no smart completion, so you have to go out and browse man pages or official documentation.
keithnz超过 3 年前
This seems to be about autocomplete &#x2F;github co-pilot rather than IDE&#x27;s which is more of a plugin which I&#x27;m sure nearly every editor will get. I actually really like copilot, I&#x27;ve been using it for a while and it often ends up generating a lot of the code I need. It&#x27;s not perfect, but definitely speeds things up a lot.
jon889超过 3 年前
Just because you’re using an IDE doesn’t mean your should read the documentation, and know what’s available, what’s in the latest versions and what’s coming up. The IDE is just a tool to make typing faster wherever that’s through code completion or refactoring tools.
tiberriver256超过 3 年前
Reminds me somewhat of this old paper on the ironies of automation in factories:<p><a href="https:&#x2F;&#x2F;ckrybus.com&#x2F;static&#x2F;papers&#x2F;Bainbridge_1983_Automatica.pdf" rel="nofollow">https:&#x2F;&#x2F;ckrybus.com&#x2F;static&#x2F;papers&#x2F;Bainbridge_1983_Automatica...</a><p>Automation makes people dumber.
datavirtue超过 3 年前
I get a little bit of sanity when I sit down and realize that my colleagues have written this new system in raw fucking JavaScript. The IDE saves me a few hours each day by renaming and highlighting variables for me. Still lots of cussing and needless flow interruptions but it helps.
amcoastal超过 3 年前
Out of all the world&#x27;s grievances, people who choose something like hating IDEs to pedestal about will always amaze. Humanity is hilarious sometimes.
hackermeows超过 3 年前
I’ve worked in this industry for 10 years . Without ides it would have taken another 10 years to do the things I’ve done with the help of IDEs
Justin_K超过 3 年前
An understandable view of git branches and actions applicable to each
mansoon超过 3 年前
Shared understanding in sharing tools as well as language.
sterlind超过 3 年前
Accessibility. I type by voice and set up my editor to send autocomplete lists to my dictation software. Makes it sooo much easier than speaking the formatting and spelling random nonsense out loud.
rektide超过 3 年前
&gt; <i>How much effort, in the non-mathematical sense, are you willing to expend to discover if there is a lower minimum? Go over the hill to your left and you discover a minimum that is greater than the one you were just in. Go over the hill to the right and you find a lower minimum.</i><p>&gt; <i>This happens in just about anything you can imagine, but let’s consider IDEs. You start using an IDE and it makes one particular thing particularly easy, and it makes it so easy that you don’t go looking for something even easier. You can’t spend all of your time wondering if there’s a slightly better way of doing things.</i><p>This argument resonates fairly well with me. I generally view IDEs as low commitment, a rapid learning curve to completion, with very hard caps on what you are going to find. You&#x27;ll understand what the tool gives you, and then you&#x27;ll be done. There&#x27;s some trading&#x2F;collecting hooks to keep you feeling like you can improve, to collect all the best plugins to improve the base system, but you&#x27;re still a consumer, hunting for solutions, and you never really gain intimacy, understanding, or general prowess, evaluating your gains from a position of general ignorance as to what you&#x27;re really buying&#x2F;using. Being an end-user is being stuck at some minimum, having milked the curve you&#x27;re at, until someone else comes disrupts your world for you. You make no real gains on your own, develop no only superficial mastery, mastering of the pane-of-glass atop the environment you dwell in.<p>It&#x27;s really really hard to make a stronger better pitch for the school of lifelong learning &amp; struggle. Often IDEs are a great way to understand what is possible, what tools to expect, but once you have a baseline, getting back into the command line, the terminal, the console &amp; re-learning the hard way how to re-enact many of the things your IDE does for you is really hard. The learning curve is super slow, it takes ages to get out of the bottom reaches &amp; start to feel ok. But you&#x27;re gaining mastery not just of the programming job, but of the operating system, of the shell, of the real genuine honest environment of computing. Your ability to understand &amp; see what is happening is so much higher, has such a more real connection than the pane-of-glass interface. Your ability to evaluate &amp; direct yourself grows &amp; amplifies over time, only if you invest in yourself &amp; think of yourself as someone seeking a truthful engagement.<p>In general, I feel like the world has a lot of &quot;what is the use case&quot;&#x2F;&quot;what is the business value&quot; thinking, and there&#x27;s kind of an aggressive anti-exploratory value system that hates geekiness, that hates learning, that despises the enrichment of humankind, that rejects possibility. To insist on fast immediate obvious worth is to miss the big picture, is toxic to healthy ecosystems &amp; diversity&#x27;s neandering, exploring many many many tentacles. I want to see a world culture that believes in honest, genuine interactions, not fancy indecypherable veneers of things. Papert&#x27;s Constructivism&#x2F;Constructionism is a spiritual boon, one essential to what humanity became, and we should cherish, protect, &amp; grow this light. <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Constructionism_(learning_theory)" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Constructionism_(learning_theo...</a>
评论 #30392897 未加载
评论 #30392748 未加载
ThinkBeat超过 3 年前
An IDE is a tool developed by developers ot make developing easier. (They may or may not succeed)<p>What environment you want to work in is a personal almost intimate choice for a developer and requires trying and failing quit a few times. Through school and work most will be confronted with a variety of flavors.<p>But when is help&#x2F;assistance too much help&#x2F;assistance?<p>We could all be doing 100% of our programming in Notepad. That is pretty bare bones.<p>Someone developed vi and many found it made them a lot more productive thanks to the built-in features. (Of which people are still adding).<p>Emacs can do nearly anything (might be true of VIM, but I am more of an Emacs guy).<p>Sublime can be very helpful.<p>IntelliJ is huge and can be immensely helpful in its own way.<p>I started out before any of the big graphical IDEs we now think of were around. But Emacs was. (and VI). It was also before the net, so you needed books to learn and use as reference.<p>About 15 years ago I had an assignment at a facility were no internet was available for security reasons. (That is not 100% true but iterating over the finer details would take a lot of text).<p>It was weird to have stacks of books next to me again. I ended up enjoying it. I had a remember a lot more than<p>I had become accustomed to and my flow got better.<p>(Not having the opportunity to dash off to look up a detail really quick on the net).<p>I did not keep it up after I was assigned elsewhere. A really quick lookup on the net is an addictive thing.