Thread: Newbie

  1. #16
    Hail to the king, baby. Akkernight's Avatar
    Join Date
    Oct 2008
    Location
    Faroe Islands
    Posts
    717
    Well... That can be true, since I DL almost everything I see that looks interesting... But I've only gotten a virus once! An annoying virus that shows itself, that is :P and it wasn't even my fault -.-
    Currently research OpenGL

  2. #17
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    Quote Originally Posted by tabstop
    In Vim? :make.
    In emacs? It's C-c, uh, ..., I forgot the key binding but it's one of those mode commands. (Hey I haven't used emacs in years.)
    Vim and emacs are both IDEs

    Actually, although I say that partially in jest, it is only partially: by definition, if there is integration of various tools in the development environment, it is an integrated development environment.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  3. #18
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by CornedBee View Post
    In my current project at work, it doesn't give me an appropriate suggestion about 95% of the times I'm writing an identifier.
    Well, that is a shame, but if it had worked better, then would have agreed that an IDE is better in that sense, yes?

    Alt+Tab, Up Arrow, Enter. Takes maybe half a second as opposed to the quarter of a second that hitting F7 takes. Considering that what happens next is compilation, which takes 5 seconds at least, you'll forgive me if I dismiss this difference as irrelevant.
    And if you compile 100 times a day, that would make:
    IDE: 100 x 0.25 = 25s.
    Editor: 100 x 0.5 = 50s.

    So that pretty much evens out the time it takes to open the IDE anyway. But the thing is that the editor is not superior in any way over an IDE and because an IDE usually packs other stuff close at hand, it usually better to use an IDE.

    You also have to account for the time that you manually type out that compile command that the IDE does for you automatically even the first time around.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

  4. #19
    Registered User
    Join Date
    Nov 2008
    Posts
    10
    While we are on the subject of CodeBlocks, is it possible to install CB on a pc that is not currently connected to the internet? I'm asking this seeing as I had problems compiling the last time I tried it.

  5. #20
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    I type "make" in half a second.
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

  6. #21
    Hacker MeTh0Dz's Avatar
    Join Date
    Oct 2008
    Posts
    111
    Two reasons that make editors like SciTE and ViM "better" than VS and such are...

    1) First off they are both completely customizable, which means that you can get rid of any and all crap that you don't want (aka features...).

    2) Lightweight (enough said).

  7. #22
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    Quote Originally Posted by MeTh0Dz View Post
    1) First off they are both completely customizable, which means that you can get rid of any and all crap that you don't want (aka features...).
    Which makes 0 sense unless you tie it with the second point...

    2) Lightweight (enough said).
    Which makes no sense either unless you have starved bandwidth when downloading, or scarce on hard drive space, the second being unlikely.

    And this isn't an argument of VS vs. editors; it's about editors VS IDEs.
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. getting to grips with allegro and ms vc++ (newbie)
    By jimjamjahaa in forum C++ Programming
    Replies: 4
    Last Post: 11-18-2005, 07:49 PM
  2. Newbie in problem with looping
    By nrain in forum C Programming
    Replies: 6
    Last Post: 11-05-2005, 12:53 PM
  3. Newbie Programmer
    By Extropian in forum C++ Programming
    Replies: 3
    Last Post: 05-18-2004, 01:17 PM
  4. C++ newbie / linux not so newbie question
    By goldmonkey in forum C++ Programming
    Replies: 7
    Last Post: 12-13-2003, 12:27 PM
  5. Newbie Game Develpoers Unite!
    By Telenosis in forum Game Programming
    Replies: 10
    Last Post: 06-22-2002, 02:02 PM