Re: Is it impossible? by Anonymous Monk on Dec 24, 2009 at 02:21 UTC |
Its probably related to that bug tye is always talking about, maybe :) | [reply] |
Re: Is it impossible? by moritz (Cardinal) on Dec 24, 2009 at 09:06 UTC |
XP != votes
You don't always get an experience point when somebody upvotes your posts - see Voting/Experience System for more details
Perl 6 - links to (nearly) everything that is Perl 6.
| [reply] |
Re: Is it impossible? by Discipulus (Chaplain) on Dec 24, 2009 at 11:50 UTC |
wlldly inaccurate (hope this spare you some time!).. | [reply] |
Re: Is it impossible? by zentara (Archbishop) on Dec 24, 2009 at 13:01 UTC |
And no. I don't give a flying ..... ....then let it go ..... :-).... maybe this was all a clever plot to aggravate you at Christmas.. :-)
| [reply] |
|
| [reply] |
|
... anything with the word impossible in it, attracts me like a moth to the candle.... :-)..... merry christmas
| [reply] |
Re: Is it impossible? by kyle (Abbot) on Dec 24, 2009 at 18:24 UTC |
I've sometimes seen it happen that I've gotten 1 vote but gained 2 XP. I've noticed this at times that I've kept a close eye on noderep xml ticker. I used to think that what I was seeing was actually 3 votes—2 up and 1 down—which would show as delta 1 vote up but, with some help from rand, wound up being delta 2 XP.
More recently I've decided that the XP calculations are fuzzy. This is just another reason to ignore them. Would it be possible to have the XP Nodelet tell me how many votes I have but not my changes in XP? That would be nice.
| [reply] |
Re: Is it impossible? by vitoco (Pilgrim) on Dec 24, 2009 at 18:39 UTC |
| [reply] |
Re: Is it impossible? by Argel (Prior) on Dec 28, 2009 at 19:36 UTC |
As others have mentioned, voting can affect XP. Which raises the question -- is it still possible given all of the XP changes for someone to make it into the Saints in our Book <update> only by voting (or at least with minimal posting) </update>? I think it was under the old XP system. Anway, XP is used to encourage participation, which includes voting.
Elda Taluta; Sarks Sark; Ark Arks
| [reply] |
|
Yes.
Within the last year (IIRC), I made it into the saints list, so yes, it is possible to make it into the saints list.
| [reply] |
A (related) game! by BrowserUk (Pope) on Dec 29, 2009 at 00:19 UTC |
On the subject of software that lies. I just elected to decompress an NTFS drive. I deselected the "compress this drive" option and clicked "apply". The pop-up progress window tells me "About 39703 days and 4 hrs remaining".
In the time it took to type this response to this point (circa 25 seconds), that figure reduced to "About 39652 days and 0 hrs remaining".
What is your best estimate of how long this process will really take?
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] |
|
What is your best estimate of how long this process will really take?
19398 seconds :)
#!/usr/bin/perl
use strict;
use warnings;
my $first = 39703 * 86400 + 4 * 3600;
my $second = 39652 * 86400;
my $diff = 25;
my $rate = ($first - $second) / $diff;
my $estimated_duration = int($first / $rate);
my $estimated_finish_time = scalar localtime(time + $estimated_duratio
+n);
print "Estimated duration: $estimated_duration seconds\n";
print "Estimated finish time: $estimated_finish_time (if we start now)
+\n";
$ perl buk.pl
Estimated duration: 19398 seconds
Estimated finish time: Tue Dec 29 16:22:14 2009 (if we start now)
| [reply] [d/l] [select] |
|
| [reply] |
|
|
|
|
|
| [reply] |
Re: Is it impossible? by Anonymous Monk on Feb 01, 2010 at 14:30 UTC |
Yeah I doubt anyone will claim the prize as having access to the source code of Perlmonks is extremely hard and therefore your prize is unclaimable. | [reply] |
|
| [reply] |