Click here to Skip to main content
15,917,059 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: "Parent message" indicator oddity Pin
OriginalGriff14-Jun-20 11:10
mveOriginalGriff14-Jun-20 11:10 
SuggestionPager arrows looks a bit funny since a while Pin
Jörgen Andersson10-Jun-20 9:36
professionalJörgen Andersson10-Jun-20 9:36 
GeneralRe: Pager arrows looks a bit funny since a while Pin
OriginalGriff10-Jun-20 11:38
mveOriginalGriff10-Jun-20 11:38 
GeneralRe: Pager arrows looks a bit funny since a while Pin
Peter_in_278010-Jun-20 12:56
professionalPeter_in_278010-Jun-20 12:56 
GeneralRe: Pager arrows looks a bit funny since a while Pin
Jörgen Andersson10-Jun-20 19:25
professionalJörgen Andersson10-Jun-20 19:25 
GeneralRe: Pager arrows looks a bit funny since a while Pin
Chris Maunder16-Jun-20 3:43
cofounderChris Maunder16-Jun-20 3:43 
SuggestionArticle series... Pin
Nelek9-Jun-20 20:00
protectorNelek9-Jun-20 20:00 
GeneralRe: Article series... Pin
Matthew Dennis10-Jun-20 4:52
sysadminMatthew Dennis10-Jun-20 4:52 
GeneralRe: Article series... Pin
Nelek10-Jun-20 11:00
protectorNelek10-Jun-20 11:00 
SuggestionUnicode trickery in display names Pin
harold aptroot9-Jun-20 9:14
harold aptroot9-Jun-20 9:14 
GeneralRe: Unicode trickery in display names Pin
Matthew Dennis10-Jun-20 5:00
sysadminMatthew Dennis10-Jun-20 5:00 
GeneralRe: Unicode trickery in display names Pin
Sander Rossel12-Jun-20 4:01
professionalSander Rossel12-Jun-20 4:01 
SuggestionEnhanced Graphics Pin
W Balboos, GHB9-Jun-20 7:33
W Balboos, GHB9-Jun-20 7:33 
GeneralRe: Enhanced Graphics Pin
Chris Maunder9-Jun-20 10:33
cofounderChris Maunder9-Jun-20 10:33 
GeneralRe: Enhanced Graphics Pin
Richard Deeming9-Jun-20 23:07
mveRichard Deeming9-Jun-20 23:07 
GeneralRe: Enhanced Graphics Pin
W Balboos, GHB10-Jun-20 2:02
W Balboos, GHB10-Jun-20 2:02 
GeneralRe: Enhanced Graphics Pin
Richard Deeming10-Jun-20 2:28
mveRichard Deeming10-Jun-20 2:28 
GeneralRe: Enhanced Graphics Pin
Chris Maunder10-Jun-20 7:22
cofounderChris Maunder10-Jun-20 7:22 
GeneralRe: Enhanced Graphics Pin
Sean Ewington10-Jun-20 7:49
staffSean Ewington10-Jun-20 7:49 
JokeRe: Enhanced Graphics Pin
Nelek10-Jun-20 11:01
protectorNelek10-Jun-20 11:01 
SuggestionRecover account Pin
VVizardzz9-Jun-20 5:00
VVizardzz9-Jun-20 5:00 
GeneralRe: Recover account Pin
Sean Ewington9-Jun-20 5:02
staffSean Ewington9-Jun-20 5:02 
SuggestionBabbling idiot detection Pin
Greg Utas9-Jun-20 1:06
professionalGreg Utas9-Jun-20 1:06 
Some bozo is rapidly posting garbage, likely with a bot. See this post[^] by @Nelek. We used to call this a babbling idiot. Ours were often caused by hardware faults, but the term still works quite well here. Big Grin | :-D

We handled this with a leaky bucket counter, which says that n events in s seconds is OK, and anything more is excessive. A bucket has credits (for events) and a timestamp. When an event occurs, the time since the last event adds a pro-rated number of credits to the bucket, up to its maximum of n. The timestamp is then updated to account for any new credits and the count of credits is decremented. If the number of credits drops below zero, the source is considered a babbler and is ignored for a while. If the babbling keeps recurring, the source is ignored for longer or until reenabled by an administrator.

You can use this to limit the number of events that an account can generate. It can even be weighted so that a new post uses more credits than a vote, for example. A limit of 5 events per minute might be reasonable, although this would somewhat hamper those of us who help to purge spammers by flagging the accounts in @phil-o's daily SAOTD post.

GeneralRe: Babbling idiot detection Pin
Chris Maunder10-Jun-20 7:25
cofounderChris Maunder10-Jun-20 7:25 
GeneralRe: Babbling idiot detection Pin
Greg Utas10-Jun-20 7:31
professionalGreg Utas10-Jun-20 7:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: FixedAnsweredCompleted

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.