Click here to Skip to main content
15,902,445 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

 
SuggestionRe: Is it possible to fix publication date? It depends on the logon state! Pin
Peter_in_27801-Apr-21 16:32
professionalPeter_in_27801-Apr-21 16:32 
AnswerAnother simple experiment? Pin
Sergey Alexandrovich Kryukov1-Apr-21 19:53
mvaSergey Alexandrovich Kryukov1-Apr-21 19:53 
GeneralRe: Another simple experiment? Pin
Peter_in_27801-Apr-21 20:17
professionalPeter_in_27801-Apr-21 20:17 
AnswerRe: Another simple experiment? Pin
Sergey Alexandrovich Kryukov1-Apr-21 20:57
mvaSergey Alexandrovich Kryukov1-Apr-21 20:57 
BugThe "Improve Solution" control, in QA (we're in QA today), when I click it, brings me to the post of the Question poster. Pin
RedDk31-Mar-21 7:15
RedDk31-Mar-21 7:15 
GeneralRe: The "Improve Solution" control, in QA (we're in QA today), when I click it, brings me to the post of the Question poster. Pin
Chris Maunder31-Mar-21 7:23
cofounderChris Maunder31-Mar-21 7:23 
GeneralRe: The "Improve Solution" control, in QA (we're in QA today), when I click it, brings me to the post of the Question poster. Pin
RedDk31-Mar-21 7:25
RedDk31-Mar-21 7:25 
BugMy articles suddenly changed without revision Pin
Patrice T31-Mar-21 5:01
mvePatrice T31-Mar-21 5:01 
Hi,
I see that my articles have been changed without any revision.
- Random tags appeared in tags section.
Integer Factorization: Dreaded List of Primes[^] is now Objective-C, which have never been.
- the 3 drop boxes are not any more.
- The code samples div do not work as it used to: the tab titles were the languages of each pre tag
HTML
<div class="code-samples">
<pre lang="c++">
</pre>

<pre lang="dbase">
</pre>
</div>

Now it says 'Text' and 'Text(2)'

C++
// Trial Division: Brute Force 1
// Check all numbers until Cand - 1
long long TD_BF1(long long Cand) {
    Count = 0;
    long long Top = Cand - 1;
    for (long long Div = 2; Div <= Top; Div++) {
        Count++;
        if (Cand % Div == 0) {
            return Div;
        }
    }
    return Cand;
}


dBase
//  Trial Division Brute Force 1
// May 2019
function TD_BF1(Prod)
    Local D, Top
    Top= Prod-1
    for D= 2 to Top
        if Prod % D = 0
            return D
        endif
    next
    return Prod


Patrice

“Everything should be made as simple as possible, but no simpler.” Albert Einstein

GeneralRe: My articles suddenly changed without revision Pin
Greg Utas31-Mar-21 5:33
professionalGreg Utas31-Mar-21 5:33 
GeneralRe: My articles suddenly changed without revision Pin
Patrice T31-Mar-21 5:41
mvePatrice T31-Mar-21 5:41 
GeneralRe: My articles suddenly changed without revision Pin
Chris Maunder31-Mar-21 6:49
cofounderChris Maunder31-Mar-21 6:49 
GeneralRe: My articles suddenly changed without revision Pin
Patrice T1-Apr-21 23:02
mvePatrice T1-Apr-21 23:02 
GeneralRe: My articles suddenly changed without revision Pin
Chris Maunder2-Apr-21 2:51
cofounderChris Maunder2-Apr-21 2:51 
GeneralRe: My articles suddenly changed without revision Pin
Patrice T2-Apr-21 10:15
mvePatrice T2-Apr-21 10:15 
SuggestionRe: My articles suddenly changed without revision Pin
Patrice T3-Apr-21 5:34
mvePatrice T3-Apr-21 5:34 
GeneralRe: My articles suddenly changed without revision Pin
Chris Maunder12-Apr-21 9:28
cofounderChris Maunder12-Apr-21 9:28 
GeneralRe: My articles suddenly changed without revision Pin
Patrice T12-Apr-21 10:03
mvePatrice T12-Apr-21 10:03 
SuggestionRe: My articles suddenly changed without revision Pin
Greg Utas3-Apr-21 10:58
professionalGreg Utas3-Apr-21 10:58 
GeneralRe: My articles suddenly changed without revision Pin
Chris Maunder5-Apr-21 11:26
cofounderChris Maunder5-Apr-21 11:26 
GeneralRe: My articles suddenly changed without revision Pin
Greg Utas5-Apr-21 12:21
professionalGreg Utas5-Apr-21 12:21 
GeneralRe: My articles suddenly changed without revision Pin
Greg Utas7-Apr-21 3:03
professionalGreg Utas7-Apr-21 3:03 
GeneralRe: My articles suddenly changed without revision Pin
Chris Maunder7-Apr-21 5:26
cofounderChris Maunder7-Apr-21 5:26 
GeneralRe: My articles suddenly changed without revision Pin
Greg Utas9-Apr-21 2:05
professionalGreg Utas9-Apr-21 2:05 
GeneralRe: My articles suddenly changed without revision Pin
Chris Maunder9-Apr-21 8:40
cofounderChris Maunder9-Apr-21 8:40 
SuggestionTimed silence/bans Pin
den2k8830-Mar-21 21:57
professionalden2k8830-Mar-21 21:57 

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

Flags: ClosedFixedAnswered

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