Fellow monks,

A friend of mine gave me an idea.. One which I've been have a bit of trouble implementing. Here's the scoop:

use File::Slurp; if ($msg =~ /(.*)\+\+/) { my $user = $1; my $karma_file = "karma.txt"; my $results = grep (/^$user/, $karma_file); print "$results\n"; if ($results == 0) { append_file ($karma_file, "$user 1\n"); print "$user now exists\n"; } else { my @lines = split m[$/], read_file ($karma_file); foreach my $line (@lines) { my ($user, $karma) = split /\s/, $line; $karma++; my @without_user = grep (!/^$user/, $results); overwrite_file ($karma_file, @without_user); append_file ($karma_file, "$user $karma\n"); print "$user now has $karma karma\n"; undef $user; } } } } ); }

As you can probably tell, I'm trying to keep a tally on a users 'xp', denoted by the amount of times they were ++'d. My intent is to check a file for the presence of a user, if the user doesn't exist, create it, and append an 'xp' of 0, and if it does exist, grab the users 'xp', increment it, store it, then grab the data from the file excluding that user, overwrite the file, and write the line back to the file with the users new 'xp'.
Sound confusing?

Any suggestions are welcome :)


In reply to Storing karma by dusk

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.