Results 1 to 10 of 10

Thread: How to get started with linux programming?

  1. #1
    Join Date
    Mar 2008
    Beans
    123

    How to get started with linux programming?

    So i been a Linux user for many years, and im also a software engineer student, i like programming but i have hard time setting goals for my self, so in order to improve my programming skills i want to help the Linux community but i have no idea how to get started.. Can you guys provide me with few tips?

  2. #2
    Join Date
    Sep 2011
    Beans
    615

    Re: How to get started with linux programming?

    Pick any project that appeals to you and go to their website. Volunteer. Any level of ability or set of skills you have there's probably plenty of projects that could give you an appropiate assignment. Just tell then what you want. If you are proficient with some higher level language you might look for projects in which it is used.

  3. #3
    Join Date
    Jan 2010
    Location
    Hyperborea
    Beans
    2,045
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: How to get started with linux programming?

    You could write a tutorial or article and publish it on a blog or perhaps for this magazine http://fullcirclemagazine.org/
    They did a whole series on Python that you can still download from here: http://fullcirclemagazine.org/python...on-volume-six/
    Just change the number in the link to get volumes one to five.

  4. #4
    Join Date
    Mar 2008
    Beans
    123

    Re: How to get started with linux programming?

    Quote Originally Posted by Dreamer Fithp Apprentice View Post
    Pick any project that appeals to you and go to their website. Volunteer. Any level of ability or set of skills you have there's probably plenty of projects that could give you an appropiate assignment. Just tell then what you want. If you are proficient with some higher level language you might look for projects in which it is used.
    ya but how would i know what needs to be fix? can you recommend something easy just to get stared?

  5. #5
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: How to get started with linux programming?

    First of all, are you experienced in tweaking and compiling on your own computer?
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

  6. #6
    Join Date
    Mar 2008
    Beans
    123

    Re: How to get started with linux programming?

    Quote Originally Posted by mörgæs View Post
    First of all, are you experienced in tweaking and compiling on your own computer?
    yup

  7. #7
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: How to get started with linux programming?

    Here's a bug that could be suitable as a first project:
    https://bugs.launchpad.net/ubuntu/+s...w/+bug/1022265
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

  8. #8
    Join Date
    Apr 2014
    Beans
    5

    Re: How to get started with linux programming?

    In the console:

    gcc - C compiler
    g++ - C++ compiler
    java - javac / eclipse / netbeans is supported
    python - python interpreter
    php - php interpreter

    To compile and run a C program
    gcc hello.c -o hello
    ./hello
    To compile and run a C++ program
    g++ hello.cpp -o hello
    ./hello
    Depending on your preference and skills pick the language of choice Get some libraries, for example libsdl and have some fun



    To run python program
    python hello.py
    To run php program
    php hello.php

  9. #9
    Join Date
    Mar 2008
    Beans
    123

    Re: How to get started with linux programming?

    Quote Originally Posted by mörgæs View Post
    Here's a bug that could be suitable as a first project:
    https://bugs.launchpad.net/ubuntu/+s...w/+bug/1022265
    ok how would i start? like where do i get the source code?

    bzr branch lp:ubuntu/gpicview ?

  10. #10
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: How to get started with linux programming?

    I don't code myself (not in Buntu context at least) so I wouldn't know.
    I just thought it looked like a nice, isolated task without a long dependency tree.
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

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
  •