The 30 Day "No IDE" Challenge
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
I actually don't use any IDE on my job. vim + windbg + SourceInsight + command-line build system + command-line based SCM system.
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
I don't use a full featured IDE anymore.
Sovereign ingredient for a happy marriage: Pay cash or do without. Interest charges not only eat up a household budget; awareness of debt eats up domestic felicity. --Lazarus Long
-
That point is there in useless unpleasant pointless challenges?
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station.... _________________________________________________________ My programs never have bugs, they just develop random features.
Super Lloyd wrote:
That point is there in useless unpleasant pointless challenges?
It's not as useless as you think--there's a lot to be learned by stripping away some of the things that the IDE does for you, and learning how to do it yourself.
Do you know...LinFu?
-
Super Lloyd wrote:
That point is there in useless unpleasant pointless challenges?
It's not as useless as you think--there's a lot to be learned by stripping away some of the things that the IDE does for you, and learning how to do it yourself.
Do you know...LinFu?
I started with Notepad long ago. I worked with Notepad for a long time. Well not notepad, JFE[^] actually. One day I tried VS, never look back! (also #develop) Why walk when you can fly? You don't want to work without the IDE, nothing to learn here. But maybe you can try to learn how to compile with the command line tool. That would be a more worthy / teaching challenge....
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station.... _________________________________________________________ My programs never have bugs, they just develop random features.
-
I started with Notepad long ago. I worked with Notepad for a long time. Well not notepad, JFE[^] actually. One day I tried VS, never look back! (also #develop) Why walk when you can fly? You don't want to work without the IDE, nothing to learn here. But maybe you can try to learn how to compile with the command line tool. That would be a more worthy / teaching challenge....
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station.... _________________________________________________________ My programs never have bugs, they just develop random features.
Super Lloyd wrote:
I started with Notepad long ago. I worked with Notepad for a long time. Well not notepad, JFE[^] actually. One day I tried VS, never look back! (also #develop) Why walk when you can fly?
You've got a point there--the problem is that I don't have the luxury of using VS2008 in a non-windows environment, and I need to learn how to do without the IDE and learn how to build apps with the command line tool (which is probably going to be nant, in this case). I realize that there are platform-independent IDEs as well, but I want the build process to be consistent despite whatever platform I use.
Do you know...LinFu?
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
You mean everyone hear doesn't do that already? I was under the impression that the sissies used notepad and the real men... Well the real mean use the command line. I gyet ner ideer whuctch yoo beeein dreekin' but if'n yu dunt myind sheerin' I be mutch abliged! ;P
-
A development environment with templates as part of the language? Nice!
Do you know...LinFu?
-
You mean everyone hear doesn't do that already? I was under the impression that the sissies used notepad and the real men... Well the real mean use the command line. I gyet ner ideer whuctch yoo beeein dreekin' but if'n yu dunt myind sheerin' I be mutch abliged! ;P
code-frog wrote:
You mean everyone hear doesn't do that already? I was under the impression that the sissies used notepad and the real men... Well the real mean use the command line. I gyet ner ideer whuctch yoo beeein dreekin' but if'n yu dunt myind sheerin' I be mutch abliged! ;P
Haha :) Real men code in binary, I suppose. After all, it can't be THAT hard now, can't it? :P I mean it's only just a bunch of 1s and 0s...
Do you know...LinFu?
-
Super Lloyd wrote:
I started with Notepad long ago. I worked with Notepad for a long time. Well not notepad, JFE[^] actually. One day I tried VS, never look back! (also #develop) Why walk when you can fly?
You've got a point there--the problem is that I don't have the luxury of using VS2008 in a non-windows environment, and I need to learn how to do without the IDE and learn how to build apps with the command line tool (which is probably going to be nant, in this case). I realize that there are platform-independent IDEs as well, but I want the build process to be consistent despite whatever platform I use.
Do you know...LinFu?
Philip Laureano wrote:
You've got a point there--the problem is that I don't have the luxury of using VS2008 in a non-windows environment, and I need to learn how to do without the IDE and learn how to build apps with the command line tool (which is probably going to be nant, in this case). I realize that there are platform-independent IDEs as well, but I want the build process to be consistent despite whatever platform I use.
MonoDevelop support MsBuild file. csproj are MsBuild file! Solution: work with VS on Windows and #develop / Mono on other platform and maintain your project with MsBuild, it's all good!
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station.... _________________________________________________________ My programs never have bugs, they just develop random features.
-
If I had a decent text editor I wouldn't mind manually typing all of my code. I don't really rely on wizards. The only thing I really get from an IDE besides the incredible features of the modern debugger is the use of intellisense as a spelling tool. Depending on which .NET library you use or which third-party tool you use it is impossible to tell just which naming convention is in use. I can guarantee one thing however, if we all developed with a text editor instead of an IDE that crap called properties would have never been introduced.
Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
Happiness in intelligent people is the rarest thing I know. -- Ernest Hemingway
Most of this sig is for Google, not ego.Ennis Ray Lynch, Jr. wrote:
I can guarantee one thing however, if we all developed with a text editor instead of an IDE that crap called properties would have never been introduced.
What makes you say that? :confused:
Cheers, Vıkram.
"You idiot British surprise me that your generators which grew up after Mid 50s had no brain at all." - Adnan Siddiqi.
-
Ennis Ray Lynch, Jr. wrote:
I can guarantee one thing however, if we all developed with a text editor instead of an IDE that crap called properties would have never been introduced.
What makes you say that? :confused:
Cheers, Vıkram.
"You idiot British surprise me that your generators which grew up after Mid 50s had no brain at all." - Adnan Siddiqi.
Try it for a few weeks and just see how annoying it is to manage methods vs properties.
Need software developed? Offering C# development all over the United States, ERL GLOBAL, Inc is the only call you will have to make.
Happiness in intelligent people is the rarest thing I know. -- Ernest Hemingway
Most of this sig is for Google, not ego. -
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
Gosh. I don't have the desire to! But I know it would probably help my development career! Can I borrow some of your enthusiasm? :) OT: I was looking at LinFu and reading your blog. It's clear you really care about code quality. I'm going to take a serious look at LinFu this weekend.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Feelings-Based Morality of the Secular World The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
Gosh. I don't have the desire to! But I know it would probably help my development career! Can I borrow some of your enthusiasm? :) OT: I was looking at LinFu and reading your blog. It's clear you really care about code quality. I'm going to take a serious look at LinFu this weekend.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Feelings-Based Morality of the Secular World The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
Judah Himango wrote:
Gosh. I don't have the desire to! But I know it would probably help my development career! Can I borrow some of your enthusiasm? Smile OT: I was looking at LinFu and reading your blog. It's clear you really care about code quality. I'm going to take a serious look at LinFu this weekend.
Thanks. :) Take a look at it, and let me know what you think. I'm always open to constructive criticism.
Do you know...LinFu?
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
28 years. Never used an IDE. NOW GET OFF MY LAWN. I won't discount an IDEs usefulness, my situation is such that there isn't one available in the environment I work. How about not using a debugger? Or, if you really want to add to the experience, try limiting yourself to one compile a day. Both of these practices will quickly encourage a defensive style of coding and stress the importance of a solid initial design.
-
28 years. Never used an IDE. NOW GET OFF MY LAWN. I won't discount an IDEs usefulness, my situation is such that there isn't one available in the environment I work. How about not using a debugger? Or, if you really want to add to the experience, try limiting yourself to one compile a day. Both of these practices will quickly encourage a defensive style of coding and stress the importance of a solid initial design.
Interesting. We live in very different worlds! I can see how such practices would lead to a very defensive, careful coding style.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Feelings-Based Morality of the Secular World The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
Judah Himango wrote:
Gosh. I don't have the desire to! But I know it would probably help my development career! Can I borrow some of your enthusiasm? Smile OT: I was looking at LinFu and reading your blog. It's clear you really care about code quality. I'm going to take a serious look at LinFu this weekend.
Thanks. :) Take a look at it, and let me know what you think. I'm always open to constructive criticism.
Do you know...LinFu?
Just browsing the SVN checkout and tinkerin', one thing that comes up right away, a pet peeve of mine , building the solution results in 8 compiler warnings. Most of 'em are easy to fix. Will give you some real feedback as time goes one. Hopefully this weekend I can give it a real spin.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Feelings-Based Morality of the Secular World The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
May we use .bat files, or do we have to memorize the command line options and type them in everytime? :)
- S 50 cups of coffee and you know it's on! A post a day, keeps the white coats away!
-
If you've ever watched this show[^], you've probably seen people depriving themselves from the most common things that they take for granted. Now, aside from your day job, what would happen if you forced yourself to use only command-line build tools (such as NAnt, NUnit, and MSbuild) for your personal projects at home? At the end of thirty days, how would that change the way you write code? Here are the rules: -You cannot use any IDE to build your personal code (that means no VS2008, SharpDevelop, MonoDevelop, or any other IDE out there). "Personal code" is any code that you write as a hobby. * -You *can* use graphical text editors with syntax highlighting, but they CANNOT have any form of Intellisense or code completion. -You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects. *You can, of course, use any tool you wish if it is a work-related task. Everyone here has to make a living, somehow. :) Right now, this idea is just on the drawing board, but I figured that I'd post the basic rules for the challenge to the CP community and see if I can get it refined before I take the challenge myself. Depending on the feedback, I'll either blog about it or put up a series of articles on CP regarding "Kicking the IDE Habit". So what do you guys think? Do the rules seem fair enough? Anyone else want to take the challenge with me?
Do you know...LinFu?
I never used Visual Studio until late 2003, until then I was doing all C on OpenVMS with embedded SQL (Pro*C). (On OpenVMS, I still use EDT.) In college I used Turbo Pascal, Turbo C, and Turbo C++, but I didn't use them on the job. I use EDIT and the command-line compiler (C#) most of the time at home.
C:\WINDOWS>edit /?
MS-DOS Editor Version 2.0.026 Copyright (c) Microsoft Corp 1995.
I wouldn't attempt to write a WinForms application without the designer; but for library and unit test code, even Windows (and Web?) Services, there's no need for Visual Studio.
Philip Laureano wrote:
-You must use either NAnt or MSBuild, or the command line compiler for your favorite language to build your projects.
Are you aware that Visual Studio can be used a command-line tool?
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE>devenv /?
Microsoft (R) Visual Studio Version 9.0.21022.8.
Copyright (C) Microsoft Corp. All rights reserved.Use:
devenv [solutionfile | projectfile | anyfile.ext] [switches] -
Just browsing the SVN checkout and tinkerin', one thing that comes up right away, a pet peeve of mine , building the solution results in 8 compiler warnings. Most of 'em are easy to fix. Will give you some real feedback as time goes one. Hopefully this weekend I can give it a real spin.
Tech, life, family, faith: Give me a visit. I'm currently blogging about: Feelings-Based Morality of the Secular World The apostle Paul, modernly speaking: Epistles of Paul Judah Himango
Judah Himango wrote:
Just browsing the SVN checkout and tinkerin', one thing that comes up right away, a pet peeve of mine , building the solution results in 8 compiler warnings. Most of 'em are easy to fix. Will give you some real feedback as time goes one. Hopefully this weekend I can give it a real spin.
Ahh, well you're probably looking at the trunk branch--that's version 1--my old code. Right now, I'm working on v2 on the stable branch, and the difference between the two versions is anything but subtle. :) V1 was what I call the 'hobbyist' version, and V2 is the product-grade version. Anyway, thanks for taking the time to look at it!
Do you know...LinFu?