When I started out programming in Perl, I tended 
to use the examples in books as the basis for new projects.
The new book _Perl:  How to Program_ by Dietal & Dietal has tons
of source material on a wide variety of topics.  For example,
you could fiddle with DBI, MySQL, and Apache on your windows
or linux box and implement a web interface to a MySQL database.
( the book comes with everything you need ).

The code you write there would then form the backbone for
a logging system for any network related programs that you 
write.  I like to create generic tools that can be used 
anywhere and tend to stick them in category_Toolbox.pm

Here is a challenge:  write a generic mySQL database 
interface that:

1) dynamically creates tables in a mySQL database from user
input ( either by editing a file or asking questions...your
choice ).  User input includes the table name, each column 
name, the type for each column, and any associated 
arguments.

	a) make a subroutine that creates a column in the
      	table according to mySQL syntax.  You should keep
      	this simple and do not include all the options.

2) takes a series of data values, maps them to a known table,
and slams them into the database correctly.  It should 
report back to you exactly what it did.

3) allows users to query the database for info.

4) allows db query access by users using any browser.

Add more requirements as you see fit, but I'd keep it simple 
for the first few cuts.  You might want to limit version 0.1
to the requirements 1 and 2.  Once that's working, you can
then add in the user interface.

This is a project that I've had lots of fun messing with and
have working.  It's not big and is really useful.

In reply to Re: Idea Generation for New Programmer by moo
in thread Idea Generation for New Programmer by Tuna

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.