Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Favorite IDE/Code editor? (http://www.chiefdelphi.com/forums/showthread.php?t=130970)

ratdude747 10-11-2014 17:08

Re: Favorite IDE/Code editor?
 
For me, I use a mix of gedit (I'm a penguin) for writing CLI c code and codevison AVR for writing Atmel AVR C code (for use on arduino boards and other AVR devices).

Back in high school, I mainly used labview for FRC stuff... I didn't really learn text based languages until college (which I use all the time for projects and whatnot).

baumgartensam 10-11-2014 17:27

Re: Favorite IDE/Code editor?
 
I work in a few different editors based on what I'm doing.

Anything config/system related: Vi/Vim (comes on every unix based system) (http://www.cs.colostate.edu/helpdocs/vi.html).

Java: Editor (see below) or NetBeans (FRC) or Eclipse (Professional work)

C++: Editor and Xcode

General: TextMate (http://macromates.com/)

I've also used/know people who have used the following editors:
BBEdit
Sublime
Nano
TextWrangler
Fraise (https://github.com/jfmoy/Fraise)
Adobe Brackets (for html/css work)
Notepad (don't use this one) :) (Please don't use it)
Microsoft Word (I'm not kidding, never use it)

Sparkyshires 14-11-2014 09:17

Re: Favorite IDE/Code editor?
 
Interesting! I've seen a lot of people talking about jetbrains products, I can't believe I never heard of them. CLion looks very cool, can't wait for it to be released.

DavidtheSong 10-12-2014 20:15

Re: Favorite IDE/Code editor?
 
Java: Intellij Idea
^^ There are free educational licenses for this so find a teacher and go get some.

Web: Sublime Text 3
Just "try" out the trial for a while....

These work out fine, but there are different editors for different projects :)

gixxy 11-12-2014 08:52

Re: Favorite IDE/Code editor?
 
IDE: Netbeans
Programming Editor: Sublime Text 2
Plain-Text Editor: Gedit
Config-File Editor: Nano

catacon 11-12-2014 13:41

Re: Favorite IDE/Code editor?
 
Visual Studio, hands down, for C++ and C#. Atmel Studio and Eclipse-based IDEs for embedded things (AVRs, TI chips, Cypress chips, etc.). In Linux, I use Code::Blocks and vim.

indubitably 11-12-2014 15:00

Re: Favorite IDE/Code editor?
 
For general programming and classwork I usually default to Vim, just makes it so easy to actually get started and keep going.

Visual Studio is amazing for graphics, by far my favorite "heavy" IDE.

weaversam8 05-01-2015 12:09

Atom, by GitHub.

byteit101 05-01-2015 13:55

Re: Favorite IDE/Code editor?
 
Quote:

Originally Posted by yash101 (Post 1406802)
I like to use QT Creator for C++. It is simple, yet powerful. It is extremely easy to use and even supports CMakeLists.txt.

Sadly, a lot of the project configuration is manual. It is not hard though.

You either need to make a QMake project file or a CMake project file ;).

The greatest part is that it is cross-platform. I develop my code on Mac (because I like the keyboard) and I compile on my Linux VPS or Laptop!

I have to second this. As someone at WPI who helps write WPILib, I actually did a portion of 2015 WPILib development in QT Creator to try out the new toolchains that I was working on at the time. It is by far the best C++ IDE I’ve used. For anyone else who wants to use CMake, either via QT creator or some other way (command line), the Ubuntu toolchains come with the frcmake package, which have a toolchain definition file along with the `frcmake` binary to automatically call cmake with the toolchain file. If you aren't on Ubuntu, the toolchain file is here: https://bitbucket.org/byteit101/tool...ake?at=default
you can then create a cmake file and invoke cmake with the "-DCMAKE_TOOLCHAIN_FILE=path/to/toolchain/file" option

CodeWhisperer 08-01-2015 16:56

Re: Favorite IDE/Code editor?
 
I didn't read all of the replies so I'm not sure if I'm being original here, but I'm gonna try anyway! There's an awesome cloud-based IDE that I use for my AP Computer Science class and for other various programming projects called Cloud9 (https://c9.io/). It's a full virtual workspace online that can integrate with Github or Bitbucket for login, plus it has a fully functional Ubuntu terminal with sudo and internet access built in. It has a lot of run configurations that will automatically run whatever type of file you're programming (as long as it's a default supported one).

For example if you whip up a quick index.html with a little dinky page and hit run, it'll deploy your page and since you're working in your web browser and your terminal is connected to the internet, it will actually serve your page over the internet and give you a link to preview it.

If C9 doesn't support your preferred language but that language has a toolchain that can run in a linux terminal, you can hotfix to get that to work as well (surprisingly, Java isn't a built-in supported language, but it is installed as a linux terminal command by default, so I made a new run configuration that used javac followed by java consecutively to make my own improvised Java runtime (P.S. if any of you guys want, I can send you details on exactly how I did this)).

Oh, and since it's a web-app and cloud based, it has a collaboration feature almost identical to that of Google Drive where you can invite as many group members as you want and everybody can be working together at once.

thetonio96 08-01-2015 21:56

Re: Favorite IDE/Code editor?
 
I would use IntelliJ as IDE, it's fast and has a good integration with GIT. In the need of just an editor I would use Vim, it's super lightweight and customizable

Team3266Spencer 09-01-2015 21:40

Re: Favorite IDE/Code editor?
 
Quote:

Originally Posted by JCharlton (Post 1406839)
Vim. Its modal system is unlike any other editor I know, but once you get the basics if feels slow to code in anything else.

http://www.vim.org/

Very slow indeed.


All times are GMT -5. The time now is 22:21.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi