Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Confused on where to start

Programming languages, Coding, Executables, Package Creation, and Scripting.
Post Reply
Message
Author
ninjaspydr
Posts: 1
Joined: 2007-01-04 20:03

Confused on where to start

#1 Post by ninjaspydr »

Hey everyone,

I have learned a few programming languages. Unfortunately though, they were taught at a community college, where it's monkey see monkey do. I really want to start contributing to open source projects and make my own possibly. The thing is I'm not sure where to start either.

When it comes to open source projects, I'll start to look at one and just get completely overwhelmed and confused by what's going on.

As for making my own programs, I really want to but it seems that any program I could need is already available, or if I have an idea for one I'll study into it and it just seems so complex that I give up.

Any advice on what I can do?

awfulman
Posts: 195
Joined: 2006-12-02 04:31

#2 Post by awfulman »

Did you read a nice article "How to Become a Hacker"?
http://catb.org/~esr/faqs/hacker-howto.html

stream303
Posts: 76
Joined: 2006-12-12 11:38

Re: Confused on where to start

#3 Post by stream303 »

ninjaspydr wrote:As for making my own programs, I really want to but it seems that any program I could need is already available, or if I have an idea for one I'll study into it and it just seems so complex that I give up.

Any advice on what I can do?
Hmmm... you can help open source without actually programming. Helping your fellow user in forums / mailing lists is one way. Perhaps contribute to documentation / update man pages etc.

Have you thought about looking into existing programs and updating them? Off the top of my head, two ncurses-based apps I'd like to see kept updated are the SC spreadsheet and the HNB notebook. Maybe find a cool program you really love, and see if you can help find/fix bugs.

Perhaps shell scripting! Maybe start out with a simple utility-menu with various utilities for those who don't dig the command line, but would be happy behind a shell-script menu system. ex:

1) Show largest file in filesystem
2) Show largest directory in filesystem
3) Quit

Taken further with scripts, link them up with Lynx, wget, curl, etc to find, retrieve, and format information in a way that you like.

I haven't seen a moon-phase script for surfers yet. You get the idea - perhaps your imagination is limiting you from doing something you love if you put a time-frame on it. Relax and let it come to you..

...just some random thoughts ...

Guest

#4 Post by Guest »

Gratzi to both of you. :)

Guess i need to just stop "trying" so hard and just let the creativity take over.

plugwash
Posts: 2507
Joined: 2006-09-17 01:10
Contact:

#5 Post by plugwash »

programming is far more about the mindset of the programmer than the syntax of the language though certain languages are certainly better than others for certain tasks. Unfortunately mindset is something that is very hard to teach through strutured lessons.

one thing with opensource is that much of it is written in C. C is a pretty unfriendly language for the newcomer because it forces you to do a lot of stuff yourself and because the real operation of the program can be obscured by the use of macros etc. Programming in C demands a good understanding of pointers, stack, heap and the issues of managing memory which many newbies find it difficult to aquire (especilly those newbies who started out in scripting languages treating string handling as free and easy).

even for an experianced coder finding your way arround someone elses codebase can take time, even more so for a newbie. Don't let that put you off and feel free to ask here if you are having trouble finding something that you know should be there.

User avatar
garrincha
Posts: 2335
Joined: 2006-06-02 16:38

#6 Post by garrincha »

Hi ninjaspydr, if you want to do learn to do some programming I guess that it all depends on your experience of any form of programming. My only advice is that if you have no experience of it is to start very simple. Beginner going waist deep into C programming is something that I frown upon, I'm speaking as someone who used to do C+ and C++ programming back in the early 1990s, though not anymore. Taking myself as an example, if I tried to go back to C programming today I might get by with some very simple stuffs but will get bogged down with more ever more complicated codes. I don't do programming anymore, if I do it is only for an occasional bit of funs and more as a learning tool.

Anyway, if you like I suggest that you could start by learning Python which is a good object oriented program, very useful in software development and it runs in several systems including Linux. You have Python 2.4 installed as standard in your debian box - so make use of it!

http://www.python.org/
http://awaretek.com/tutorials.html
Maurice Green on Usain Bolt's 9.58: "The Earth stopped for a second, and he went to Mars."

User avatar
_FOCUS_
Posts: 205
Joined: 2006-02-22 18:11

#7 Post by _FOCUS_ »

I had read before how to be a hacker article and I decided to learn python. When I involved it I saw that I can write everything with python if I learn it good. Blender writed in python. Almost every red hat package ( firstly anaconda red hat installer ) writed in python. And this programs can run in many platforms. Mac dos unix and some mobile. But python not stoping at here. I can develop with python web applications. May be you know gmail help pages and some yahoo pages writed in python.

So what I want to do. İf I want to make a program or developing web or scripting. Python ready to work for me. Easy to learn and if you learn it ones it is a way to realise your imagination. I don't know but as if there is no need to learn another more ( :D ) python make me feel so .
If you love something, let it go. If it comes back to you, it's yours. If it's run over by a car, you don't want it.

freda
Posts: 2
Joined: 2007-02-28 06:56

#8 Post by freda »

I have also learned a few programming languages in university, but i am not good at it. Can you give me some advice?


:D

maxamillion
Posts: 3
Joined: 2005-02-10 16:00
Location: Texas

#9 Post by maxamillion »

Find a project you like that you would like to help, join the -devel mailing list for that project and ask what needs doing/how you can help. Just let them know what you are capable of and they will be able to point you in the right direction.

User avatar
javahaxxor
Posts: 151
Joined: 2007-02-10 17:12
Location: Malmoe, Sweden
Contact:

#10 Post by javahaxxor »

start small. keep things simple. write many small scripts, and eventually things will come to you. if not, keep on helping others, and forget about programming
running Debian testing

Post Reply