Page 1 of 1 [ 5 posts ] 

gamefreak
Veteran
Veteran

User avatar

Joined: 30 Dec 2006
Age: 35
Gender: Male
Posts: 1,119
Location: Citrus County, Florida

09 Oct 2009, 11:55 pm

Any really good programming suites suggested!!



Orwell
Veteran
Veteran

User avatar

Joined: 8 Aug 2007
Age: 35
Gender: Male
Posts: 12,518
Location: Room 101

10 Oct 2009, 1:03 am

Do you mean an IDE? The ones in the Debian repos are all disgustingly outdated, so you should get it somewhere else, but Eclipse, NetBeans, and Geany are all fairly popular.

I do my programming with Vim and a compiler. 8)


_________________
WAR IS PEACE
FREEDOM IS SLAVERY
IGNORANCE IS STRENGTH


Fuzzy
Veteran
Veteran

User avatar

Joined: 30 Mar 2006
Age: 52
Gender: Male
Posts: 5,223
Location: Alberta Canada

10 Oct 2009, 4:01 am

Eclipse and code::blocks seem popular, but I too use a text editor and the command line.

I wasnt able to get the new version of Eclipse working because of java issues. That was a couple months ago and the issue should be resolved with ubuntu 9.10, but it no longer matters to me.

In any case, the suites are a poor way to begin programming. You end up having to learn their function at the same time as programming. Its both harder and you can become dependant on it.

What language are you using?


_________________
davidred wrote...
I installed Ubuntu once and it completely destroyed my paying relationship with Microsoft.


gamefreak
Veteran
Veteran

User avatar

Joined: 30 Dec 2006
Age: 35
Gender: Male
Posts: 1,119
Location: Citrus County, Florida

10 Oct 2009, 3:25 pm

Fuzzy wrote:
Eclipse and code::blocks seem popular, but I too use a text editor and the command line.

I wasnt able to get the new version of Eclipse working because of java issues. That was a couple months ago and the issue should be resolved with ubuntu 9.10, but it no longer matters to me.

In any case, the suites are a poor way to begin programming. You end up having to learn their function at the same time as programming. Its both harder and you can become dependant on it.

What language are you using?




Python, I already know a bit of VBS but that was when I was still using Windows as main OS.



Fuzzy
Veteran
Veteran

User avatar

Joined: 30 Mar 2006
Age: 52
Gender: Male
Posts: 5,223
Location: Alberta Canada

10 Oct 2009, 3:59 pm

Python is great. I really like it.

Depending on what you are doing with it, I can suggest the glade designer. Its a gui for creating gtk menus and programs. For making games there is pygame, which is just a library. Also panda3d, soya3d for libraries for 3d games. Freeze, another library, will allow you to make standalone linux executable files(for people without python). There is a py2exe package as well, if you wish to develop for windows.

Currently for an editor I just use the CLI to run the app(tell you how/why in a second) and gedit for editing files.

I installed nautilus-gksu allowing me to right click and open files as admin, and also nautilus-open-terminal, allowing me to right click an open folder and open a terminal at that directory. Both are very useful.

I generally run my python scripts directly, by opening a terminal and typing python application.py rather than relying on the #!/bin env python line in the code. Like in windows, you can use the up arrow key to repeat the last command in terminal, so its pretty easy.

If you are using kate for an editor, it has a faux commandline for running things. Both kate and gedit auto recognise and highlight python syntax. I never was happy with the python suites as they tend to use wx widgets.. much uglier than gnomes gtk.

Throw me a message in chat if you have any deeper questions.


_________________
davidred wrote...
I installed Ubuntu once and it completely destroyed my paying relationship with Microsoft.