Go Back   TalkBass Forums > Bass Guitar Forums > Bass Guitar Forums > Off Topic [BG]
Register Rules/FAQ/CUP Members List Search Today's Posts Mark Forums Read

Off Topic [BG] Non-music-related discussion and chat


Supporting Membership
Thank You

Latest Supporting Member
Donate to Upgrade Today

Reply
 
Thread Tools Search this Thread
  #1  
Old 09-02-2010, 04:40 AM
Registered User
 
Join Date: Jul 2009
C++ Builder for Mac/Eclipse Help

Sign in to disble this ad
Random early-ass assistance request...

I have a C programming class and most of the students have Windows laptops, and the teacher is using a program called NetBeans to teach C and C++ building. Problem is, I never could get NetBeans to work on my Macbook, so I got Eclipse. But I have no idea how to work it, since the tutorials from the website are useless and it operates completely differently than NetBeans (what kind of name is NetBeans anyway? And why do I hear Munchkins singing in my apartment?!)

Are there any Eclipse users out there who can tell me at least how to pull up the friggin' console thing to type code into so I don't spend the class period going "a duh dur dum eargh..." like some retarded (no, special needs) rabbit of some sort?

"What, behind the rabbit?"
"It is the rabbit!"

I have to get up in four hours. Choo choo, mammy gumbaroo.
__________________
Quote:
Originally Posted by Ed Friedland View Post
People say a lot of stupid ****.

Last edited by Muaguana : 09-02-2010 at 05:00 AM.
  #2  
Old 09-02-2010, 05:35 AM
Registered User
 
Join Date: Jul 2009
Wait, hold on, wait a minute, hold it, hold up, back it up, forward it back, I SOLVED THE PROBLEM! Crisis has been averted until I figure out a way to screw it up. And I will. Mark my words...
__________________
Quote:
Originally Posted by Ed Friedland View Post
People say a lot of stupid ****.
  #3  
Old 09-02-2010, 08:15 AM
Registered User
 
Join Date: Jun 2005
Location: Lincoln, NE
I'm pretty sure you can do C++ on Xcode.
  #4  
Old 09-02-2010, 08:25 AM
L-A's Avatar
L-A L-A is offline
Registered User
 
Join Date: Jul 2008
Location: Eh?
Supporting Member
^Absolutely.
  • Open XCode.
  • File/New Project...
  • In the "New Project" Assistant, expand the "Command Line Utility" group.
  • Select "C++ Tool"
  • Click "Next"
  • Give a project name and directory, then click "Finish".
  • Press Cmd-Shift-R to open the Console window. Output will appear there.
  • Click the "Build and Go" toolbar button.
__________________
Quote:
Originally Posted by tom once dead View Post
Also to prove my Australianism, I've been stung by an irukandji jellyfish before, while snorkelling at an island looking at stingrays.
  #5  
Old 09-02-2010, 09:00 AM
Banned
 
Join Date: Feb 2004
Location: Omicron Persei 8
Send a message via AIM to karrot-x Send a message via MSN to karrot-x
NetBeans is Java and will work 100% on Mac.
  #6  
Old 09-07-2010, 12:22 AM
Registered User
 
Join Date: Jul 2009
Quote:
Originally Posted by anyonefortennis View Post
I'm pretty sure you can do C++ on Xcode.
I just want to give a huge thanks to you and L-A for the tip. I never got Eclipse to work (something about binaries) but Xcode works like a dream. Thanks a ton!
__________________
Quote:
Originally Posted by Ed Friedland View Post
People say a lot of stupid ****.
  #7  
Old 09-07-2010, 12:28 AM
Registered User
 
Join Date: Mar 2010
Location: Dayton Ohio
Eclipse is a notorious PITA.
__________________
I am your hated enemy,The friend that makes you start again
Just when you thought it was finally the end
  #8  
Old 11-15-2010, 05:49 PM
Registered User
 
Join Date: Mar 2009
Location: Joao Pessoa, Brazil
Send a message via MSN to Marco A. Mayer
I want to learn some programming, and my uncle said it would be nice if I could learn C++.

Can someone here give me tips about tutorials, compilers, etc.?
__________________
Quote:
Originally Posted by macaroni tony View Post
^ knows photoshopped cheeks chaff my willie
Quote:
Originally Posted by 5StringBlues View Post
Make way, or forsooth, thou shalt become my Shergold!
  #9  
Old 11-15-2010, 07:14 PM
Registered User
 
Join Date: Jun 2005
Location: Lincoln, NE
Do you have a windows pc or mac?

C++ gives a good solid CS base but has a steeper learning curve. You can do this on windows or mac using xcode (free) or visual studio ($$)

VB.net or C# are easier to learn if you have a windows pc. You'll need visual studio for this and it's not cheap.

You can download Eclipse and learn Java (and code for say, android). Eclipse also works on both windows and mac.

You can also learn HTML and Javascript (especially using jQuery). You can do this on mac or PC with a ton of free apps or any text editor. Lots of useful things to learn using just plain HTML and js.
  #10  
Old 11-15-2010, 09:26 PM
fdeck's Avatar
Registered User

Maker of HPF-Pre upright bass preamp
 
Join Date: Mar 2004
Location: Madison WI
Supporting Member
AFAIK you can download "express" versions of the Microsoft development tools for free:

http://www.microsoft.com/express/Windows/

In addition, there are boatloads of free programming tools for almost every platform.

My advice: Learn an easier language first. I will probably get rocks thrown at me, but I suggest BASIC. You can download Microsoft Smallbasic for free, and there are other free BASIC programming tools for practically every platform. The Microsoft website includes a nice tutorial:

http://smallbasic.com/

You can always learn C++ later, once you get the hang of general programming concepts. Granted, I learned BASIC 30 years ago, but I still use it. I'm not a professional software developer, but I use programming extensively to solve problems and create simple tools.
__________________
DIY gear articles and HPF-Pre
  #11  
Old 11-16-2010, 03:21 AM
Registered User
 
Join Date: Apr 2006
Location: London, UK
Send a message via MSN to applerocks
Hey,

I actually don't think that learning a language like HTML or BASIC first is going to help you that much. If you want to eventually code in C++ you will need to get used to something called Object Oriented Programming, although some BASIC languages now support this the difficulty level (both syntactically and conceptually) is on a par with Java and almost with C++.

I would recommend Java, it's what most Uni (college) students will learn to code with and it does an excellent job of introducing you to the basics of Object Oriented Programming whilst still keeping things quite simple; you don't have to worry for example about trash collection. Once you've learnt Java it's really easy to switch to C++, you just need to learn a few extra things. There are also a ton of good resources online eg:

http://codingbat.com/
http://www.cems.uwe.ac.uk/~lrlang/ja...sic/index.html (I learnt the basics of java from the worksheets here - I just googled learn to program in Java to find them)

Don't be afraid to have a go at C++ if you want (it's not to dissimilar to Java) you'll be forced to look at some harder concepts early on but you may be able to handle them. Here's an excellent tutorial:

http://www.cprogramming.com/tutorial.html#c++tutorial
__________________
Fender Jazz Bass Club Member #3 Fender MIA Club Member #8 Nachos & Coke Club Member #10
  #12  
Old 11-16-2010, 10:10 AM
Registered User
 
Join Date: Mar 2009
Location: Joao Pessoa, Brazil
Send a message via MSN to Marco A. Mayer
^ just downloaded the CodeBlocks compiler and I'm going to read that tutorial.
__________________
Quote:
Originally Posted by macaroni tony View Post
^ knows photoshopped cheeks chaff my willie
Quote:
Originally Posted by 5StringBlues View Post
Make way, or forsooth, thou shalt become my Shergold!
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Follow TalkBass on Twitter   Visit TalkBass on Facebook  

All times are GMT -6. The time now is 08:19 AM.




Copyright 2011 Talk Music Group Inc. All rights reserved.
Play guitar? Visit our new sister site TalkGuitar.com [beta]
Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.