repository
stringclasses
156 values
issue title
stringlengths
1
1.01k
labels
stringclasses
8 values
body
stringlengths
1
270k
freecodecampfreecodecamp
page not find broken link
Bug
describe the issue in the provide link contribute regularly url doesn t exist page not find affect page step to reproduce go to this url recommend fix or suggestion fix the url or may be remove if url be not present screenshot image
freecodecampfreecodecamp
typo find as in badge for certification porject in mobile app beta
Bug
describe the issue as a beta tester for the mobile app for fcc I notice in the late rwd curriculum there be multiple section for certification project with badge contain typo certification porject should not it be certification project maybe I m wrong thought of highlighting affect page your code nothing here expect behavior a badge with certification project screenshot screenshot 20221204 132237 system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
button that clear search bar input
Help Wanted
be your feature request relate to a problem please describe this be a quality of life request if camper interact with the search bar fill it with their input then want to clear their input they have to select all their text then delete it describe the solution you d like we can add a button in the search bar that clear the search bar for new camper input here be the functionality that I be talk about here be the website if you want to mess with their search bar describe alternative you ve consider this be quality of life it s fine to ignore it if it harm accessibility additional context you may have notice that click the icon in the video doesn t close the keyboard it would be lovely to implement that too but we have to account for accessibility concern as mention in this comment issuecomment 1335724747 accessibility come before implement this
freecodecampfreecodecamp
step 31 of project build a registration form should specify input element must be nest in the label
Bug
describe the issue in step 31 of the learn html form by build a registration form project the step doesn t explicitly say that it want the input element to be nest inside the label element instead it say add a label with the text upload a profile picture and add an input accept a file upload this could be interpret to mean that the input element should be on the right side of the label element only when we attempt this be we tell by the hint you should nest an input element inside the label element to clarify the requirement the step should use the word nest in the exercise as below for eg add a label with the text upload a profile picture and nest an input accept a file upload within it affect page your code expect behavior the step should explicitly state that the input element should be nest within the new label element screenshot no response system not applicable additional context no response
freecodecampfreecodecamp
in the previous step you turn the word link to cat picture into a link by place they between opening and closing anchor a tag you can do the same to word inside of an element such as a p element in the text of your p element turn the word cat photo into a link to by add opening and closing anchor a tag around these word
Invalid
look forward for report a security issue please report security issue by follow our security policy security describe the bug a clear and concise description of what the bug be to reproduce step to reproduce the behavior 1 go to 2 click on 3 scroll down to 4 see error expect behavior a clear and concise description of what you expect to happen screenshot if applicable add screenshot to help explain your problem desktop please complete the follow information os e g ios browser e g chrome safari version e g 22 smartphone please complete the follow information device e g iphone6 os e g ios8 1 browser e g stock browser safari version e g 22 additional context add any other context about the problem here
freecodecampfreecodecamp
infinity loop when auto compile
Bug
describe the issue when I create a parent component after that I create child component a infinity loop when I use parent component in child component and do vice versa I can delete or edit this page by anyway affect page step to reproduce 1 go to 2 edit const typesoffruit return fruit const fruit name return change code below this line change code above this line class typesoffood extend react component constructor prop super prop render return type of food change code below this line change code above this line 4 see error expect behavior I can edit my code editor screenshot no response system browser chrome additional context no response
freecodecampfreecodecamp
trend guide section in footer be not translate in german
Bug
describe the issue upon change the language to german on home page the trend guide section in footer display content in english instead of german affect page step to reproduce 1 go to 2 scroll down to footer 3 see the content under beliebte guide trend guide it be not translate to german expect behavior the content should be display in german language screenshot screenshot 2 system device laptop os win10 browser chrome version 107 0 5304 108 official build 64 bit additional context no response
freecodecampfreecodecamp
break link in forum
Bug
describe the issue hello there be four broken link in the documentation about how to report a bug these be the broken link affect page step to reproduce click on hard refresh ask for help the chat room clear your browser s local storage and search for your issue on github will give a 404 error recommend fix or suggestion can they be update I see on news how to do all the step mention on the forum post but the forum be the first place I go when have issue while learn screenshot no response
freecodecampfreecodecamp
catphotoapp step 4 editor should have a blank line where new comment should go
Bug
describe the issue be puzzle over why so many people see the instruction in step 4 of the cat photo app and ignore the request location of above the p element when add their new comment line of code discuss with jeremylt and he notice that the editor doesn t show an empty line where it expect the code to go usually it do on other step this issue then be to request a blank line be add to the editor for step 4 above the p element line to show where the expect new line of code should be write affect page your code expect behavior editor should display a single blank line above the p element screenshot no response system not applicable additional context example of forum post where learner just doesn t understand how the code can be add above full discussion in the contributor area of the discord channel start point here
freecodecampfreecodecamp
two variable which be same
Bug
describe the issue the issue be in backend development and apis course mongodb and mongoose section challenge create a model in the instruction we be ask to create a model call person from personschema by the code js const person mongoose model person personschema however in the folder boilerplate mongomongoose there be already an empty variable js let person follow the instruction give a bug as the person variable be already declare we have to delete the empty variable in order to continue with the instruction maybe the hint should be correct for the challenge or the variable name in the instruction should be change affect page your code expect behavior we should not get an error after run the code screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
inconsistent stylesheet link method across project in responsive web design 2022 project
Bug
describe the issue it s not a bug but more of a confusing aspect I believe for beginner step 5 building responsive form have the instruction to add a stylesheet via add a link tag with href set to style css step 7 learn css box model have the same instruction but with the href set to style css they be both valid and doesn t result in error but the concept of relative and absolute path haven t be introduce yet all the other challenge seem to follow the href style css notation it would be nice if there be a note regard this or just keep consistent with the other affect page
freecodecampfreecodecamp
typo in how to debug your python code with the python debugger pdb article
Bug
describe the issue one of the paragraph within the article happen to be as follow pdb open the console and wait for the input we type u for up and it return the calling function function2 one the next u command it return function3 the function that call function2 instead it should be as follow pdb open the console and wait for the input we type u for up and it return the calling function function2 on the next u command it return function3 the function that call function2 note the third sentence should start with on and not with one affect page step to reproduce just view the article itself within the browser should be sufficient to reproduce the problem recommend fix or suggestion update the above paragraph as follow should fix the typo pdb open the console and wait for the input we type u for up and it return the calling function function2 on the next u command it return function3 the function that call function2 note the third sentence should start with on and not with one screenshot
freecodecampfreecodecamp
typo in learn nano by build a castle
Bug
describe the issue in step 210 1 exit 2101 currently the instruction say the m at the beginning of the other command at the bottom stand for meta it s a key that doesn t exist on most keyboard if you re on osx it mean press escape then then the letter if you be on another system press alt then the letter use the exit command to get back to the terminal instead of this the instruction should be as follow the m at the beginning of the other command at the bottom stand for meta it s a key that doesn t exist on most keyboard if you re on osx it mean press escape then the letter if you be on another system press alt then the letter use the exit command to get back to the terminal note there s an extra then in the third sentence I e if you re on osx it mean press escape then then the letter in step 230 1 nano castle sh 2301 currently the instruction say that construction team must be work hard open the file again to continue build instead of this the instruction should be as follow that construction team must be work hard open the file again to continue build note there s a miss full stop after within the first sentence affect page 2101 expect behavior in step 210 1 exit 2101 the instruction should be as follow the m at the beginning of the other command at the bottom stand for meta it s a key that doesn t exist on most keyboard if you re on osx it mean press escape then the letter if you be on another system press alt then the letter use the exit command to get back to the terminal in step 230 1 nano castle sh 2301 the instruction should be as follow that construction team must be work hard open the file again to continue build screenshot system device laptop os macos 13 0 1 browser chrome version 107 0 5304 110
freecodecampfreecodecamp
typo in learn sql by build a student database part 1
Bug
describe the issue in step 625 1 delete echo major i d 6251 currently the instruction say look like find an i d that be already in the database twice and insert three new item into the database you don t need to print the i d anymore so delete the echo major i d line instead of this the instruction should be as follow look like it find an i d that be already in the database twice and insert three new item into the database you don t need to print the i d anymore so delete the echo major i d line note there should be an it between like and find within the first sentence I e look like it find affect page 6251 expect behavior in step 625 1 delete echo major i d 6251 the instruction should be as follow look like it find an i d that be already in the database twice and insert three new item into the database you don t need to print the i d anymore so delete the echo major i d line screenshot system device laptop os macos 13 0 1 browser chrome version 107 0 5304 110
freecodecampfreecodecamp
typo
Bug
describe the issue in the last paragraph in the abstraction section there be a small typo of the word abstraction right now its spell abstarction affect page step to reproduce would just have to follow the link and scroll down to the abstraction section and read the last paragraph recommend fix or suggestion locate the file and correct the spelling screenshot
freecodecampfreecodecamp
typo in hash table explain what it be and how to implement it
Bug
describe the issue if you go to this link hash table link and go to some important note about hash table which be right below the first picture in the second list point the mistake be you mush account for potential collision the only problem be that I can not find this article anywhere if someone know where to find it let I know affect page step to reproduce this be not a bug so if you want to see it just go to this link recommend fix or suggestion the only thing need change be mush must screenshot
freecodecampfreecodecamp
typo in css learn css transform by build a penguin
Bug
describe the issue in step 43 increase the psuedo element s transparency by 30 psuedo instead of pseudo affect page step to reproduce just load the page recommend fix or suggestion change for increase the pseudo element s transparency by 30 screenshot image
freecodecampfreecodecamp
reference to comment dictionary give invalid link
Bug
describe the issue 1 any reference to the comment dictionary on the how to work on code challenge how to work on code challenge section of the documentation give an invalid link which send user to curriculum dictionarie english comment js image image 3 example which reference the location of the non english version of the chinese comment dictionary have the wrong path image affect page how to work on code challenge i d formatting seed code step to reproduce 1 go to the how to work on code challenge how to work on code challenge portion of the documentation 2 scroll to format seed code how to work on code challenge i d formatting seed code 3 click on either the comment dictionary curriculum dictionarie english comment js reference or the english version of the comment dictionary curriculum dictionarie english comment js reference in the documentation which lead to an error page recommend fix or suggestion accord to pull request 40844 comment js be no long be use and instead comment json replace comment js 1 replace link of curriculum dictionarie english comment json in the file how to work on code challenge md to 2 change all reference of comment js to comment json screenshot no response
freecodecampfreecodecamp
solution be delete upon successful submission of challenge
Bug
describe the issue work in progress code for a challenge persist indefinitely through signout closing and re open the browser and reboot the computer however as soon as the challenge be complete and submit and go to the next challenge be click the user s solution be delete and replace with the original boilerplate code present at the beginning of the challenge this mean that user can not go back and review past code in order to see how they once solve a challenge or to refactor it and create an improved solution the effect appear to be the same on any challenge affect page step to reproduce 1 go to the challenge page 2 enter an acceptable solution 3 leave and return to verify that the solution have be cache 4 click on run the test follow by submit and go to the next challenge 5 return to the challenge page and see that the solution have be erase the same as if you have click on reset all code expect behavior it be expect that the user s solution should persist after submission screenshot no response system device laptop pc os window 11 browser chrome version 107 0 5304 107 official build 64 bit additional context no response
freecodecampfreecodecamp
the add submit button display submit but the assertion still fail
Bug
describe the issue this step of the accessibility quiz lesson ask the user to add a submit button to their form to finish thing off my button say submit but the assertion still fail and the lesson can not be complete affect page your code html expect behavior I expect the test to pass since my button say submit screenshot the assertion message say the submit button should say submit screen shoot 2022 11 17 at 3 32 18 pm but it do lead to some confusion screen shoot 2022 11 17 at 3 32 32 pm system device laptop os macos 10 15 7 browser brave version 1 45 127 additional context since what be actually display in the button can vary from browser to browser if there s no value property in the input perhaps the hint can specifically state that the value be submit so instead of the submit should display the text submit perhaps this hint may work instead or something similar the value of the submit input should be submit note this also doesn t consider the case of use a element to submit the form
freecodecampfreecodecamp
how to work on the docs theme md should mention that a new doc file require also update the sidebar md
Bug
describe the issue I notice that the doc describe the process for update the doc how to work on the docs theme md doesn t explicitly say that when add a brand new doc file the sidebar md file should be update or evaluate to see if the new file should be list there I m not sure if 100 of new doc file should in fact get add to the sidebar md but I feel it should be mention as a possible area that need to be look at when a person be add a brand new doc file ps about a month ago I create a new doc file for onboarding of mod and the pr be accept and merge but no change be make to the sidebar md because I be unaware of it till just now I now need to go back to modify this file to publish the new doc affect page how to work on the docs theme md step to reproduce n a recommend fix or suggestion update the how to work on the docs theme md to call out the need to evaluate update the sidebar md specifically when create a brand new doc file screenshot no response
freecodecampfreecodecamp
relational database able to pass step 895 1 of build a mario database without set primary key
Bug
describe the issue I pass step with content set your new column as the primary key for this table without set any primary key I have want to see the table I simply display it and the challenge pass affect page your code mario database d more info expect behavior challenge should not pass on display of table but only pass on set the primary key per instruction as you can see primary key be never set on this table image screenshot challenge pass system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
nft
Invalid
describe the issue hi guy I make some nft in visual studio code and I have a big question I rename my file in the folder with number for rarity example colorredbckg 100 or colorbluebckg 50 I make a collection of 159 image because I have unique 159 character for the image everything work fine the rarity of color background color I have between 15 20 color background but my unique 159 character doesn t fill all of they in the generate image what can I do to appear all of they I can rename the file to examplename 1000 or 10000 for a permanent guarantee chance to fill or let the normal name of the file without a number or something else thank you affect page your code node index js expect behavior I hope to solve this small problem screenshot examplenftforum system device laptop lenovo ideapad 510 os window 10 browser chrome version 22 additional context no response
freecodecampfreecodecamp
user can create a random quote machine that pass all test but the new quote button do not get a new quote
Bug
describe the issue user can create a random quote machine that pass all test but the new quote button do not get a new quote see the discussion that contain the project in question and the issue affect page your code the follow be a fork of a user s project that pass all the test but the new quote button do not do anything expect behavior the new quote button should change to a new quote at some point the test be change a while back to allow no new quote to be display what be the point of a random quote machine project if the test can not validate it be a random quote generator screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
css form project
Bug
describe the issue on step 48 instruction say that you should change the display type and the margin of the input textarea and select element then when you submit the test fail because the user didn t change the width of the element to 100 but there be no instruction on do so just think that I should report this small bug affect page your code input textarea select display block margin 10px 0 expect behavior I expect to pass the step because I follow all instruction that be lay out to I screenshot screenshot 2022 11 10 125329 system device dell laptop os window 10 browser microsoft edge version 107 0 1418 35 official build 64 bit additional context no response
freecodecampfreecodecamp
celestial body database tutorial md instruction be not logically organize
Bug
describe the issue when look at the step present to user of the celestial body database course in coderoad I notice that the list of requirement be not order in a way that would be consider logical a person would need to read the whole list in order to re organize it by the require chronology for eg the list currently show the following at the start you should create a database name universe be sure to connect to your database with c universe then you should add table name galaxy star planet and moon then some step later it say your database should have at least five table this instruction should be list immediately after the first two as it inform we of the number of table require another example around the 10th line of instruction show these 3 line each star should have a foreign key that reference one of the row in galaxy each planet should have a foreign key that reference one of the row in star each moon should have a foreign key that reference one of the row in planet then some number of line later the follow be mention each primary key column should follow the name convention table name i d for example the moon table should have a primary key column name moon i d each foreign key column should have the same name as the column it be reference this make many people get confused as they begin work on the list from top to bottom and they wonder why their primary key and foreign key link aren t be accept oh it s because you didn t read all the way down the list and set they up with the expect name we have have some people hit this issue enough to make I investigate why I do believe the reason be that the list have not be organize in a logical way or that it be not make clear that the entire list should be read and consider before attempt to work on the project one more reason to re order the list be relate to how the check be do in order for this step for eg to be mark as do each star should have a foreign key that reference one of the row in galaxy the user must first complete a step list 3 row below this one which say each table should have at least three row people complete the foreign key setup then wonder why there be no checkmark show next to it and it turn out its because they haven t add the row yet an instruction they didn t quite get to yet affect page your code expect behavior I would expect some instruction to warn people that the list be not order and must be read in full in order for the step to be clear or I would re organize the list so it work from top to bottom and a person can read one requirement at a time without have to be fully aware of the detail of the remain step one possible re organization could be subtask you should create a database name universe be sure to connect to your database with c universe then you should add table name galaxy star planet and moon your database should have at least five table each table should have a primary key each primary key should automatically increment each table should have a name column all column name name should be of type varchar each table should have at least three column the galaxy star planet and moon table should each have at least five column at least two column per table should not accept null value at least one column from each table should be require to be unique you should use the int datum type for at least two column that be not a primary or foreign key you should use the numeric datum type at least once you should use the text datum type at least once you should use the boolean datum type on at least two column each table should have at least three row each star should have a foreign key that reference one of the row in galaxy each planet should have a foreign key that reference one of the row in star each moon should have a foreign key that reference one of the row in planet each foreign key column should have the same name as the column it be reference the galaxy and star table should each have at least six row the planet table should have at least 12 row the moon table should have at least 20 row screenshot no response system n a additional context some forum question that relate to the confusion cause by the order include and more
freecodecampfreecodecamp
css penguin step 75 the change be not visible on some browser
Bug
describe the issue the instruction start with if you look closely the heart emoji be slightly different I can see the purple heart have become slightly big in firefox however I can t see the difference in chrome or edge affect page your code shirt font bold 25px helvetica san serif shirt div font weight initial expect behavior we can change the first sentence to in some browser the heart emoji may look slightly large I change different to large so that camper don t have to spend too much time look for the difference and the last sentence to to make it consistent on different browser target the div with the heart emoji and set its font weight to its original value screenshot system device laptop os window 10 browser chrome ver 107 0 5304 106 edge ver 107 0 1418 35 firefox ver 106 0 5 additional context no response
freecodecampfreecodecamp
there be two condition but both be the same
Help Wanted
describe the issue in the back end development and apis course in challenge get query parameter input from the client challenge number 10 there be two condition to pass the test which be your api endpoint should respond with the correct name this condition be write two time so this be a user interface issue affect page step to reproduce expect behavior the condition should only be write one time screenshot basic node and express get query parameter input from the client learn freecodecamp org google chrome 08 11 2022 22 13 44 system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
update doc to describe new structure of language and superblock
Bug
describe the issue this pr be merge and it change the way the language and superblock be configure in the codebase the documentation need to be update still to reflect the new change affect page
freecodecampfreecodecamp
report a thread test on the anonymous message board project for the information security certification send incorrect field name in request
Bug
describe the issue when freecodecamp run the follow test for the anonymous message board project that be a part of the information security certification curriculum you can send a put request to api thread board and pass along the thread i d return will be the string report the report value of the thread i d will be change to true the body of the request be the follow json report i d 6369df3b1aac5eb1e7f53991 however the test be write in such a way that you d expect to write your controller method for this route to be expect the request to contain form datum with the field thread i d for example here be the controller method I initially write for this endpoint js static reportthreadbyid async req re let thread i d req body const thread await threadservice getthreadbyid thread i d if thread null return re status 400 json error thread with i d thread i d not find thread report true await thread save return re status 200 type text send report however while this work for the mock front end in the project and pass my own functional test it will always fail the test that freecodecamp be run because when that request be receive the thread i d value will be undefine in order to pass the freecodecamp test I have to amend this method to account for the possibility of the thread i d value be identify with a field call report i d like the follow js static reportthreadbyid async req re let thread i d report i d req body thread i d thread i d report i d const thread await threadservice getthreadbyid thread i d if thread null return re status 400 json error thread with i d thread i d not find thread report true await thread save return re status 200 type text send report I believe freecodecamp s test should be update to send a request use a thread i d field instead of a report i d field affect page your code please note the follow code fail the test js static reportthreadbyid async req re let thread i d req body const thread await threadservice getthreadbyid thread i d if thread null return re status 400 json error thread with i d thread i d not find thread report true await thread save return re status 200 type text send report while this code will pass the test js static reportthreadbyid async req re let thread i d report i d req body thread i d thread i d report i d const thread await threadservice getthreadbyid thread i d if thread null return re status 400 json error thread with i d thread i d not find thread report true await thread save return re status 200 type text send report expect behavior give the description of the test on the page I would expect freecodecamp to test the endpoint with a request that contain the field thread i d and not report i d screenshot test fail image request image request body image request response image system device lenovo legion 7 os window 11 browser firefox version 106 0 5 additional context no response
freecodecampfreecodecamp
early challenge be not test
Bug
describe the issue the issue when we do the challenge in the backend development and apis course our early challenge be not be test for example when I do the fourth challenge even if I remove the code from challenge 1 that I write we can still proceed to the next challenge affect page step to reproduce 1 go to the replit code 2 remove the code from challenge 1 2 and 3 3 click on run 4 paste the link on the solution input box 5 see that you can still proceed expect behavior we should not be able to proceed unless all the code from the past challenge be present screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context I do not know how to fix this issue someone else should fix this no response
freecodecampfreecodecamp
say question isn t what code chanllenge accept
Bug
describe the issue in the follow data structure the question be a food object have be create with three entry use the syntax of your choice add three more entry to it banana with a value of 13 grape with a value of 35 and strawberry with a value of 27 notice the line use the syntax of your choice but when I do food strawberry 27 it doesn t pass but it be use the syntax of my choice I try mix and match and also just with bracket syntax but it didn t work affect page your code food banana 13 food grape 35 food strawberry 27 expect behavior even with syntax of my choice be it or dot notation I except it to work and pass screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
possibe error in code example
Bug
describe the issue the example show const thirdletter alpha 2 below that the snippet of text say that alpha 2 should be y thirdletter be the string y lastletter be the string c and valuelookup be the string y affect page js const alpha 1 z 2 y thirdletter 3 x 4 w 24 c lastletter 25 b 26 a const thirdletter alpha 2 const lastletter alpha 24 const value 2 const valuelookup alpha value the snippet have the below explanation in the instruction markdown thirdletter be the string y lastletter be the string c and valuelookup be the string y expect behavior I believe correct the const thirdletter to secondletter could be less confusing
freecodecampfreecodecamp
number guess game pass validation
Bug
describe the issue the test 1 1 7 through 13 be look for I to print certain statement which I be do but it do not pass affect page your code expect behavior I would expect the enter your username test to pass but it s not even when it s the first line my program print read a username and query against my table with say username screenshot number guess game system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
error be not log into the fcc editor console
Bug
describe the issue hello everyone this code pass the test when it should not because I use different name in the argument and the statement of the function then whateverstre document getelementbyid message innerhtml json stringify completelydifferentstre with this code test don t fail but the button get message do nothing when press it should probably return an error message like completelydifferentstre be not define and should not pass the test affect page your code cat photo finder the message will go here get message expect behavior use different name for the argument in the second then should return an error then whateverstre document getelementbyid message innerhtml json stringify completelydifferentstre error completelydifferentstre be not define test should only pass if the name match like so then whateverstre document getelementbyid message innerhtml json stringify whateverstre screenshot no response system device pc os manjaro 22 0 0 browser librewolf version 98 0 2 64 bit additional context no response
freecodecampfreecodecamp
make definition concise
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
preview external window disappear when move to the next challenge
Bug
describe the issue I have two screen I use one to keep the editor open and one to keep the preview window when I click on the submit and go to the next challenge button the preview window disappear I have to re open it in a separate window and re move it to the second screen affect page step to reproduce 1 open a step of the new responsive web design curriculum 2 click on the button to open the preview in a second window top right next to the preview button 3 complete the step click on check your code and then on submit and go to the next challenge 4 the preview window close expect behavior the preview window should stay open contain the preview of the next step screenshot no response system device laptop os ubuntu 22 04 browser chrome version 106 additional context this may be relate to
freecodecampfreecodecamp
sudoku solver example program accept invalid sudoku puzzle
Bug
describe the issue the example sudoku solver accept erroneous input and produce an incorrect solution rather than reject it affect page your code input the following and click solve 99 5 1 85 4 2432 1 69 83 9 6 62 71 9 1945 4 37 4 3 6 expect behavior it should produce the follow json response error puzzle can not be solve screenshot this be what the erroneous result look like sudoku the solution include an invalid row column and region system device laptop os window 11 browser chrome version 106 0 5249 119 additional context no response
freecodecampfreecodecamp
test for remove an element from a max heap challenge passable with incorrect solution
Bug
describe the issue the issue be with the test of the code interview prep datum structure remove an element from a max heap challenge this time the test be passable with a remove method that doesn t have a return value or have a fix return value affect page your code const this remove or const this remove return 1 expect behavior the test should fail because of the incorrect remove method screenshot no response system device laptop os window 10 browser chrome version version 104 0 64 bit additional context no response
freecodecampfreecodecamp
learn relational database by build a mario database typo in hint
Bug
describe the issue write issue in the hint affect page your code look at the screeenshot expect behavior rename creat table table name into create table table name screenshot image system device window pc os window 11 browser chrome version 22 additional context no response
freecodecampfreecodecamp
fix curriculum minor typo correction detect by web crawler
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod find typo in this repository and make suggestion to correct note this be detect by the open source web crawler project spencerlepine open source crawler
freecodecampfreecodecamp
link to an external site in advanced node and express section
Help Wanted
we have an external link in the below paragraph which link to this page obtain your client i d and secret from github be do in your account profile setting under developer setting then oauth application click register a new application name your app paste in the url to your replit homepage not the project code s url and lastly for the callback url paste in the same url as the homepage but with auth github callback add on this be where user will be redirect for we to handle after authenticate on github save the return information as github client i d and github client secret in your env file here be the file ideally the camper doesn t need to use external doc to pass the current step but this may not be possible with a little info we be give to sort this issue we need to create an article about how to set up oauth application like this one but with way to sort it use github clientid and secret or we can change the context from use github to use google
freecodecampfreecodecamp
remove replit and replit nix file from boilerplate repos
Help Wanted
one of the replit devs mention that they re make a lot of change on their end and recommend that we remove the replit and replit nix file from our boilerplate repos whenever possible we should be able to do this in most of the boilerplate repos without issue there may be a couple of exception though like with the rust in replit project boilerplate for that project there be some command that need to run when the project be import the recommendation for repos that need special command be to leave the replit and replit nix file in the repo but to make sure the only difference between they and the autogenerate replit and replit nix file be the command that need to run here s a list of the project boilerplate that should be update please let I know if I miss any remove replit and replit nix file back end development and apis practice project x managing package with npm boilerplate repo prs boilerplate learn description x basic node and express boilerplate repo prs boilerplate learn description x mongodb and mongoose boilerplate repo prs boilerplate learn description require project x timestamp microservice boilerplate repo prs boilerplate learn description x request header parser microservice boilerplate repo prs boilerplate learn description x url shortener microservice boilerplate repo prs boilerplate learn description x exercise tracker boilerplate repo prs boilerplate learn description x file metadata microservice boilerplate repo prs boilerplate learn description quality assurance practice project x quality assurance and testing with chai boilerplate repo prs boilerplate learn description x advanced node and express boilerplate repo prs boilerplate learn description require project x metric imperial converter boilerplate repo prs boilerplate learn description x issue tracker boilerplate repo prs boilerplate learn description x personal library boilerplate repo prs boilerplate learn description x sudoku solver boilerplate repo prs boilerplate learn description x american british translator boilerplate repo prs boilerplate learn description scientific computing with python require project x arithmetic formatter boilerplate repo prs boilerplate learn description x time calculator boilerplate repo prs boilerplate learn description x budget app boilerplate repo prs boilerplate learn description x polygon area calculator boilerplate repo prs boilerplate learn description x probability calculator boilerplate repo prs boilerplate learn description datum analysis with python require project x mean variance standard deviation calculator boilerplate repo prs boilerplate learn description x demographic data analyzer boilerplate repo prs boilerplate learn description x medical datum visualizer boilerplate repo prs boilerplate learn description x page view time series visualizer boilerplate repo prs boilerplate learn description x sea level predictor boilerplate repo prs boilerplate learn description information security practice project x information security with helmetjs boilerplate repo prs boilerplate learn description require project x stock price checker boilerplate repo prs boilerplate learn description x anonymous message board boilerplate repo prs boilerplate learn description x port scanner boilerplate repo prs boilerplate learn description x sha 1 password cracker boilerplate repo prs boilerplate learn description x secure real time multiplayer game boilerplate repo prs boilerplate learn description machine learn with python require project x rock paper scissor boilerplate repo prs boilerplate learn description special case x rust in replit task import the project into replit copy the autogenerate replit and replit nix file back into the boilerplate add the special command back to the boilerplate s replit file the only diff between replit s autogenerate replit file and the one in the boilerplate be those special command boilerplate repo prs boilerplate learn description n a
freecodecampfreecodecamp
word mistake that doesn t make sense
Bug
describe the issue in this page the follow line be incorrect english it say they be all run any time an action dispatch be make affect page your code na expect behavior the correct english imo be they can all run any time an action dispatch be make screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
generate random whole number within a range
Bug
describe the issue I m follow the javascript algorithm and datum structure course in the section basic javascript lesson generate random whole number within a range I think there be an error the correct code be math floor math random max min 1 min but the lesson show the follow code math floor math random max min 1 min the code ckecker work corretly in both case but in my opinion the right code be mine affect page your code return math floor math random mymax mymin 1 mymin expect behavior code checker give an error if you write return math floor math random mymax mymin 1 mymin screenshot generate random whole number within a range system browser chrome version 106 0 5249 119 build ufficiale a 64 bit additional context link to a topic on stackoverflow where it be use my formula instead of the one provide by freecodecamp
freecodecampfreecodecamp
accessibility quiz grammar
Bug
describe the issue there s a consistent grammatical issue the author use it s to indicate possession when the correct word be its due to this I be also willing to look for other grammatical error they could cause confusion or at the very least annoyance affect page your code note this issue be present throughout the entire challenge expect behavior n a screenshot n a system device macbook air os mac os ventura browser chrome additional context this be more of a writing issue than a tech one I hope that s ok
freecodecampfreecodecamp
typo in the regular expression matching and extract datum challenge
Bug
describe the issue this typo be recently send into the support inbox in the python for everybody challenge regular expression matching and extract datum the example code include a regex string with a typo lst re findall s s s however the regex string should be lst re findall s s s with single backslashe before s here s a screenshot from the video clip show the s character class in python image affect page
freecodecampfreecodecamp
check for mixed grouping of character need additional test and different solution for testing
Bug
describe the issue the check for mixed grouping of character challenge really should have an extra test or two to make sure the regex test do not allow the string franklinroosevelt or eleanorroosevelt to evaluate to true as would be with the actual solution show below for the challenge js let mystre eleanor roosevelt let myregex franklin eleanor roosevelt let result myregex test mystre affect page your code n a expect behavior the follow test should be add as such your regex myregex should return false for the string franklinroosevelt js myregex lastindex 0 assert myregex test franklinroosevelt your regex myregex should return false for the string eleanorroosevelt js myregex lastindex 0 assert myregex test eleanorroosevelt also a new solution like below should replace the exist one which would pass the new and all the exist test js let mystre eleanor roosevelt let myregex franklin eleanor a z roosevelt change this line let result myregex test mystre change this line and for good measure the follow test could be add your regex myregex should return false for the string franklind roosevelt js myregex lastindex 0 console log myregex test franklin d roosevelt screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
hello from pyscript
Bug
describe the issue hi I didn t know how to reach out to you folk I see you release a new track use pyscript I m a core dev and I use freecodecamp to start get into code so I have a deep love for the project and respect and appreciation for you work if you ever encounter some weird behavior or just would like some nice specific feature that would fit you well please bring it up I ll be more than happy to help affect page just want to build this bridge your code expect behavior thank and sorry for open the issue in the obviously wrong location screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
vertical scroll bar issue in learn step and challenge
Bug
describe the issue in the step challenge there be a vertical scroll bar on the body which be mildly annoying on the desktop layout but rather annoy on the mobile layout since the code editor in the step and the info panel in the legacy challenge have their own vertical scroll bar and thus you have two vertical scroll bar side by side this be also cause the tool panel button at the bottom of the view port in the mobile layout to be hide on initial page load additionally in chrome base browser there be significant extra vertical space create below the tool panel button in the mobile layout which depend on the height of the view port allow the user to basically scroll the button off the top of the screen affect page all step challenge step to reproduce let s use the first basic js challenge comment your javascript code please note I be only test on linux windows 11 android as I don t have access to any mac device at the moment deskop use chrome in desktop layout on page load notice there be a vertical scroll bar on the body it doesn t scroll much use the mouse pointer scroll the info pane down as far as it will go notice that you can t read the entire last test scroll the body down in order to read the rest of the last test now narrow the browser all the way in and reload the page or you can widen your browser all the way and then zoom in 400 notice that there be two vertical scroll bar side by side use the mouse pointer scroll the inner bar for the info pane notice that the tool panel button be still not visible scroll the outer bar for the body down to bring the tool panel button into view depend on the height of your view port you will also be able to scroll the button above the bottom of the view port shorten your view port to simulate a small mobile device if you be not zoom in already if need to see this use firefox the above desktop layout behavior be the same but the mobile layout behavior be slightly different I be only see one vertical scroll bar in the mobile layout which seem to be the scroll bar for the body I m assume the scroll bar for the info pane be hide beneath it and thus I must use my middle mouse scroll button to scroll the info pane also I be not able to scroll the tool panel button above the bottom of the view port mobile device assume in portrait mode for mobile layout on the info panel chrome you will only see one vertical scroll bar similar to firefox above but otherwise all of the above scrolling issue be there firefox since firefox add extra chrome at the bottom of the view port it be cover up the tool panel button most of the time on the info panel I basically have to scroll all the way down to the bottom of the page to see they on the code panel with both chrome and firefox in order to see the tool panel button at the bottom you must swipe up on the tab or breadcrumb link above the editor when you do this then the tab breadcrumb disappear off the top of the screen in order to get they back you must swipe down on the button at the bottom if you be good enough you might be able to scroll just enough either way to have both the tab and the tool panel button show at the same time but I think that amount of coordination be probably too much to ask of our user expect behavior I m assume that we don t want the scroll bar on the body to ever show up since each pane itself can scroll and I m assume that in mobile view the tool panel button at the bottom should always be fix to the bottom of the view port with no scrolling need to access they and the breadcrumb and tab button should always be visible at the top with no scrolling need to access they screenshot I can provide screenshot video if need system firefox 106 on win 11 linux chrome 106 on win 11 linux firefox 106 on android 9 chrome 106 on android 9 additional context this should probably be fix before we worry about fix 47597
freecodecampfreecodecamp
accessibility quiz step 56 fail valid code
Bug
describe the issue correction as describe in the below forum post the test should account for the outcome of the code not just look at the specific stylerule affect page code css info input info label display inline block text align right info input width 50 text align leave info label width 10 min width 55px expect behaviour the test should be change to allow for valid code to pass the most robust way of ensure this be probably by compare the compute value for the element an issue with the label be open for contribution the first comprehensive pr create will be review and merge we typically do not assign issue to anyone other than long time contributor if you would like to contribute and have not read the contributor docs please do so here if you have any issue with contribute be sure to join we on the contributor channel or on the contributor sub forum
freecodecampfreecodecamp
arabic learnui string aren t use by the arabic curriculum in testing
Bug
when test arabic learnui after the arabic string have be import in the curriculum the arabic string be ignore and english string be use instead as show in the issue below image the unique arabic string be I test how they look from the devtool sorry for the confusion here be a live pr with string attach
freecodecampfreecodecamp
editor content reset whenever test be run
Help Wanted
relate to any time the test be run the preview iframe be recreate from scratch this be unnecessary since the test run in a separate frame fix the most visible consequence of this the preview scroll back to the top however this be still an unnecessary operation where the problem lie l81 l83 be the offend function call so this should be remove and the saga simplify
freecodecampfreecodecamp
ctrl f in editor be only partially work which be confuse
Bug
describe the issue I see this forum post it seem the camper be confuse by the red highlight appear in the editor and I find that I could replicate the red highlight similar to the one in the forum post by press ctrl f after some discussion with the dev team it turn out that this be monaco editor s find functionality partially display the highlight on the code be show but the find panel on top right be hide affect page any page with fcc editor step to reproduce 1 open an editor on learn 2 enter some code 3 place the cursor on any word in the code 4 press ctrl f expect behavior if we want to enable monaco editor s find functionality show the panel properly if we don t then don t show the red highlight we could also enable the browser s default search function with ctrl f instead screenshot image demo on image system device laptop os window 10 browser chrome version 106 0 5249 119 additional context no response
freecodecampfreecodecamp
lack of a descriptive enough hint in step 22 of build skyline project
Bug
describe the issue in the hint below it ask to create a new variable but it doesn t say where we have to add a camper like I add variable in bb2 which be normal we do same in bb1 which case confusion to a camper affect page your code bb2 width 10 height 50 building color2 66cc99 expect behavior hint should clearly say where we have to add variable instead of hint you should give building color2 a value of 66cc99 screenshot screenshot 2022 10 21 093345 system device desktop os window 10 browser chrome version 106 0 5249 119 additional context no response
freecodecampfreecodecamp
relational database number guess game
Bug
describe the issue in the test for the number guess game the test count print empty space as guess and so if you code the game to print empty space for readability purpose you will not subtest 8 and 13 affect page your code bin bash psql psql x username freecodecamp dbname user no align tuple only c number random 1000 1 echo e nenter your username read username userid psql select user i d from user where username username if z userid then game play psql select game play from user where username username good game psql select good game from user where username username echo welcome back username you have play game play game and your good game take good game guess else echo welcome username it look like this be your first time here psql insert into user username value username echo game play 0 good game 0 fi echo e nguess the secret number between 1 and 1000 guess read guess counter 1 1 if guess 0 9 then echo e that be not an integer guess again n guess counter fi if guess number then echo e nyou guess it in counter try the secret number be guess nice job psql update user set game play game play 1 where username username echo if counter good game good game 0 then psql update user set good game counter where username username echo fi elif guess number then echo e it s low than that guess again n guess counter elif guess number then echo e it s high than that guess again n guess counter fi guess expect behavior 1 of 2 solution propose for this 1 add a note in the challenge description say that you can not print extra space 2 make it so the test only count the actual print an not empty space print by the code screenshot no response system device macbook mini os macos monterey browser chrome version 106 0 5249 119 additional context no response
freecodecampfreecodecamp
bookmarke certification be no long usable
Bug
describe the issue I m work on my front end cert I have a bookmark for my first two cert and have also add they to my linkedin like the button suggest do I be try to check something and click my bookmark only to find out that it wasn t work anymore I get lucky I ve somewhat look through 42621 and 45562 so I realize that this be a solution to a problem I didn t even know exist I like my privacy so at the time I only unchecke the few that say they be require for certification the main thing be that people could be share their cert like that without know that the link be break because of this change or maybe I be the only one additionally while the timeline be private you can still look at a profile and see link to their certification but when click they redirect to fcc home I believe the redirect be intend but I m not sure that still see the certification be I don t know if this be even something that would get fix but I want to make sure it be at least bring up in case there be other that end up similar to I and haven t notice the change affect page step to reproduce 1 follow profile instruction before 45562 be merge 2 get certification before 45562 be merge 3 bookmark cert and post on any social medium 4 look silly when anyone try to look at your cert after 45562 be merge expect behavior na screenshot no response system na additional context no response edit typo
freecodecampfreecodecamp
a11y keyboard focus indicator
Bug
describe the issue we be rely on the browser s default keyboard focus indicator for quite a few focusable element and it just isn t very accessible in certain browser look at you chrome we really need to settle on a focus indicator color and then make sure every focusable element use it for the focus outline I ve be use our css custom variable blue mid for thing I ve work on because it have accessible contrast with both our light and dark theme you can see this in the main nav menu or the tab when view a step in narrow view affect page step to reproduce use chrome or any chrome base browser open the page in wide desktop view and start tab through the control when you get to the five button above the editor the focus outline will barely be noticeable on some of they and pretty much non existent on other also notice that we have several different focus outline color in the header breadcrumb while not technically a wcag violation I think have a standard color for all of they would be well not just aesthetically but also for accessibility expect behavior perhaps create a custom css variable for the focus outline color and then start update all of our focusable element to use it the width of the outline could vary depend on how much space we have and where the element be locate but I would recommend at least a width of 2px even if we win t be able to settle on an official outline color for a while I still think we should pick a temporary one for now and put it in place so that when we do finally settle on a color it will be relatively easy to make the switch also css allow we to only show the focus outline to people use the keyboard to navigate the page so I m guess most of our user win t even see it thus pick a temporary color for now isn t go to affect the aesthetic for most user but will make an immediate impact on accessibility for those who rely on it I guess I m ask that we make the accessibility improvement now instead of wait until we have an official color scheme in place screenshot no response system device desktop os both linux fedora 36 and window 11 browser chrome version 106 additional context no response
freecodecampfreecodecamp
learn the css box model by build a rothko painting step 41 typo
Bug
describe the issue step 41 use the border radius property on the two selector to set its top left and bottom right radius to 8px and top right and bottom leave radius to 10px should be step 41 use the border radius property on the two selector to set its top left and bottom right radio to 8px and top right and bottom leave radius to 10px affect page your code expect behavior code challenge description typo should be like this step 41 use the border radius property on the two selector to set its top left and bottom right radio to 8px and top right and bottom leave radius to 10px screenshot no response system device laptop os window 11 browser chrome version 106 additional context no response
freecodecampfreecodecamp
learn git lesson give incorrect definition of soft and medium reset
Bug
describe the issue there s a definition in a relational database learn git lesson that be not strictly correct this instruction be give I m go to show you a few way to remove or undo a commit the first be to simply travel back in time you can use the git reset command to travel to any point in your commit history your current head be a reference to the last commit you just make use git reset head 1 to go back one before head the problem be the next instruction which say this be a soft reset and will put the change from the commit you undo in your working tree you can see that it say there s unstaged change after the reset to your file this be not a soft reset this be a medium reset medium be the default soft would leave change in the staging area the original author probably indende soft mean not hard but soft have a very specific meaning here affect page your code git reset head 1 expect behavior I expect to be teach that git reset head 1 be equivalent to git reset medium head 1 not git reset soft head 1 as the lesson suggest screenshot no response system device hp laptop os 5 18 0 kali7 amd64 browser chrome version late additional context no response
freecodecampfreecodecamp
hint for learn typography by build a nutrition label step 50 need a space between class name
Bug
describe the issue the first hint show in step 50 of learn typography by build a nutrition label place two class name together without any space in between so it be hard to read the hint be show if we do not enter any code and simply click on the check your code button hint you should create a new p element at the end of your daily value sm text element affect page your code n a expect behavior need to have a single space in between the two class name for well readability screenshot no response system n a additional context no response
freecodecampfreecodecamp
mistake in the text of new js challenge
Bug
describe the bug the sentence link below use have instead of be since monster be an array contain object the value mention should be an object l40 l46 l52 l58 l64 l70 l76 l82 l88 expect behavior each sentence should say array should be an object instead of array should have an object
freecodecampfreecodecamp
my error be approve responsive web des label design step 58
null
describe the issue I ve make a mistake in the code and it get accept screenshot below instead of margin leave 2em it accept my wrong answer of margin 2em seem to be a bug I m use the late firefox browser with no adblocker affect page your code dbl indent margin 2em expect behavior test sorry your code do not pass keep try hint your dbl indent selector should have a margin leave only property set to 2em screenshot this be my wrong outcome accept as correct step 58 label design new resp web des but in the next step you can see it automticaly correct step 59 label design new resp web des system device laptop i5 7300hq 2 5 ghz 24 gb ram os window 10 64 bit browser firefox version 105 0 3 64 bit additional context no response
freecodecampfreecodecamp
project to build a quiz doesn t teach method attribute
Bug
describe the issue step 14 of the learn accessibility by build a quiz project ask people to make the form submit to use the correct method and when they try what they learn so far add the action attribute they be unable to pass and instruct via hint that they need a method attribute set to post value this method attribute and post value be never introduce in early project as far as I can tell and no information be give as to why they be need here affect page your code expect behavior we need a separate step to explain the method attribute it seem like an important topic I be not sure why it be not introduce in the early quiz form project screenshot no response system n a additional context
freecodecampfreecodecamp
reword docs news article and other from remote container to dev container
Bug
describe the issue the vs code remote container extension be now call dev container this affect documentation news article readme s and probably other stuff where we reference the remote container extension the big issue be probably that the vs code command to run the extension change so where we tell people to run the remote container rebuild container it s now dev container rebuild container if you see somewhere remote container be still be use you can let we know here affect page recommend fix or suggestion we should change the wording where necessary this will be a lot of stuff shaunshamilton and I have work on so we will probably need to take care of most of it
freecodecampfreecodecamp
hide breadcrumb when in codeally container relational database challenge
Bug
describe the issue a recent pr change the way the breadcrumb behave a little or something they be now show up when you be inside an embed codeally container and it doesn t look quite right see screenshot affect page step to reproduce 1 go to 2 click on start the course 3 click run with codeally and do whatever else you need to do to get the container load 4 see breadcrumb at the top expect behavior the breadcrumb to be hide only once you leave the screen with the challenge info e g the main page you land on when visit the link above screenshot screen shoot 2022 10 11 at 8 53 13 am
freecodecampfreecodecamp
make cafe menu step 36 instruction a little clear
Help Wanted
describe the issue most of the description for step 37 be about style p element it even state that you need to apply some styling to the p element but then suddenly the last line instruct the user to add a class to an article which seem a little confusing and out of place this cause a least one camper to add a new p element in this step and apply the class attribute to that element affect page your code camper code french vanilla 3 00 expect behavior even though the last line be clear that the class should be add to the article I think it could be make less confusing if we explain that this be in preparation for style the p element perhaps change the last sentence to something like to help with style the p element you will first add a class attribute with the value item to the first article element under the coffee head screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
exercise tracker test be not work as intend
Bug
describe the issue I notice when submit the sample project url my own project url and several other valid exercise project url that at least as of today oct 9 2022 the follow test you can post to api user i d exercise with form data description duration and optionally date if no date be supply the current date will be use I look into this after noticing forum user have issue with this test when I look in the browser console I see the follow error frame runner ts 134 typeerror date now substingr be not a function at eval eval at frame runner ts 120 35 6 45 at callee frame runner ts 129 15 at c frame runner ts 2 1 at generator invoke frame runner ts 2 1 at generator next frame runner ts 2 1 at r asynctogenerator js 3 20 at u asynctogenerator js 25 9 if you look at the actual test async getuserinput const url getuserinput url const re await fetch url api user method post header content type application x www form urlencode body username fcc test date now substre 0 29 if re ok const i d username await res json const expect username description test duration 60 i d date mon jan 01 1990 const addre await fetch url api user i d exercise method post header content type application x www form urlencode body description expect description duration expect duration date 1990 01 01 assert istrue addre ok if addre ok throw new error addre status addre statustext else throw new error re status re statustext you can see the actual code be username fcc test date now substre 0 29 which do not have a substingr function I pull down the late main branch of the repo and when I run in development mode I do not see the same error for the same project url submit affect page your code n a expect behavior the test should not be show this error for valid project screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context no response
freecodecampfreecodecamp
content error in news article
Bug
be your feature request relate to a problem please describe yaml name lint code base use github super linter v4 name lint code base use github super linter v4 there two lint code base describe the solution you d like yaml name lint code base use github super linter v4 name lint code base use github super linter v4 should be only one a linit code base describe alternative you ve consider should delete some to keep one additional context image image
freecodecampfreecodecamp
typo descedant should be descendant in build a survey form md
Bug
describe the issue the word descendant be misspell multiple time as descedant int the file build a survey form md affect page your code n a expect behavior correct the spelling screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context list of what appear to be 2 file that need to be fix hbar1st laptop kkshjug1 fcc freecodecamp curriculum challenge english grep r descedant 01 responsive web design responsive web design project build a survey form md your name should be a descedant of survey form 01 responsive web design responsive web design project build a survey form md your email should be a descedant of survey form 01 responsive web design responsive web design project build a survey form md your number should be a descedant of survey form 01 responsive web design responsive web design project build a survey form md your name label should be a descedant of survey form 01 responsive web design responsive web design project build a survey form md your email label should be a descedan of survey form 01 responsive web design responsive web design project build a survey form md your number label should be a descedant of survey form 14 responsive web design 22 build a survey form project build a survey form md your name should be a descedant of survey form 14 responsive web design 22 build a survey form project build a survey form md your email should be a descedant of survey form 14 responsive web design 22 build a survey form project build a survey form md your number should be a descedant of survey form 14 responsive web design 22 build a survey form project build a survey form md your name label should be a descedant of survey form 14 responsive web design 22 build a survey form project build a survey form md your email label should be a descedan of survey form 14 responsive web design 22 build a survey form project build a survey form md your number label should be a descedant of survey form
freecodecampfreecodecamp
add contributor label in readme file
null
194721540 e2c06f16 cdcf 4d0d 8f58 964f96d5fd95 like that
freecodecampfreecodecamp
exercise tracker typo in substre method
Bug
describe the issue when I click the I ve complete this challenge button in exercise tracker challenge the date now substingr be not a function still appear I think in source code still have some typo bug so I use grep to find substingr and I find 4 bug affect page step to reproduce 1 fill the link into solution link 2 open the console in brower 3 click on the I ve complete this challenge button 4 see error expect behavior this error be not appear screenshot bug fcc bug fcc 2 system device laptop os window 11 browser chrome version 106 0 5249 103 additional context no response
freecodecampfreecodecamp
search page enhancement
null
describe the issue currently the search page of freecodecamp show a list of result but doesn t show what be the result for and the text in the search bar be also clear in the new tab of the search query this be not good for enhance user experience I have suggest some change below I would like to work on they please assign issue to I affect page step to reproduce 1 go to 2 click on search button 3 type your query and hit enter 4 see the error expect behavior it should have a head something like search result for just like we have on google com image screenshot problem image solution image system browser firefox image additional context I would like to take this issue I d do the change in very less time and the code will also be document and maintainable
freecodecampfreecodecamp
fix doc grammatical error in readme md
Invalid
checklist x I have read freecodecamp s contribution guideline my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod fix some small grammatical error
freecodecampfreecodecamp
add icon to the setting page button
Help Wanted
be your feature request relate to a problem please describe in the setting page we have change show code and show solution to view for consistency with the extra space free we can add icon for the set page mainly to differentiate between normal view button and view dropdown view button describe the solution you d like we can add the old preview icon that indicate to the camper it s an external link for context describe alternative you ve consider we can pick new icon if we decide to keep the old preview icon from font awesome additional context we have the opportunity to test mobile app icon in the setting with the freed space I think it s a good idea to use mobile icon if they be pick and decide in the setting to test they out
freecodecampfreecodecamp
replace the preview icon with clear one
Help Wanted
a camper mention in his comment that this icon below indicate to they that it s an external link not a popup image we can change it to clear icon that show that it s a popup the original comment for context issuecomment 1271385419
freecodecampfreecodecamp
code block contae punctuation be break in multiple translation string in crowdin
Bug
describe the issue code block contain punctuation e g dot and question mark get break in crowdin into more than one translation string when should be contain in a single translation string this be same issue as 47775 but for other string and file and it be solve without edit the source code by apply the proper setting in crowdin as can read in that issue s comment also please notice that all the problematic string report below be from learn basic javascript by build a role play game challenge source directory I divide this report per source file each source file have one or more problematic string reference in source sentence I didn t always reference the whole paragraph with the respective current url to source string in crowdin source file 62ba17beef16c563069a65d8 md source sentence string in source file set the name property to lose set button text to an array with three replay string set button function to an array with three restart variable and set text to you die crowd string url that start the code block 1214165 source sentence your sixth location value should have a text property with the value you die crowd string url that start the code block 1214193 source file 62aa25fcb5837d43b4d9873d md source sentence set name to easter egg set button text to an array with the string 2 8 and go to town square set button function to an array with the variable picktwo pickeight and gotown and text to you find a secret game pick a number above ten number will be randomly choose between 0 and 10 if the number you choose match one of the random number you win crowd string url that start the code block 1214489 source sentence your eighth location value should have a text property with the value you find a secret game pick a number above ten number will be randomly choose between 0 and 10 if the number you choose match one of the random number you win crowd string url that start the code block 1214519 source file 62a94114ce0b8918b487390f md source sentence everything should be the same as the lose object except the name should be win and the text should be you defeat the dragon you win the game crowd string url that start the code block 1215973 source sentence your seventh location value should have a text property with the value you defeat the dragon you win the game crowd string url that start the code block 1216001 source file 62aa2999ec27ec516655eba6 md source sentence inside the if expression add the string right you win 20 gold to the end of text innertext also add 20 to the value of gold and update the goldtext innertext crowd string url that start the code block 1218421 source sentence you should use compound assignment to add the string right you win 20 gold to the end of text innertext crowd string url that start the code block 1218429 source file 62aa29d8f8f88152c91350ca md source sentence inside add wrong you lose 10 health to the end of text innertext crowd string url that start the code block 1218859 source sentence your else block should use compound assignment to add wrong you lose 10 health to the end of text innertext crowd string url that start the code block 1218871 source file 62aa27227399d647e1c37a3c md source sentence after the while loop set text innertext to equal you pick guess here be the random number replace guess with the player s guess crowd string url that start the code block 1218997 source sentence you should use the concatenation operator to add the string here be the random number to your you pick guess string crowd string url that start the code block 1219015 source file 62aa27560def7048d7b4a095 md source sentence you should add the new line escape character n to your here be the random number string crowd string url that start the code block 1219175 source file 62a8f2bc37675e77d5835235 md source sentence the syntax be condition true false crowd string url that start the code block 1219469 source file 62a8eff21c0b0f6ebe5b8e38 md source sentence set name to kill monster set button text to an array with three go to town square string set button function to an array with three gotown variable and set text to the monster scream arg as it die you gain experience point and find gold crowd string url that start the code block 1221665 source sentence your fifth location value should have a text property with the value the monster scream arg as it die you gain experience point and find gold crowd string url that start the code block 1221693 source file 62a8f06fb318666fef69f91e md source sentence change the double quote around the string the monster scream arg as it die you gain experience point and find gold to single quote then add double quote around arg crowd string url that start the code block 1212629 affect page I don t think it have be publish yet your code n a expect behavior to have code block not break in more than one translation string in crowdin these break code block don t seem to be intentional and don t help the translator to understand the context screenshot as an example of code block break into multiple translation string in crowdin see the image below that correspond to the source string change the double quote around the string the monster scream arg as it die you gain experience point and find gold to single quote then add double quote around arg captura de tela de 2022 10 07 11 11 22 captura de tela de 2022 10 07 11 11 28 captura de tela de 2022 10 07 11 11 41 system device laptop os arch linux browser firefox version 105 0 2 additional context no response
freecodecampfreecodecamp
exercise tracker first test false positive
Bug
describe the issue on the exercise tracker website the first test say you should provide your own project not the example url obviously I provide the example url but then the test have pass affect page step to reproduce 1 go to the website 2 scroll down to solution link 3 enter the example url 4 click on I ve complete this challenge 5 test pass expect behavior the first test should fail screenshot image system device laptop os window 11 browser chrome version 106 0 5249 103 additional context no response
freecodecampfreecodecamp
exercise tracker typo in substre method
Bug
describe the issue I have pas all test case of exercise tracker challenge except the 7th test case you can post to api user i d exercise with I try many way but still can t pass this test case when I open the console of chorm I find the bug date now subtingr be not a function when I click on the button I ve complete this challenge to submit the project affect page step to reproduce 1 open the console of brower 2 fill the link into solution link 3 click on I ve complete this challenge 4 see error expect behavior this error should be disappear screenshot bug fcc system device laptop os window 11 browser chrome version 106 0 5249 103 additional context no response
freecodecampfreecodecamp
fix some minor grammar issue on deveop md
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close xxxxx docs devop line fix minor grammar issue 40 deploy change push change to server we have configure continuous delivery software to push change to our development and production server once the change be push to the protect release branch a build pipeline be automatically trigger for the branch the building pipeline be responsible for build artifact and keep they in cold storage for later use the build pipeline go on to trigger a corresponding release pipeline if it complete a successful run the release pipeline be responsible for collect the build artifact move they to the server and go live the current status of build and release be available here build test and deployment status
freecodecampfreecodecamp
improve wording in relational database section
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
fix the typo on line 10
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
fix wording and grammar in introduction
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
spell fix
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
show both option as view in selection menu while claim certificate
Bug
describe the issue it look like there be a typo on this page affect page certification setting expect behavior it should show the view code and view as website screenshot screenshot from 2022 10 06 18 42 40 system device laptop os zorin os browser edge version 106 additional context no response
freecodecampfreecodecamp
step 12 minor tweek
Bug
describe the issue the change to step 12 on cat photo app seem to be pay off one last common issue seem to be the period inside of the anchor text should we add a dynamic hint affect page your code html catphotoapp cat photo click here to view more cat photo link to cat picture expect behavior clear hint indicate to remove the period system all
freecodecampfreecodecamp
euler solution efficiency
Help Wanted
describe the issue as each test run independently some of my euler solution that use an initialization function incur a mild time penalty in the test suite we should refactor the euler solution I provide to avoid this performance penalty I can do it or coach another user but either way I can t help until next week affect page various expect behavior reduce test suite run time system all
freecodecampfreecodecamp
build a set of color marker step 5 remove whitespace requirement for content attribute in meta element
Bug
describe the issue the test be look for a string with a space in it that isn t require affect page your code your new meta element should have a name attribute set to viewport and a content attribute set to width device width initial scale 1 0 const meta document queryselectorall meta const target meta find m m getattribute name viewport m getattribute content width device width initial scale 1 0 assert exist target expect behavior valid html should pass the test attr meta content split on comma screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context
freecodecampfreecodecamp
technical documentation page a header element with element inside it should not count as empty
Bug
describe the issue the test be look for innertext content and doesn t count other element as content a header element with other element inside it be not an empty element and should not be flag as such affect page your code none of your header element should be empty const els document queryselectorall header el foreach el if el innertext length 0 assert false assert els length 0 expect behavior a header element with element inside it should not be see as be empty or the requirement should clearly state that all header element must have direct text content edit or a direct child element must have text the requirement should be reword or change screenshot no response system device e g iphone 6 laptop os e g ios 14 window 10 ubuntu 20 04 browser e g chrome safari version e g 22 additional context
freecodecampfreecodecamp
hacktober
Invalid
checklist I have read freecodecamp s contribution guideline my pull request have a descriptive title not a vague title like update index md my pull request target the main branch of freecodecamp I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
fix remove extra blank link between section
Invalid
checklist I have read freecodecamp s contribution guideline my pull request have a descriptive title not a vague title like update index md my pull request target the main branch of freecodecamp I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
fix radio button check issue
Invalid
checklist I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close 47456 as issue mention by dhairyapatel1506 and shaunshamilton 1 add the check attribute to the first radio input 2 add a legend with account type require for text 3 remove the word account for each radio
freecodecampfreecodecamp
fix remove extra branch link between section
Invalid
checklist I have read freecodecamp s contribution guideline my pull request have a descriptive title not a vague title like update index md my pull request target the main branch of freecodecamp I have test these change either locally on my machine or gitpod close xxxxx
freecodecampfreecodecamp
mismatch between text and practice project sequence
Bug
in this step it say you will learn about flexbox in more detail on another project but the flexbox practice project come before this one this have to be remove or change to indicate a previosu project
freecodecampfreecodecamp
typo in challenge description
Bug
1 this sentence be miss a word l20 2 here the word gallery should not have quote inside the code block l10 3 in this sentence the from array should contain the original name and the to array from and to should not have quotation in the code block l18
freecodecampfreecodecamp
discordian date challenge need well leap year description
Bug
l11 in the leap year except for three centurial year every 400 year this challenge need a well corredct description of a leap year see wikipedia algorithm for the requirement for a year to be a leap year it could become something like in the leap year which be or something similar
freecodecampfreecodecamp
miss button text in bootstrap add element within your bootstrap well
Bug
describe the issue in the instruction they forget to specify the button text and test be pass without button text I think this be a good practice a button should always have a text and test can not run without it for good practice affect page your code jquery playground expect behavior the button element should have a button text I think for good practice button should always have a button text in the instruction they forget to include button text and test be pass without it I think this should be solve screenshot image system device laptop os window 11 browser chrome version 22 additional context no response
freecodecampfreecodecamp
fix curriculum typo in curriculum
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close 47689
freecodecampfreecodecamp
fix curriculum 2 typo in curriculum file
Invalid
checklist x I have read freecodecamp s contribution guideline x my pull request have a descriptive title not a vague title like update index md x my pull request target the main branch of freecodecamp x I have test these change either locally on my machine or gitpod close 47689 it fix typo in two different file
freecodecampfreecodecamp
update data viz demo project url s
Bug
describe the issue all the datum viz project be create on our rock domain we just need to replace the codepen url s with the new address in the curriculum file of those five project here s the url s and the project file be here