Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Please offer programming language suggestions

  1. #11
    Join Date
    May 2007
    Location
    Leeds, UK
    Beans
    1,675
    Distro
    Ubuntu

    Re: Please offer programming language suggestions

    I think there are three main arguments for not starting with an IDE:

    1. To better understand the build process so that you are more likely to develop the knowledge to fix problems that arise.
    2. To learn by looking at documentation and typing out the code rather than relying on code completion.
    3. To learn the shell and useful standalone tools like make, maven, bash.

    Taking Java as an example, it is beneficial to understand the process of turning .java files into .class files, where to put the .class files and how to build and incorporate libraries of code in .jar files. With C/C++ it is beneficial to understand compilation, linking, headers and libraries. With Python it is beneficial to understand imports, modules and precompilation. Because an IDE handles a lot of this, new programmers often get lost when they try something beyond the bounds of a tutorial based around an IDE. Or perhaps when they have to handle code that wasn't set up for a specific IDE.

    As far as code completion goes, it depends on the person learning, and perhaps the language. Some people learn better by working methodically and digesting documentation. Others work better by experimentation and filling in details later. An IDE helps with the latter.

    Learning the shell and standalone tools is always a good idea, but using an IDE doesn't necessarily stop you doing that.

    Personally I think there are benefits to doing something without an IDE as part of the learning process. Programmers, particularly those coming from Windows, can get too reliant on the IDE environment and not explore features of the shell and standalone tools. But DaviesX is quite right that IDEs make working with some languages easier. I wouldn't like to work on a large Java or Objective-C project without an IDE because typing things like ClassPathXmlApplicationContext and NSUbiquitousKeyValueStoreDidChangeExternallyNotifi cation is hard work. For C and Python I'm happier without an IDE.

    As long as you reach the end point I don't think the path is important. That means learning the language, how projects fit together and how they are installed. If you choose to use an IDE, just make some effort to understand what it is doing for you and learn to appreciate the power of the command line environment (which is an IDE in itself).
    Please create new threads for new questions.
    Please wrap code in code tags using the '#' button or enter it in your post like this: [code]...[/code].

  2. #12
    Join Date
    Aug 2011
    Beans
    56

    Re: Please offer programming language suggestions

    Language: Scheme

    Book (online version, free, although you can buy a copy):

    http://mitpress.mit.edu/sicp/full-text/book/book.html

    Scheme interpreter:

    http://www.gnu.org/software/mit-scheme/

  3. #13
    Join Date
    Sep 2011
    Beans
    86
    Distro
    Ubuntu

    Re: Please offer programming language suggestions

    Quote Originally Posted by aqualion View Post
    May I ask why not an IDE?
    It hides and automates some processes which are useful to learn. Plus, they only really give an advantage when you start working on decent-sized apps (or for languages like Java which have a ton of boilerplate code and will make you hate life). For the scripts and small programs you'll likely be starting out with, they're just added complexity with no benefit. Use an IDE when you make a GUI app or larger web app...

  4. #14
    Join Date
    Feb 2008
    Beans
    5,078
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Please offer programming language suggestions

    Full Circle Magazine has a long series on Programming in Python, and the series has been extracted into a series of PDFs. Python is a decent choice as a beginning language. I always felt that BASIC on the Commodore 64 was a better entry point, though. fullcirclemagazine.org

    My first programming language was Autocoder on the IBM 1401. If "Autocoder" sounds easy, it was a complete fraud: it was assembly language.

  5. #15
    Moose is offline Gee! These Aren't Roasted!
    Join Date
    Aug 2012
    Location
    Australia
    Beans
    Hidden!
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Please offer programming language suggestions

    Quote Originally Posted by r-senior View Post
    You should begin with the sticky post at the top of the forum. The one entitled "Programming Guides and Basics - Read Me First".

    It's only fair to warn you that, in the entire history of the internet, nobody who has ever asked this question on a programming forum has ever received a simple, unbiased answer that led them to a clear path of enlightenment and discovery.
    Couldn't have explained it better myself.

    It all depends on what sort of apps you want to make.

  6. #16
    Join Date
    Jan 2012
    Beans
    753

    Re: Please offer programming language suggestions

    Quote Originally Posted by aqualion View Post
    May I ask why not an IDE?
    Basically, IDEs are for programmers who are only focusing on efficiency (such as in job setting), not focusing on learning the language. Once you have everything down and you are very proficient (which takes years), you can use an IDE to do things as quickly as possible, because you only have to think about the bare minimum.

    I suppose it's like giving someone an automated spell checker when they're trying to learn a new (human) language. It would be a bad idea to do so because a spell checker assumes you already know it, so it will automatically correct words instead of letting you learn yourself because it thinks you only want to be able to type fast with minimal errors.

  7. #17
    Join Date
    Apr 2008
    Beans
    221

    Re: Please offer programming language suggestions

    Before you do ANYTHING spend 45 minutes to see this:
    http://channel9.msdn.com/posts/C-and...b-Sutter-Why-C

  8. #18
    Join Date
    Apr 2008
    Beans
    221

    Re: Please offer programming language suggestions

    My first programming language was Autocoder on the IBM 1401. If "Autocoder" sounds easy, it was a complete fraud: it was assembly language.
    Hhahaha well who said you can't get the real laugh out of the 'what language is the one that fits all' threads.

  9. #19
    Join Date
    Aug 2011
    Location
    47°9′S 126°43W
    Beans
    2,172
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Please offer programming language suggestions

    Quote Originally Posted by Mikeb85 View Post
    For the scripts and small programs you'll likely be starting out with, they're just added complexity with no benefit.
    I beg to differ... one big advantage of IDEs over plain editors for beginners is that they point out errors while you type... You aren't left trying to guess where you forgot to close quotes or parenthese, assuming you notice this particular error among the 30 or so cascading errors this generated at compile time. For learned programmers this isn't a problem but we tend to forget this is an acquired skill.

  10. #20
    Join Date
    Jun 2006
    Location
    UK
    Beans
    389
    Distro
    Ubuntu

    Re: Please offer programming language suggestions

    I couldn't recommend the MIT opencourseware 6.00 course more. It uses python and is very well taught. If you treat it like a proper course and make your way through from start to finish, watching all the video lectures and doing all the reading and assignments then you will be very well positioned to begin learning more advanced stuff.

    I learnt more doing this one module then I did in an entire year studying computational biology.
    Last edited by edm1; April 4th, 2013 at 10:10 PM.

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •