LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


View Poll Results: What's your preferred programming environment?
Spiffy IDE - KDevelop, Ajunta, etc. 18 26.47%
A cool editor such as emacs 14 20.59%
xterm & vi 31 45.59%
ed 1 1.47%
Punchcards 4 5.88%
Voters: 68. You may not vote on this poll

Reply
  Search this Thread
Old 10-01-2003, 05:24 PM   #1
meldroc
Member
 
Registered: Aug 2003
Posts: 102

Rep: Reputation: 15
What's your preferred programming environment


That's the question of the day. What kinds of tools do you like when programming? I'm talking about anything from fancy IDEs like KDevelop or Ajunta to cat - >foo.c I've been playing with KDevelop lately, but I'm finding I have to fight with it too much, so I'm considering going back to the good old xterm & vim.

What are your preferences? And why?
 
Old 10-01-2003, 06:01 PM   #2
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Rep: Reputation: 46
vim /nano- can spend time doing what i have to do than how to.

Last edited by h/w; 10-01-2003 at 06:22 PM.
 
Old 10-01-2003, 06:09 PM   #3
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
vi bacause I'm used to it;
 
Old 10-01-2003, 07:17 PM   #4
nakkaya
LQ Guru
 
Registered: Jan 2003
Location: Turkey&USA
Distribution: Emacs and linux is its device driver(Slackware,redhat)
Posts: 1,398

Rep: Reputation: 45
emacs
the one true editor.....
 
Old 10-01-2003, 07:33 PM   #5
meldroc
Member
 
Registered: Aug 2003
Posts: 102

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by nakkaya
emacs
the one true editor.....
Indeed a fine editor - a true IDE before the term IDE was invented. What other editor comes with a Tower of Hanoi puzzle and Eliza?

I'm too lazy to learn it though. Too much Escape-Meta-Alt-Control-Shift.

I'm noticing that so far, nobody's voting for the spiffy IDEs. Maybe simpler is better. I did most of my CS degree coding using an xterm and vi.

Last edited by meldroc; 10-01-2003 at 07:36 PM.
 
Old 10-02-2003, 05:09 AM   #6
aizkorri
Member
 
Registered: Feb 2002
Location: Basque Country
Distribution: Fedora 14, Ubuntu 14.04
Posts: 434
Blog Entries: 1

Rep: Reputation: 55
Quote:
Originally posted by nakkaya
emacs
the one true editor.....
Sure.

Anyway, I've been trying qtdesigner a little bit, just little programs,
what do you people think about it? I mean, using it for bigger projects.
 
Old 10-02-2003, 09:33 AM   #7
frieza
Senior Member
 
Registered: Feb 2002
Location: harvard, il
Distribution: Ubuntu 11.4,DD-WRT micro plus ssh,lfs-6.6,Fedora 15,Fedora 16
Posts: 3,233

Rep: Reputation: 406Reputation: 406Reputation: 406Reputation: 406Reputation: 406
hmm, don't program much, still learning, but i prefer emacs as it has the ability to invoke gcc
 
Old 10-02-2003, 09:58 AM   #8
mfeat
Member
 
Registered: Aug 2003
Location: Akron, OH
Distribution: Fedora Core 3
Posts: 185

Rep: Reputation: 30
"Too much Escape-Meta-Alt-Control-Shift."

A few defines with global-set-key in the .emacs file takes care of that, I have all the frequently used functions defined to F1-F12 and the keypad keys. I've found there's no quicker/easier way to do power-editing, including pulldown menus & icon buttons for functions.
 
Old 10-02-2003, 11:09 AM   #9
vanquisher
Member
 
Registered: Aug 2003
Location: Hyderabad, India
Posts: 126

Rep: Reputation: 15
When I first worked on Linux, the local gurus introduced me to VI and I've been using it ever since(say, 2 years). But now, I'm trying to get comfortable to emacs...The only thing I don't like about emacs is, autosaving feature...creates ~ files and I hate them. Emacs is one true hack and Richard Stallman is the last of the legendary AI Lab Hackers. Hats off to RMS.
 
Old 10-02-2003, 11:21 AM   #10
NSKL
Senior Member
 
Registered: Jan 2002
Location: Rome, Italy ; Novi Sad, Srbija; Brisbane, Australia
Distribution: Ubuntu / ITOS2008
Posts: 1,207

Rep: Reputation: 47
Vim too creates ~ (backup) files unless :set nobackup is specified. I dont use Emacs but i'm 100% sure it has a option to disable saving backups if they bother you..
So yeah, aterm and Vim! (For minimal programming i do that is...)
-NSKL
 
Old 10-02-2003, 12:08 PM   #11
tcaptain
LQ Addict
 
Registered: Jul 2002
Location: Montreal
Distribution: Gentoo 2004 from stage 1 baby!
Posts: 1,403

Rep: Reputation: 45
I've been enjoying playing around in KDevelop a lot in the past couple of months...but for quick and dirty stuff I love using Vim.

As for QT-Designer, its not bad...I'm liking it, but then I'm only toying around with it right now...not doing anything serious.
 
Old 10-02-2003, 02:48 PM   #12
nakkaya
LQ Guru
 
Registered: Jan 2003
Location: Turkey&USA
Distribution: Emacs and linux is its device driver(Slackware,redhat)
Posts: 1,398

Rep: Reputation: 45
Quote:
Originally posted by vanquisher
When I first worked on Linux, the local gurus introduced me to VI and I've been using it ever since(say, 2 years). But now, I'm trying to get comfortable to emacs...The only thing I don't like about emacs is, autosaving feature...creates ~ files and I hate them. Emacs is one true hack and Richard Stallman is the last of the legendary AI Lab Hackers. Hats off to RMS.
you can collect them to a folder under your home like that

;;save everything to a folder
(setq
backup-by-copying t ; don't clobber symlinks
backup-directory-alist
'(("." . "~/.saves")) ; don't litter my fs tree
delete-old-versions t
kept-new-versionhs 6
kept-old-versions 4
version-control t) ; use versioned backups
 
Old 10-02-2003, 03:00 PM   #13
coolman0stress
Member
 
Registered: Jun 2003
Location: Toronto, Ontario, Canada
Posts: 288

Rep: Reputation: 30
I've moved the Windows way and use VS.NET mostly for my C/C++ needs. *shock*

Started using Eclipse and TextPad for Java.
 
Old 10-02-2003, 04:21 PM   #14
speter
Member
 
Registered: Sep 2003
Location: Edison, NJ
Distribution: Fedora, Mac OS X
Posts: 313

Rep: Reputation: 30
When I'm working on GUI code I like a spiffy IDE like Anjuta, but when no GUI is involved, or I'm hacking TeX, I use emacs.

Steve
 
Old 10-02-2003, 05:40 PM   #15
m0rl0ck
Member
 
Registered: Nov 2002
Distribution: A totally 133t distro :)
Posts: 358

Rep: Reputation: 31
Warm tombstone pizza to my left, large glass of coke to my right, camel filters tucked under the right corner of my monitor within easy reach, low intensity ambient lighting.
Alternatly, little debbie fudge rounds and a huge pot of coffee, etc

Ok
vi the preffered editor for *nix:
http://www.tarunz.org/~vassilii/srom/
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Posix programming environment setup jfitzger68 Programming 5 07-22-2005 01:12 PM
programming in fedora environment praveen_singh Linux - Newbie 1 10-15-2004 04:12 AM
programming environment? pablowablo Linux - Newbie 12 04-27-2004 10:34 AM
Programming environment devit Programming 2 02-10-2004 12:15 PM
Would like to setup programming environment in linux? northfield Linux - Newbie 7 08-16-2002 09:32 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 03:18 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration