![]() | ||
Views: 24,479,447 |
Home
| Forums
| Uploader
| Wiki
| Object databases
| IRC
Rules/FAQ | Memberlist | Calendar | Stats | Online users | Last posts | Search |
04-25-25 07:36 PM |
Guest: |
0 users reading stupid minor thing | 1 bot |
Main - Site help, bug reports, suggestions - stupid minor thing | Hide post layouts | New reply |
HEYimHeroic |
| ||
![]() Lantern Ghost i'm alice Level: 53 ![]() Posts: 495/770 EXP: 1135007 Next: 22112 Since: 08-04-17 Last post: 449 days ago Last view: 156 days ago |
hiya
found this was a thing maybe just have it so the x posts per day number must not be greater than total number of posts? or something? i dunno. this happened when i viewed the profile of the most recently joined user. ____________________ yeah |
Garhoogin |
| ||
![]() Paratroopa Boots and Cats Level: 25 ![]() Posts: 28/144 EXP: 83844 Next: 5776 Since: 11-14-18 From: Somewhere chilly Last post: 793 days ago Last view: 20 days ago |
My interpretation of it was that it was the average rate at which the user was making posts, but not necessarily the number of posts that a user made. Like a car that drives half a mile in 1 minute is going at an average speed of 2 miles per minute, yet it hasn't moved 2 miles yet. I could be wrong. Hey, why not check out my website while you're here? |
HEYimHeroic |
| ||
![]() Lantern Ghost i'm alice Level: 53 ![]() Posts: 496/770 EXP: 1135007 Next: 22112 Since: 08-04-17 Last post: 449 days ago Last view: 156 days ago |
eh, that works with a car, because it's saying the car is moving at a rate of two miles per minute, but with a user who just joined, not only have they not posted that many posts yet, but they haven't even existed on the board for a day, if that makes sense
like i said, stupid minor thing, not something that really makes any difference whatsoever ____________________ yeah |
Garhoogin |
| ||
![]() Paratroopa Boots and Cats Level: 25 ![]() Posts: 29/144 EXP: 83844 Next: 5776 Since: 11-14-18 From: Somewhere chilly Last post: 793 days ago Last view: 20 days ago |
If the calculation is a simple matter of the number of posts divided by the user's time registered on the forum, then perhaps it can adjust the total days to be always greater than one, or maybe round that number up to get a more "logical" reading. This is just my 2 cents.
Some pseudocode to illustrate my point: float postsPerDay; /* Average posts per day */
The first one being a simple average, the next two to give the more "logical" answer, using 2 different approaches, if you get what I'm trying to put across. Doubt any change will actually happen, but I guess it can't hurt to pitch an idea. int posts; /* Total number of posts */ float days; /* Time registered, measured in days */ postsPerDay = ((float) posts) / days; /* may cause problems if days < 1 */ postsPerDay = ((float) posts) / ((days < 1.0f)? 1.0f: days); /* days having a minimum of 1 in the calculation */ postsPerDay = ((float) posts) / ceil(days); /* round up the days to the next integer */ Hey, why not check out my website while you're here? |
Arisotura |
| ||
![]() Star Mario in this room you have a pile of apple pies Level: 166 ![]() Posts: 8522/9076 EXP: 59150181 Next: 1037505 Since: 07-03-12 From: in a box ![]() Last post: 9 days ago Last view: 22 hours ago |
Main - Site help, bug reports, suggestions - stupid minor thing | Hide post layouts | New reply |
Page rendered in 0.034 seconds. (2048KB of memory used) MySQL - queries: 28, rows: 202/202, time: 0.009 seconds. ![]() © 2005-2008 Acmlm, Xkeeper, blackhole89 et al. |