Thread: Standard Linux/Unix

  1. #1

    Standard Linux/Unix

    When you develop a really good application like Vi or gnu-emacs, how do you get it to be a standard like that? I'm not going to do this, I'm just curious how...
    What will people say if they hear that I'm a Jesus freak?
    What will people do if they find that it's true?
    I don't really care if they label me a Jesus freak, there is no disguising the truth!

    Jesus Freak, D.C. Talk

    -gnu-ehacks

  2. #2
    Registered User
    Join Date
    Sep 2001
    Posts
    16

    re:

    Making the application open source helps. This takes some of the work off the author, and lets others provide feedback and ideas the author may not have thought of. It's also a good way to advertise.

  3. #3
    Registered User biosx's Avatar
    Join Date
    Aug 2001
    Posts
    230
    Some things can help a program get more popular such as:

    • Not re-inventing the wheel
    • Getting the word out
    • Let people look at your code and comment
    • Taking people's comments seriously


    Programs like Vi are stepped up versions of the editor ed and they are friggn old. They are easy to use, portable, and quite useful.

  4. #4
    Registered User
    Join Date
    Oct 2001
    Posts
    197
    Hi!
    If you wanna write a C-program which wonīt use any special features of an OS, you can write it conform to the ANSII-Standard.
    Itīs an exact definiton of C. Itīs e.g. in the newer edition of
    "The C Programming Language" by Kernighan & Ritchie defined.
    Your gcc compiler compiles a program ANSII-conform with "gcc -ansi".
    If you have written a program ANSII-conform, most compilers on nearly every platform can compile it.

    klausi
    When I close my eyes nobody can see me...

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Bug in iterator comparison in C++ standard?
    By steev in forum C++ Programming
    Replies: 14
    Last Post: 07-12-2008, 12:02 AM
  2. Abstract Base Class and References
    By Thantos in forum C++ Programming
    Replies: 9
    Last Post: 10-13-2004, 01:35 PM
  3. im extreamly new help
    By rigo305 in forum C++ Programming
    Replies: 27
    Last Post: 04-23-2004, 11:22 PM
  4. include question
    By Wanted420 in forum C++ Programming
    Replies: 8
    Last Post: 10-17-2003, 03:49 AM
  5. Using c++ standards
    By subdene in forum C++ Programming
    Replies: 4
    Last Post: 06-06-2002, 09:15 AM