Index  | Recent Threads  | Unanswered Threads  | Who's Active  | Guidelines  | Search
 

Quick Go ยป
No member browsing this thread
Thread Status: Active
Total posts in this thread: 628
Posts: 628   Pages: 63   [ Previous Page | 14 15 16 17 18 19 20 21 22 23 | Next Page ]
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 53650 times and has 627 replies Next Thread
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

Writing a program to play Blackjack in C is driving me off the wall.. I'm really not good at this stuff.


Most folks aren't. You have to think very logically and in very great detail. It's requires a rather particular type of madness to succeed at.

Use a multivalue two dimensional array for the card deck. One value determines which card value to display, the other the point value. Use a random value function to set the deck. The index for the array values in the position in the deck. When card are dealt to the player(s), their hand is just the sum of the values though the dual value of the ace is a bit of extra handling. Sort out all the steps in "English" aka psuedocode and when you have all the details laid out, then you just have to translate it into the C syntax.


I FINISHED!! After 20 hours.. (yes I know I'm slow, not good at this stuff).

On another note..
UC Berkeley was hacked. They lose 97,000 Social Security numbers + other stuff.

Berkeley made a site addressing this: http://datatheft.berkeley.edu/news.shtml


I'm a programmer and I hated programming in C. C++ was even worse because they actually tried to pass that junk off as object oriented programing. I usually program in assembly language (for nice tight procedures) and pascal because it's English.
UC Berkeley needs to have their IT staff fired. That whole mess was their fault. I hope they aren't this country's future computer scientists! It's time to turn off IPv4 and turn on IPv6. At least it can help stupid people not do stupid things.

I've been programming for 37 years now and I never particularly liked C. It has often been called the "language that grades itself". Using C syntax, C++ would then be "D", also a language that grades itself.

The IT staff at UC Berkeley are morons. They should know better than to have sensitive data on a public network. I see nothing has changed since I left Berkeley. The place was run by idiots back then as well.

- D


Can someone explain user defined header files?

I have all my functions and everything in lab4.c
I'm supposed to submit three files -- lab4.c , deck.c , deck.h

What I did was only have my main() in lab4.c and included deck.h. I put all my declarations and functions in deck.h. I don't know what deck.c is supposed to contain?

If anyone has AIM, my AIM is under this post. By the way, it's due at midnight.. crying


I'm probably going to screw this up, but I will try to lite up some old brain cells...
There are library header files, and user header files. Library header files are for the public .C include files.
User header files are for the include files that you write. If you write an include file, it's all full of procedures or functions. You have to declare those, and that's the header file is for.
Sorry if this doesn't help much. My son is bugging me, and I thought I dumped my knowledge of C laughing
OMG - This reminds me of why I hated programming in C


Yea. I know the functions, etc go in the .h files. I don't know what goes in deck.c.
[May 10, 2009 3:18:20 AM]   Link   Report threatening or abusive post: please login first  Go to top 
keithhenry
Ace Cruncher
Senile old farts of the world ....uh.....uh..... nevermind
Joined: Nov 18, 2004
Post Count: 18665
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

Writing a program to play Blackjack in C is driving me off the wall.. I'm really not good at this stuff.


Most folks aren't. You have to think very logically and in very great detail. It's requires a rather particular type of madness to succeed at.

Use a multivalue two dimensional array for the card deck. One value determines which card value to display, the other the point value. Use a random value function to set the deck. The index for the array values in the position in the deck. When card are dealt to the player(s), their hand is just the sum of the values though the dual value of the ace is a bit of extra handling. Sort out all the steps in "English" aka psuedocode and when you have all the details laid out, then you just have to translate it into the C syntax.


I FINISHED!! After 20 hours.. (yes I know I'm slow, not good at this stuff).

On another note..
UC Berkeley was hacked. They lose 97,000 Social Security numbers + other stuff.

Berkeley made a site addressing this: http://datatheft.berkeley.edu/news.shtml


I'm a programmer and I hated programming in C. C++ was even worse because they actually tried to pass that junk off as object oriented programing. I usually program in assembly language (for nice tight procedures) and pascal because it's English.
UC Berkeley needs to have their IT staff fired. That whole mess was their fault. I hope they aren't this country's future computer scientists! It's time to turn off IPv4 and turn on IPv6. At least it can help stupid people not do stupid things.

I've been programming for 37 years now and I never particularly liked C. It has often been called the "language that grades itself". Using C syntax, C++ would then be "D", also a language that grades itself.

The IT staff at UC Berkeley are morons. They should know better than to have sensitive data on a public network. I see nothing has changed since I left Berkeley. The place was run by idiots back then as well.

- D


Can someone explain user defined header files?

I have all my functions and everything in lab4.c
I'm supposed to submit three files -- lab4.c , deck.c , deck.h

What I did was only have my main() in lab4.c and included deck.h. I put all my declarations and functions in deck.h. I don't know what deck.c is supposed to contain?

If anyone has AIM, my AIM is under this post. By the way, it's due at midnight.. crying


I'm probably going to screw this up, but I will try to lite up some old brain cells...
There are library header files, and user header files. Library header files are for the public .C include files.
User header files are for the include files that you write. If you write an include file, it's all full of procedures or functions. You have to declare those, and that's the header file is for.
Sorry if this doesn't help much. My son is bugging me, and I thought I dumped my knowledge of C laughing
OMG - This reminds me of why I hated programming in C


Yea. I know the functions, etc go in the .h files. I don't know what goes in deck.c.


Blizzie, from what I can discern from googling deck.c, it appears the deck of cards goes there and the deck (array) is passed as a parameter to the program. Does that make any sense? Just an educated guess on my part.
----------------------------------------
Join/Website/IMODB



[May 10, 2009 3:40:00 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

I hope you all remember to wish for a Cool Mother's Day for your motherboards (and your moms too for that matter biggrin ).
[May 10, 2009 4:31:22 AM]   Link   Report threatening or abusive post: please login first  Go to top 
darth_vader
Veteran Cruncher
A galaxy far, far away...
Joined: Jul 13, 2005
Post Count: 514
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

Writing a program to play Blackjack in C is driving me off the wall.. I'm really not good at this stuff.


Most folks aren't. You have to think very logically and in very great detail. It's requires a rather particular type of madness to succeed at.

Use a multivalue two dimensional array for the card deck. One value determines which card value to display, the other the point value. Use a random value function to set the deck. The index for the array values in the position in the deck. When card are dealt to the player(s), their hand is just the sum of the values though the dual value of the ace is a bit of extra handling. Sort out all the steps in "English" aka psuedocode and when you have all the details laid out, then you just have to translate it into the C syntax.


I FINISHED!! After 20 hours.. (yes I know I'm slow, not good at this stuff).

On another note..
UC Berkeley was hacked. They lose 97,000 Social Security numbers + other stuff.

Berkeley made a site addressing this: http://datatheft.berkeley.edu/news.shtml


I'm a programmer and I hated programming in C. C++ was even worse because they actually tried to pass that junk off as object oriented programing. I usually program in assembly language (for nice tight procedures) and pascal because it's English.
UC Berkeley needs to have their IT staff fired. That whole mess was their fault. I hope they aren't this country's future computer scientists! It's time to turn off IPv4 and turn on IPv6. At least it can help stupid people not do stupid things.

I've been programming for 37 years now and I never particularly liked C. It has often been called the "language that grades itself". Using C syntax, C++ would then be "D", also a language that grades itself.

The IT staff at UC Berkeley are morons. They should know better than to have sensitive data on a public network. I see nothing has changed since I left Berkeley. The place was run by idiots back then as well.

- D


Can someone explain user defined header files?

I have all my functions and everything in lab4.c
I'm supposed to submit three files -- lab4.c , deck.c , deck.h

What I did was only have my main() in lab4.c and included deck.h. I put all my declarations and functions in deck.h. I don't know what deck.c is supposed to contain?

If anyone has AIM, my AIM is under this post. By the way, it's due at midnight.. crying


I'm probably going to screw this up, but I will try to lite up some old brain cells...
There are library header files, and user header files. Library header files are for the public .C include files.
User header files are for the include files that you write. If you write an include file, it's all full of procedures or functions. You have to declare those, and that's the header file is for.
Sorry if this doesn't help much. My son is bugging me, and I thought I dumped my knowledge of C laughing
OMG - This reminds me of why I hated programming in C


Yea. I know the functions, etc go in the .h files. I don't know what goes in deck.c.


Blizzie, from what I can discern from googling deck.c, it appears the deck of cards goes there and the deck (array) is passed as a parameter to the program. Does that make any sense? Just an educated guess on my part.

I would assume that deck.c would contain the routines that manage the data structure for your card deck. There would probably be an initialize, shuffle and deal card routine. When you run out of cards in the main program, you probably need a routine that will shuffle the cards and also mark the cards for the current hand as unavailable. That, in turn probably begets a routine that marks a card as having been dealt and available for later reuse (so that you don't shuffle the cards in the current hand).

I'm sorry I can't be more C - specific. I haven't touched C in 20 years and I never did use it much.

Obviously, this would be much simpler to do in a single program. I've been quite annoyed over the years that programming classes these days often spell out exactly how they want things to be done. In the old days, you were usually given a spec that described the inputs and outputs (and maybe the algorithm if it was complicated). You were on your own to come up with a good design. Today, I see far too many CS grads that are not capable of this. It's one reason why we tend to hire CS grads with master's degrees these days. Often, that still isn't good enough. In addition, as someone said earlier, there is also a natural talent aspect to programming as well. A well educated programmer is no guarantee of a good programmer.

Sorry for the rant. I think this all ties in with the complaints over the last few days about the constantly evolving and horribly unstable state of BOINC. BOINC is a simple application. It should be flawless by now.

- D
[May 10, 2009 4:38:52 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

Writing a program to play Blackjack in C is driving me off the wall.. I'm really not good at this stuff.


Most folks aren't. You have to think very logically and in very great detail. It's requires a rather particular type of madness to succeed at.

Use a multivalue two dimensional array for the card deck. One value determines which card value to display, the other the point value. Use a random value function to set the deck. The index for the array values in the position in the deck. When card are dealt to the player(s), their hand is just the sum of the values though the dual value of the ace is a bit of extra handling. Sort out all the steps in "English" aka psuedocode and when you have all the details laid out, then you just have to translate it into the C syntax.


I FINISHED!! After 20 hours.. (yes I know I'm slow, not good at this stuff).

On another note..
UC Berkeley was hacked. They lose 97,000 Social Security numbers + other stuff.

Berkeley made a site addressing this: http://datatheft.berkeley.edu/news.shtml


I'm a programmer and I hated programming in C. C++ was even worse because they actually tried to pass that junk off as object oriented programing. I usually program in assembly language (for nice tight procedures) and pascal because it's English.
UC Berkeley needs to have their IT staff fired. That whole mess was their fault. I hope they aren't this country's future computer scientists! It's time to turn off IPv4 and turn on IPv6. At least it can help stupid people not do stupid things.

I've been programming for 37 years now and I never particularly liked C. It has often been called the "language that grades itself". Using C syntax, C++ would then be "D", also a language that grades itself.

The IT staff at UC Berkeley are morons. They should know better than to have sensitive data on a public network. I see nothing has changed since I left Berkeley. The place was run by idiots back then as well.

- D


Can someone explain user defined header files?

I have all my functions and everything in lab4.c
I'm supposed to submit three files -- lab4.c , deck.c , deck.h

What I did was only have my main() in lab4.c and included deck.h. I put all my declarations and functions in deck.h. I don't know what deck.c is supposed to contain?

If anyone has AIM, my AIM is under this post. By the way, it's due at midnight.. crying


I'm probably going to screw this up, but I will try to lite up some old brain cells...
There are library header files, and user header files. Library header files are for the public .C include files.
User header files are for the include files that you write. If you write an include file, it's all full of procedures or functions. You have to declare those, and that's the header file is for.
Sorry if this doesn't help much. My son is bugging me, and I thought I dumped my knowledge of C laughing
OMG - This reminds me of why I hated programming in C


Yea. I know the functions, etc go in the .h files. I don't know what goes in deck.c.


Blizzie, from what I can discern from googling deck.c, it appears the deck of cards goes there and the deck (array) is passed as a parameter to the program. Does that make any sense? Just an educated guess on my part.

I would assume that deck.c would contain the routines that manage the data structure for your card deck. There would probably be an initialize, shuffle and deal card routine. When you run out of cards in the main program, you probably need a routine that will shuffle the cards and also mark the cards for the current hand as unavailable. That, in turn probably begets a routine that marks a card as having been dealt and available for later reuse (so that you don't shuffle the cards in the current hand).

I'm sorry I can't be more C - specific. I haven't touched C in 20 years and I never did use it much.

Obviously, this would be much simpler to do in a single program. I've been quite annoyed over the years that programming classes these days often spell out exactly how they want things to be done. In the old days, you were usually given a spec that described the inputs and outputs (and maybe the algorithm if it was complicated). You were on your own to come up with a good design. Today, I see far too many CS grads that are not capable of this. It's one reason why we tend to hire CS grads with master's degrees these days. Often, that still isn't good enough. In addition, as someone said earlier, there is also a natural talent aspect to programming as well. A well educated programmer is no guarantee of a good programmer.

Sorry for the rant. I think this all ties in with the complaints over the last few days about the constantly evolving and horribly unstable state of BOINC. BOINC is a simple application. It should be flawless by now.

- D



This is a whole 'nother level of nerdiness for the MOT forum.
[May 10, 2009 6:44:21 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

Writing a program to play Blackjack in C is driving me off the wall.. I'm really not good at this stuff.


Most folks aren't. You have to think very logically and in very great detail. It's requires a rather particular type of madness to succeed at.

Use a multivalue two dimensional array for the card deck. One value determines which card value to display, the other the point value. Use a random value function to set the deck. The index for the array values in the position in the deck. When card are dealt to the player(s), their hand is just the sum of the values though the dual value of the ace is a bit of extra handling. Sort out all the steps in "English" aka psuedocode and when you have all the details laid out, then you just have to translate it into the C syntax.


I FINISHED!! After 20 hours.. (yes I know I'm slow, not good at this stuff).

On another note..
UC Berkeley was hacked. They lose 97,000 Social Security numbers + other stuff.

Berkeley made a site addressing this: http://datatheft.berkeley.edu/news.shtml


I'm a programmer and I hated programming in C. C++ was even worse because they actually tried to pass that junk off as object oriented programing. I usually program in assembly language (for nice tight procedures) and pascal because it's English.
UC Berkeley needs to have their IT staff fired. That whole mess was their fault. I hope they aren't this country's future computer scientists! It's time to turn off IPv4 and turn on IPv6. At least it can help stupid people not do stupid things.

I've been programming for 37 years now and I never particularly liked C. It has often been called the "language that grades itself". Using C syntax, C++ would then be "D", also a language that grades itself.

The IT staff at UC Berkeley are morons. They should know better than to have sensitive data on a public network. I see nothing has changed since I left Berkeley. The place was run by idiots back then as well.

- D


Can someone explain user defined header files?

I have all my functions and everything in lab4.c
I'm supposed to submit three files -- lab4.c , deck.c , deck.h

What I did was only have my main() in lab4.c and included deck.h. I put all my declarations and functions in deck.h. I don't know what deck.c is supposed to contain?

If anyone has AIM, my AIM is under this post. By the way, it's due at midnight.. crying


I'm probably going to screw this up, but I will try to lite up some old brain cells...
There are library header files, and user header files. Library header files are for the public .C include files.
User header files are for the include files that you write. If you write an include file, it's all full of procedures or functions. You have to declare those, and that's the header file is for.
Sorry if this doesn't help much. My son is bugging me, and I thought I dumped my knowledge of C laughing
OMG - This reminds me of why I hated programming in C


Yea. I know the functions, etc go in the .h files. I don't know what goes in deck.c.


Blizzie, from what I can discern from googling deck.c, it appears the deck of cards goes there and the deck (array) is passed as a parameter to the program. Does that make any sense? Just an educated guess on my part.

I would assume that deck.c would contain the routines that manage the data structure for your card deck. There would probably be an initialize, shuffle and deal card routine. When you run out of cards in the main program, you probably need a routine that will shuffle the cards and also mark the cards for the current hand as unavailable. That, in turn probably begets a routine that marks a card as having been dealt and available for later reuse (so that you don't shuffle the cards in the current hand).

I'm sorry I can't be more C - specific. I haven't touched C in 20 years and I never did use it much.

Obviously, this would be much simpler to do in a single program. I've been quite annoyed over the years that programming classes these days often spell out exactly how they want things to be done. In the old days, you were usually given a spec that described the inputs and outputs (and maybe the algorithm if it was complicated). You were on your own to come up with a good design. Today, I see far too many CS grads that are not capable of this. It's one reason why we tend to hire CS grads with master's degrees these days. Often, that still isn't good enough. In addition, as someone said earlier, there is also a natural talent aspect to programming as well. A well educated programmer is no guarantee of a good programmer.

Sorry for the rant. I think this all ties in with the complaints over the last few days about the constantly evolving and horribly unstable state of BOINC. BOINC is a simple application. It should be flawless by now.

- D



This is a whole 'nother level of nerdiness for the MOT forum.


laughing laughing laughing
[May 10, 2009 8:24:24 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Dataman
Ace Cruncher
Joined: Nov 16, 2004
Post Count: 4865
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

YoYo News
09 May 2009 Rechnkraft.net e.V. first scientific contribution
Hello,
the registered non-profit association Rechenkraft.net e.V. made a major step ahead and proudly announces a first contribution to a scientific article in one of the major microbiology journals (Molecular Microbiology). As the result of a cooperation project carried out with the work group of Prof. Dr. Umesh Varshney from the Department of Microbiology and Cell Biology at the Indian Institute of Science, Bangalore, India, we just published an article about the Impact of rRNA methylations on ribosome recycling and fidelity of initiation in Escherichia coli. Notably, one of the computer modeling figures computed for this article even made it to the cover image of Molecular Microbiology's May issue.

With this step, the volunteer computing association Rechenkraft.net left its first scientific footprints. We will further proceed to contribute and support world wide distributed and grid computing and, in addition to this, try to generate and evaluate some of the processed results by lab experiments where possible in the future. We are happy about each new member joining our association to support our efforts and, of course, donations are also welcome ;).

Kind regards,
yoyo & Michael.
----------------------------------------


[May 10, 2009 2:00:25 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

YoYo News
09 May 2009 Rechnkraft.net e.V. first scientific contribution
Hello,
the registered non-profit association Rechenkraft.net e.V. made a major step ahead and proudly announces a first contribution to a scientific article in one of the major microbiology journals (Molecular Microbiology). As the result of a cooperation project carried out with the work group of Prof. Dr. Umesh Varshney from the Department of Microbiology and Cell Biology at the Indian Institute of Science, Bangalore, India, we just published an article about the Impact of rRNA methylations on ribosome recycling and fidelity of initiation in Escherichia coli. Notably, one of the computer modeling figures computed for this article even made it to the cover image of Molecular Microbiology's May issue.

With this step, the volunteer computing association Rechenkraft.net left its first scientific footprints. We will further proceed to contribute and support world wide distributed and grid computing and, in addition to this, try to generate and evaluate some of the processed results by lab experiments where possible in the future. We are happy about each new member joining our association to support our efforts and, of course, donations are also welcome ;).

Kind regards,
yoyo & Michael.


Molecular Microbiology? Can you say "safety publication?" Come back next time when American Microbiology Weekly accepts a publication... wink
[May 10, 2009 3:00:40 PM]   Link   Report threatening or abusive post: please login first  Go to top 
keithhenry
Ace Cruncher
Senile old farts of the world ....uh.....uh..... nevermind
Joined: Nov 18, 2004
Post Count: 18665
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

MyOnlineTeam Daily Statistics for 05/10 - All Members:

Team rank movement report
=========================

Prior New Current
Member name Rank Change Rank Points
========================= ===== ====== ===== ===========
SteelDragon 69 -1 70 747,205
NiceMedTexMD 70 +1 69 747,684
bbover3 106 -1 107 360,639
Bravehart 107 +1 106 361,400
WARDSTAR 116 -1 117 284,745
Momentary Lapse of Reason 117 +1 116 285,180
Orakk 138 -1 139 193,448
fubar 139 -1 140 191,503
tychirp 140 -1 141 189,702
Dresser 141 +3 138 193,535
neclord 151 -1 152 149,145
darth_vader 152 +1 151 153,278
Mac586 254 -1 255 13,358
frolic 255 -1 256 13,198
gr8buddha 256 +2 254 13,472
faulkneradmin 262 -1 263 11,243
zzy8671 263 +1 262 11,246
The dark lord of law 277 -1 278 7,000
chervin 278 -1 279 6,932
Charlierox 279 -1 280 6,876
rwgreen89 280 +3 277 7,122

Points milestones report
========================
No points milestones found. sad

Runtime milestones report
=========================
Vuj reached 8 years of runtime applause
elpe reached 2 years of runtime applause

Results returned milestones report
==================================
brown chris returned their 3,000th result applause

New members report
==================
No new members found. sad

Retired members report
======================
No new retired members found. smile

For the week as a team:

Statistics  Total Run Time  Points   Results
Date (y:d:h:m:s) Earned Returned
05/10/2009 0:172:11:44:49 392,683 654
05/09/2009 0:224:11:19:32 505,062 837
05/08/2009 0:207:09:52:33 477,203 787
05/07/2009 0:223:17:46:32 489,621 766
05/06/2009 0:231:06:37:16 518,871 870
05/05/2009 0:207:01:13:46 456,424 809
05/04/2009 0:211:16:00:08 469,850 807


Team Records:
Results Returned: 12/19/2007 2,522
Points: 05/06/2009 518,871
Runtime: 01/25/2006 1:123:00:53:34

Good crunching folks!!!!
----------------------------------------
Join/Website/IMODB



[May 11, 2009 1:28:56 AM]   Link   Report threatening or abusive post: please login first  Go to top 
keithhenry
Ace Cruncher
Senile old farts of the world ....uh.....uh..... nevermind
Joined: Nov 18, 2004
Post Count: 18665
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
smilesmile Join "MyOnlineTeam" Today - Chapter 35 smilesmile

MyOnlineTeam Daily Statistics for 05/10 - Active Members

Active team members report
==========================

Current Points
Active member name Rank Change Points This Period
========================= ===== ====== =========== ===========
marysduby 1 0 29,767,476 9,652
nl59056 2 0 14,886,210 1,904
Dataman 3 0 13,695,850 23,941
parmesian 4 0 12,781,146 8,738
RT 5 0 12,052,803 49,910
Coingames 6 0 10,279,119 32,366
Esteban69 7 0 9,673,612 3,603
Blizzie 8 0 7,732,569 1,643
Dave Bell 9 0 7,475,616 19,331
keithhenry 10 0 6,688,594 14,916
Fanie 11 0 6,397,384 927
Mushball 12 0 5,777,486 26,975
Jonathan Figdor 13 0 5,238,820 2,448
frans6nl 14 0 5,160,628 5,579
PohSoon 15 0 4,775,964 4,504
Graham 16 0 4,641,465 0
sulcata 17 0 3,738,754 5,198
esoteric17 18 0 3,389,353 76,238
stares 19 0 2,920,208 4,213
Vuj 20 0 2,899,191 9,075
Alain Bryden 21 0 2,567,773 0
Tomwp 22 0 2,324,997 1,086
Blueprint 23 0 2,213,648 20,448
lawrencehardin 24 0 2,074,908 1,142
brown chris 25 0 1,895,069 16,688
The Aspens 26 0 1,826,482 14,203
siseberg 27 0 1,678,075 1,009
Wunderwuzzi 28 0 1,588,563 491
wrr 29 0 1,538,621 3,135
smcclarigan 30 0 1,303,068 1,749
Sunny L. Kae 31 0 1,225,448 1,035
AStafford 32 0 972,975 947
johng 33 0 908,376 2,154
NiceMedTexMD 34 0 747,684 3,506
laughing66607 35 0 711,789 0
Jockin 36 0 666,938 0
Airwolf_Liu 37 0 601,154 0
justins505 38 0 573,956 0
elpe 39 0 548,799 1,706
harry_i_c 40 0 487,884 1,358
Bon Kuhlman 41 0 465,674 0
Bravehart 42 0 361,400 2,873
Momentary Lapse of Reason 43 0 285,180 444
imin 44 0 257,162 1,797
mapplebeck 45 0 245,550 0
madambaster 46 0 211,321 0
Dresser 47 0 193,535 6,125
darth_vader 48 0 153,278 4,462
Natalino 49 0 126,284 591
Harry de Swart 50 0 123,943 0
CCH 51 0 83,853 0
WindmillMan76043 52 0 72,409 2,920
imdioxin 53 0 19,327 0
stonechild 54 0 17,269 0
gr8buddha 55 0 13,472 548
zzy8671 56 0 11,246 496
rwgreen89 57 0 7,122 609
Relheok 58 0 2,604 0


Note: Active members are those who earned points in the prior 30 days.

Top Twenty active members returning points today:
01: esoteric17 - 76,238 points
02: RT - 49,910 points
03: Coingames - 32,366 points
04: Mushball - 26,975 points
05: Dataman - 23,941 points
06: Blueprint - 20,448 points
07: Dave Bell - 19,331 points
08: brown chris - 16,688 points
09: keithhenry - 14,916 points
10: The Aspens - 14,203 points
11: marysduby - 9,652 points
12: Vuj - 9,075 points
13: parmesian - 8,738 points
14: Dresser - 6,125 points
15: frans6nl - 5,579 points
16: sulcata - 5,198 points
17: PohSoon - 4,504 points
18: darth_vader - 4,462 points
19: stares - 4,213 points
20: Esteban69 - 3,603 points

Total points returned today: 392,683
Active members returning points today: 44
Average points per member active today: 8,924.61364
----------------------------------------
Join/Website/IMODB



[May 11, 2009 1:29:34 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Posts: 628   Pages: 63   [ Previous Page | 14 15 16 17 18 19 20 21 22 23 | Next Page ]
[ Jump to Last Post ]
Post new Thread