repository
stringclasses
156 values
issue title
stringlengths
1
1.01k
labels
stringclasses
8 values
body
stringlengths
1
270k
freecodecampfreecodecamp
add aditional test for area code
Help Wanted
currently on the wiki the second solution var regex 1 s d 3 d 3 s d 3 s d 4 also allow phone number without an area code I suggest to add an additional test that invalidate this expect telephonecheck 555 5555 to equal false alternatively 555 5555 could be add as a valid format in the explanation of this bonfire
freecodecampfreecodecamp
create campsite database interface connect to google api
Help Wanted
we need a campsite database to simplify management of campsite and to auto populate a map show the location of campsite to allow user to find a campsite close to they database structure field name type note i d objectid unique campsite i d city string city name country string country name populate from dropdown subdivision string state province etc coordinate object lat long object google i d string unique google i d for map element url string social medium url ie facebook link createdby objectid fcc user who create the record createdon date campsite record creation date display boolean display don t display for moderation interface route campsite default view simple single page display with embed google map below the map be a hierarchical alphabetic display of all campsite same as on the wiki page add campsite button pop up a modal with the appropriate field do google api lookup on submit to validate location of city and fill in sub division on submit send an e mail to moderator moderation table on default view show unapproved campsite click approve to toggle display state post to google api click delete to remove campsite click edit to change location etc google api upon approval coordinate be send to the google api to update the map
freecodecampfreecodecamp
syntaxerror illegal break statement
Bug
challenge bonfire check for palindrome solution function 20palindrome 28str 29 20 7b 0a 20 20 0a 20 20 2f 2fhave 20to 20remove 20all 20non alphanumeric 20characters 20 20punctuation 2c 20space 2c 20symbols 20assume 20you 20have 20to 20use 20regular 20expressions 20for 20this 20 0a 20 20var 20stripword 20 3d 20str replace 28 2f 5cw 7c 5cs 7c 2fg 2c 29 3b 0a 20 20 0a 20 20 2f 2fset 20all 20words 20to 20lowercase 0a 20 20var 20palinword 20 3d 20stripword tolowercase 28 29 3b 20 0a 20 20console log 28palinword 29 3b 20 0a 20 20 0a 20 20 20 20 2f 20reverse 20palinword 20for 20comparison 2f 0a 20 20var 20checkpalindrome 20 3d 20palinword split 28 29 reverse 28 29 join 28 29 3b 0a 20 20console log 28checkpalindrome 29 3b 20 0a 20 20 0a 20 20 20 2f 20check 20to 20see 20if 20str 20is 20a 20palindrome 2f 0a 20 20 20if 20 28palinword 20 3d 3d 3d 20checkpalindrome 29 20 7b 0a 20 20 20 20 20return 20true 3b 0a 20 20 20 7d 20else 20 7b 0a 20 20 20 20 20return 20false 3b 20 0a 20 20 20 7d 0a 0a 20 0a 7d 0a 0a 0a 0apalindrome 28 22a 20man 2c 20a 20plan 2c 20a 20canal 20panama 22 29 3b have an issue user agent be mozilla 5 0 macintosh intel mac os x 10 10 5 applewebkit 537 36 khtml like gecko chrome 47 0 2526 80 safari 537 36 please describe how to reproduce this issue and include link to screenshot if possible screenshot 2015 12 17 16 37 19 my code javascript function palindrome str have to remove all non alphanumeric character punctuation space symbol assume you have to use regular expression for this var stripword str replace w s g set all word to lowercase var palinword stripword tolowercase console log palinword reverse palinword for comparison var checkpalindrome palinword split reverse join console log checkpalindrome check to see if str be a palindrome if palinword checkpalindrome return true else return false palindrome a man a plan a canal panama I keep get syntaxerror illegal break statement there be no break statemet and the above code run without error in the console and pass all the example after go through and take everything out one by one then replace they I find the statement only appear at the follow statement reverse palinword for comparison var checkpalindrome palinword split reverse join console log checkpalindrome thank tim
freecodecampfreecodecamp
syntaxerror unexpected token due to have a after while start length
Bug
challenge bonfire chunky monkey solution function 20chunk 28data 2c 20n 29 20 7b 0a 20 20 2f 2f 20break 20it 20up 0a 20 20 20 20var 20result 20 3d 20 5b 5d 2c 20 0a 20 20 20 20 20 20 20 20i 2c 20 0a 20 20 20 20 20 20 20 20start 20 3d 20 200 2c 20 0a 20 20 20 20 20 20 20 20 0a 20 20 20 20 20 20 20 20len 20 3d 20data length 3b 0a 0a 20 20 20 20do 20 7b 0a 20 20 20 20 20 20 20 20 0a 20 20 20 20 20 20 20 20result push 28data slice 28start 2c 20start 2bn 29 29 3b 0a 20 20 20 20 20 20 20 20start 20 2b 3d 20n 3b 0a 0a 20 20 20 20 7d 20while 20 28start 3c 20len 29 3b 0a 0a 20 20 20 20return 20result 3b 0a 7d 0a 0achunk 28 5b 22a 22 2c 20 22b 22 2c 20 22c 22 2c 20 22d 22 5d 2c 202 29 3b have an issue user agent be mozilla 5 0 window not 10 0 wow64 applewebkit 537 36 khtml like gecko chrome 47 0 2526 80 safari 537 36 please describe how to reproduce this issue and include link to screenshot if possible my code javascript function chunk datum n break it up var result I start 0 len datum length do result push data slice start start n start n while start len return result chunk a b c d 2
freecodecampfreecodecamp
low friction way for camper to be able to commit their solution to a github repo
Help Wanted
we be look for a low friction way for camper to be able to push their free code camp challenge solution to a github repository we need to establish be it possible to create then write to a camper s open source repository create could we push a md file with their solution to the repository be there an alternate way where the camper could download the solution md file to a specific repository then manually push it up to github
freecodecampfreecodecamp
slip of point
Bug
my code be here javascript function palindrome str var ping str tolowercase var pong ping replace alert pong var chong pong split var kong chong reverse var dhong kong join alert dhong if dhong pong return true good luck else return false palindrome never odd or even I didn t remove all non alphanumeric character punctuation space and symbol and I pass a different string which be a palindrome but it s not when I didn t remove blank space quite well but I have add a alert for debugging as console wasn t work for a while when the code start check all string I check prevent this window from create additional dialog and guess I ve pass
freecodecampfreecodecamp
waypoint clone an element use jquery I complete the code and now the phone simulator be show three target5 button
Bug
challenge waypoint clone an element use jquery solution fccss 0a 20 20 24 28document 29 ready 28function 28 29 20 7b 0a 20 20 20 20 24 28 22 23target1 22 29 css 28 22color 22 2c 20 22re 22 29 3b 0a 20 20 20 20 24 28 22 23target1 22 29 prop 28 22disabled 22 2c 20true 29 3b 0a 20 20 20 20 24 28 22 23target4 22 29 remove 28 29 3b 0a 20 20 20 20 24 28 22 23target2 22 29 appendto 28 22 23right well 22 29 3b 0a 20 20 20 20 24 28 22 23target5 22 29 clone 28 29 appendto 28 22 23left well 22 29 3b 0a 20 20 7d 29 3b 0afcce 0a 0a 3c 20only 20change 20code 20above 20this 20line 20 3e 0a 0a 3cdiv 20class 3d 22container fluid 22 3e 0a 20 20 3ch3 20class 3d 22text primary 20text center 22 3ejquery 20playground 3c 2fh3 3e 0a 20 20 3cdiv 20class 3d 22row 22 3e 0a 20 20 20 20 3cdiv 20class 3d 22col xs 6 22 3e 0a 20 20 20 20 20 20 3ch4 3e 23left well 3c 2fh4 3e 0a 20 20 20 20 20 20 3cdiv 20class 3d 22well 22 20id 3d 22left well 22 3e 0a 20 20 20 20 20 20 20 20 3cbutton 20class 3d 22btn 20btn default 20target 22 20id 3d 22target1 22 3e 23target1 3c 2fbutton 3e 0a 20 20 20 20 20 20 20 20 3cbutton 20class 3d 22btn 20btn default 20target 22 20id 3d 22target2 22 3e 23target2 3c 2fbutton 3e 0a 20 20 20 20 20 20 20 20 3cbutton 20class 3d 22btn 20btn default 20target 22 20id 3d 22target3 22 3e 23target3 3c 2fbutton 3e 0a 20 20 20 20 20 20 3c 2fdiv 3e 0a 20 20 20 20 3c 2fdiv 3e 0a 20 20 20 20 3cdiv 20class 3d 22col xs 6 22 3e 0a 20 20 20 20 20 20 3ch4 3e 23right well 3c 2fh4 3e 0a 20 20 20 20 20 20 3cdiv 20class 3d 22well 22 20id 3d 22right well 22 3e 0a 20 20 20 20 20 20 20 20 3cbutton 20class 3d 22btn 20btn default 20target 22 20id 3d 22target4 22 3e 23target4 3c 2fbutton 3e 0a 20 20 20 20 20 20 20 20 3cbutton 20class 3d 22btn 20btn default 20target 22 20id 3d 22target5 22 3e 23target5 3c 2fbutton 3e 0a 20 20 20 20 20 20 20 20 3cbutton 20class 3d 22btn 20btn default 20target 22 20id 3d 22target6 22 3e 23target6 3c 2fbutton 3e 0a 20 20 20 20 20 20 3c 2fdiv 3e 0a 20 20 20 20 3c 2fdiv 3e 0a 20 20 3c 2fdiv 3e 0a 3c 2fdiv 3e 0a have an issue user agent be mozilla 5 0 macintosh intel mac os x 10 10 5 applewebkit 537 36 khtml like gecko chrome 47 0 2526 73 safari 537 36 please describe how to reproduce this issue and include link to screenshot if possible issue I believe I ve find bug in the phone simulation in waypoint clone an element use jquery I enter the code to clone target5 and append it to leave well and now I see three target5 button in the phone simulator fcc say my code be correct and advance I to the next challenge the follow challenge also show three target5 button waypoint target the parent of an element use jquery waypoint target the child of an element use jquery qualitymanif confirm this issue on his linux box image my code html jquery playground leave well target1 target2 target3 right well target4 target5 target6
freecodecampfreecodecamp
convert json datum to html pass with incomplete sollution
Help Wanted
challenge waypoint convert json datum to html have an issue user agent be mozilla 5 0 window not 10 0 wow64 rv 42 0 gecko 20100101 firefox 42 0 step to repro 1 go to 2 paste the below snippet in the solve section the follow code 3 click ctrl enter javascript json foreach function val var key object key val console log json stringify key expect test should fail actual test pass from what I see the test pass even with syntax problem my code html cat photo finder the message will go here get message
freecodecampfreecodecamp
help I progress
Bug
challenge waypoint use hex code for specific color have an issue user agent be mozilla 5 0 window not 10 0 win64 x64 applewebkit 537 36 khtml like gecko chrome 46 0 2486 0 safari 537 36 edge 13 10586 please describe how to reproduce this issue and include link to screenshot if possible my answer be correct but wrongly flagged as erroneous my code html
freecodecampfreecodecamp
some waypoint promote bad accessibility practice
Help Wanted
I just come across the follow line of code in the second bootstrap waypoint I can not in good conscience ignore this a screenreader will read the result output in the follow rather helpful manner link graphic I appreciate the waypoint about the alt tag be include in the fcc curriculum please let there be no doubt about that but I do think if fcc want to teach proper html css a grave mistake like this should not be allow to exist and the advice in the waypoint about the alt tag should be take for fcc s waypoint zipline bonfire and oher exercise as well I also trip over the lack of the for attribute in the label tag for form I suppose I can forgive that one for now since that attribute go into some rather advanced semantic discussion and be exclusively for semantic correctness and accesibility but I do hope this topic will be discuss at a later part in the curriculum if not I ll have to write up a few waypoint meself I reckon for completeness the url where I come across the offend line of code be below
freecodecampfreecodecamp
request for star when new test be add
null
sometimes test be add to bonefire and my solution do not take they into account sometimes it be still ok but not always when I go back for diff reason I see it no long work it would be cool to have some indication when new coverage be add to bonefire so I can go back and see if my solution be work or if I miss sth
freecodecampfreecodecamp
null
null
consider good practice to have generic family monospace name in low case easy to find most example I ve see official spec use low case also
freecodecampfreecodecamp
add definition popover feature to challenge
Help Wanted
for specific term we can create bootstrap popover to allow you view their definition rather than have to look they up here s an example here s the work code the catch be we need to create javascript in main js that will allow for an infinite number of link with popover within the same challenge description
freecodecampfreecodecamp
all term should be define when first introduce
Help Wanted
example css cascade style sheet html hypertext markup language tag element also a brief description of what it be or what it do assume someone come in with zero knowledge possible internal hyperlink to wiki on these topic fcc glossary maybe in line pop up definition link to more info
freecodecampfreecodecamp
user should receive an alert when a section be complete
Help Wanted
as it stand you can only see this option to share the portfolio on facebook from the map if the last challenge of a section be complete all other challenge in that section have also be complete alert w option to share user portfolio on facebook
freecodecampfreecodecamp
discussion of offline mode functionality
Help Wanted
one of our long term goal be to offer an offline mode some organization that have approach we about this a variety of school in area with intermittent access to internet and power prisoner in san quinton who as prisoner don t have internet access but still want to learn to code people who be send out raspberry pi computer pre load with instructional content like khan academy to the develop world note that we ve create a gitter room specifically for this as well as a github milestone there be several major challenge that we ve think of so far and of course ton more we haven t think of yet complete challenge that require external resource such as codepen or c9 io to complete access wiki article that provide help with these challenge in the event that a camper get stuck chat a major feature of free code camp win t work without an internet connection to access gitter keep track of a camper s progress without call back to free code camp s server some of the challenge require the use of cdns which require internet access ideally we could create a version that be fully offline where most of the challenge be possible then when internet access be establish it could send those datum to free code camp s server this way we could potentially grant certification for work do offline there be several major technical hurdle and we have several major change still underway such as our move to a single page reactive isomorphic app flux react our main development team I berkeleytrue and benmcmahon100 have a variety of other project that be high priority than this at the moment so much of this work will need to be tackle by our community of developer at least initially the natural place to start be create github issue with the offline mode roadmap and discuss thing in the designate gitter room
freecodecampfreecodecamp
create a path that output an anonymize csv of all camper activity
Help Wanted
we want make free code camp an open data project we d like to have a url camper datum scientist and academic study free code camp s community and pedagogical approach can visit to obtain a full dump of our anonymize user database basically it would query for attribute of all of free code camp s 100k camper progress and initiate a download of the csv file instead of run this massive query every time someone request the data we d like to run the task once a day and cache the result
freecodecampfreecodecamp
can not access waypoint get start with freecodecamp
Bug
login to freecodecamp and go to the first way point for get start with free code camp I get a message oop something go wrong please try again later image
freecodecampfreecodecamp
qa example code on instruction should not wrap around
Help Wanted
when instruction code wrap around due to the limited space it make the learner think that you actually have to put a line break in the code and they re leave wonder why their code be not work in most case put a line break will keep thing function but sometimes it doesn t work
freecodecampfreecodecamp
fail test of waypoint result in can not read property length of null error
Bug
waypoint link if you fail the second test of the waypoint that be the text inside the anchor element be not cat photo the test throw an can not read property length of null error screenshot 3 if the test be pass then it behave as expect
freecodecampfreecodecamp
code isn t save on js challenge
Bug
benmcmahon100 please note that the framework refactor seem to have break the code saving mechanism just for the showjs view the showhtml view work fine
freecodecampfreecodecamp
inaccurate copy in run button
Bug
I notice on this challenge that the button to run the test still run code image I think this should say run test
freecodecampfreecodecamp
issue with layout of the mobile preview in lesson
Bug
hmm I don t know why but I be get issue with the preview layout in the bootstrap section first in the button section then in the check box section I be sure there be no error with my code but still I be paste the code for it here catphotoapp like info delete thing cat love cat nip laser pointer lasagna top 3 thing cat hate flea treatment thunder other cat indoor outdoor love lazy crazy submit
freecodecampfreecodecamp
waypoint iterate over array with map array map be not a function
Bug
challenge have an issue report array map be not a function code in the console at the time be as follow use map to add three to each value in the array var array 1 2 3 4 5 only change code below this line array array map function val return val 3 only change code above this line function return array the follow example show this code work on an alternative environment log value
freecodecampfreecodecamp
duplicate page on device
Bug
challenge have an issue I think the problem be happen on all waypoint page the device right side of the screen where the catphotoapp page display the information be be display duplicate another point be that the html css code be not completely display when the page be load it be necessary to click or edit the code so that the code from the previous lesson be display correctly duplicate lose previous code
freecodecampfreecodecamp
click back in browser to view previous exercise then click go to next challenge skip ahead to the following exercise
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible 1 complete alt text exercise 2 proceed to unordered list exercise get stick click back button 3 reset alt text exercise complete successfully click continue expect unordered list exercise present again actual order list exercise present
freecodecampfreecodecamp
browser freeze on javascript challenge
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible I m just begin the challenge and type when suddenly my browser freeze and I can t do anything I try refreshing and it win t work I try open new window and it still freeze
freecodecampfreecodecamp
save feature may save infinite loop
Bug
freecodecampfreecodecamp
zipline finish button doesn t work
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible complete zipline or basejump dialog doesn t open a dialog to enter link to finish work
freecodecampfreecodecamp
click I ve complete this challenge doesn t do anything
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible I ve try click I ve complete this challenge in the late version of google chrome firefox and microsoft edge but I can t get the link to work
freecodecampfreecodecamp
popup dialog be miss textboxe for codepen link
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible edit 19 08 actually this probably be more useablity than a bug as it s an inconsistency between what be present in the video and what you be require to do after look ahead to the other zipline their check list on the left do mention that you be require to paste your codepen link you might consider add a check item to the list for the first waypoint state that even though it s mention in the video you don t need to link to the codepen browser chrome version 44 0 2403 155 m late os win7 issue 1 I ve complete this challenge but when I click the button the result popup do not have the test field mention in the video issue 2 button doesn t respond to ctrl enter have work for previous challenge I get this image it be suppose to be this courtesy of fcc user itsaga image
freecodecampfreecodecamp
solution for slot machine drill be not save
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible
freecodecampfreecodecamp
editor doesn t let you remove trail comment
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible step to repro start the challenge from scratch try to remove the closing comment element by use backspace or delete button the editor will try to balance the closing comment by add end of the comment element to the text image
freecodecampfreecodecamp
add a new line do not scroll the text editor
Bug
challenge have an issue please describe how to reproduce it and include link to screenshot if possible issue add a new line at the bottom of the text editor do not scroll the editor to make the new line visible reproduce move the cursor to the bottom line of the text editor press enter to add a new line the cursor will now be on that new line but will not be visible without scroll the text editor window to see it
freecodecampfreecodecamp
nothing happen
null
challenge have an issue nothing happen when I push the submit button the code doesn t run and I don t move on to the next challenge
freecodecampfreecodecamp
comment start disable task panel
Bug
challenge have an issue then comment start s task panel disappear
freecodecampfreecodecamp
linkedin sharing
Help Wanted
example uri
freecodecampfreecodecamp
ms edge browser support
null
move from waypoint mobile responsive image to waypoint center text with bootstrap produce a 404 we couldn t find a challenge with that name please double check the name screenshot 2015 08 05 12 53 44 system info window 10 microsoft edge
freecodecampfreecodecamp
beta sign in user not detect
Bug
I break something switch over to loopback middleware phase now when sign in the app do not detect that a user be not sign in to sleepy to tackle this at the moment benmcmahon100 let I know if you can figure this out before I wake up if not I ll take a look first thing
freecodecampfreecodecamp
free code camp map
Bug
I be use internet explorer 11 and all the option in the map and the text summary of video I have a limited cap on my isp so unable to watch these all have the number 1 next to they not sure if this be the way thing be set up sorry if have be mention before
freecodecampfreecodecamp
issue with link to twitch from codepen iframe
Bug
challenge have an issue whenever use chrome or firefox to link to user s stream on twitch from codepen the result twitch page will not load properly as it try to change the domain property of the codepen iframe rather than legitimately opening in a new window or tab screenshot of console twitchlinkerr
freecodecampfreecodecamp
new ui on c9
Bug
the directive of the challenge need to be update to the new c9 user interface
freecodecampfreecodecamp
possible bug in exercise 26 of practice functional programming
Bug
challenge have an issue please describe how to reproduce it and include link to screen shot if possible this issue probably come under the category of quasi bug for new programmer this be a difficult tutorial but doable for the most part with a basic understanding of the native java script reduce map filter and concat method the problem or bug be this some of the solution to the exercise appear not to work when verify independently use chrome dev tool or repl it for example for example exercise 26 may appear to produce empty array the reason be bind to the author s use of custom function in the tutorial the author demonstrate implement custom concatall concatmap and zip method the exercise solution as well as the author s custom implementation rely on slightly tweak version of the native filter reduce map method thus the exercise run in the author s ui but may not be replicable independently without the author s tweak version of map reduce and filter this issue be explore in the stackoverflow thread at 31365090 jeremy larter explain the problem and provide a full example of the solution for exercise 26 plus the work custom function at I would suggest that this waypoint set the expectation that the author use custom implementation of native js method to drive the exercise and the custom implementation of concatall and concatmap
freecodecampfreecodecamp
more information and go to next challenge button do not work when window be sized for tablet or phone
Bug
challenge have an issue please describe how to reproduce it and include link to screen shot if possible I be unable to access the instruction for this module because the button label more information be unresponsive on my mobile device both iphone ipad for both I m run io v 8 3 the editor and display both seem to be work fine it would be extremely useful to be able to use my mobile device in addition to my laptop because it s easy to integrate into my daily routine
freecodecampfreecodecamp
mislead note in waypoint create a text field
null
I wasn t sure if this one be go too far but figure I would throw it open for discussion in lesson it say you can create one like this note that input element be self close that s not a self closing tag which would look like but this isn t valid html5 to be technically accurate the note should say input element be void element which don t have an end tag or probably just keep it simple and say they don t have an end tag I do some research and it seem that the spec say web browser should tolerate it content author shouldn t use they
freecodecampfreecodecamp
beta test run code on bonfire unresponsive
Bug
the run code button on all bonfire do nothing upon be click this do not produce any actual error so I don t have one to show additionally ctrl enter do not work on these page either image
freecodecampfreecodecamp
beta test phone element on html and css waypoint cross over the footer
Bug
when scroll down the phone be in a fix position and crosse over the footer waypoint make dead link use the hash symbol free code camp mozilla firefox 002
freecodecampfreecodecamp
editor get empty on ctrl z
Help Wanted
challenge have an issue the editor have a small issue if the editor have some code initially even that code get blank on ctrl z snapcrab noname 2015 6 3 0 4 55 no 00
freecodecampfreecodecamp
html css bootstrap waypoint cursor get hide when move to certain text in the editor
null
use arrow key to edit the code in the editor the cursor be suddenly hide so it s hard to know where I be currently edit until I write down anything in there and sometimes it become very annoying this have occur to I in several html css bootstrap challenge so I guess the problem be with the editor itself but I couldn t get a pattern to reproduce it 100 of time as it wasn t always reproduce in the same challenge or with the same text in the editor what I ve observe be that when go forward from one challenge into another be more likely to happen than when just load the page from scratch use developer tool to analyse the code didn t help I to get any clue for this issue although there be a js error in the console right after the page be load give the randomness of the problem I discard that js error as a root cause for the issue I m report here because the js error be display in all waypoint page but I m mention here just in case it might be somehow relate to the failure
freecodecampfreecodecamp
challenge have an issue
null
I copy and paste in preparation for create the ol list the correct you re do thingy get trigger after I edit the first ul into a ol but before I edit the closing ul tag my correct code read thing cat hate cat nip laser pointer lasagna note close ul not ol
freecodecampfreecodecamp
syntax error
Bug
this issue be to track syntax error pop up in the challenge
freecodecampfreecodecamp
challenge have an issue
Bug
this challenge do not test the clockwise notation to specify the padding of an element it rather be repeat of a previous challenge
freecodecampfreecodecamp
challenge have an issue
Bug
no close element in the more information section here s how you would set your h2 element s text color to blue catphotoapp
freecodecampfreecodecamp
challenge url
Bug
break url on view my solution in the profile page it lead to http analysis a href http challenge solution target blank eg evaluate to http codepen io adventurebear pen veovmw
freecodecampfreecodecamp
challenge have an issue
null
it mark the answer as correct when I put br between h1 and h2 tag when the prompt ask for something else
freecodecampfreecodecamp
css html waypoint
null
they give you the green light before you close the tag
freecodecampfreecodecamp
navbar on show html doesn t scale properly
Bug
resize the window have the navbar pop down before the frame move
freecodecampfreecodecamp
show html doesn t work properly in narrow view
Bug
div with frame cover button additonally navbar break
freecodecampfreecodecamp
view a user profile show your point not theirs
Bug
freecodecampfreecodecamp
bug in express
Bug
freecodecampfreecodecamp
complete challenge doesn t always add point
Bug
freecodecampfreecodecamp
ctrl enter doesn t work on chromium
Bug
I m on chromium linux a chromebook edit version 41 0 2272 76 ubuntu 14 04 64 bit be where this isn t work for I okay I ve test this out in firefox and it do work so it appear to be a chromium and almost certainly chrome browser issue
freecodecampfreecodecamp
field guide doesn t work
Bug
complete field guide array have be clear fill with only first field guide i d user can show all field guide but can t complete any of they if data completedfieldguide indexof data fieldguideid I 1 will always return 1 because data fieldguideid I i d should be use after click next field guide button no post request be fire to mark field guide as complete
freecodecampfreecodecamp
email notification camper news
Bug
the email notification that the user receive upon a new comment on one of his story on camper news be a little off here s what s wrong 1 the author of the comment be not the actual author but the user itself basically it s say that you ve reply to your own post 2 the link to the particular story be break 3 email get send out to both the comment author and story author although it s specifically address the story author either change the email content or send the email to the story author only I d be happy to issue a pr if you agree with the above point 3 need clarification
freecodecampfreecodecamp
long current streak not display correct value
Bug
I check 3 acct my own terakilobyte s and crisberrio all three be show the same value for both the long streak and the current streak while this may occur in practice my current streak should be 2 not 12 furthermore my long streak should be 8 not 12
freecodecampfreecodecamp
error handler need
Bug
these file need eror handle proper handling tip 1 end early 2 use next as callback in express middleware 3 if there be multiple asynchronous function such as database query they must either be nest or use promise chain to resolve preferably promise end early whenever an error exist in express middleware the callback function should be end by return the callback call with err as the first argument what do that mean down below be an example of what a proper error handle express route should look like notice how the function be pass into app use method as the second argument have three parameter this be a standard pattern in express to signify to express two thing 1 this be handler be what be call a middleware 2 if next the callback for the route handler be call by we the camper developer extraordinaire with an argument an error have occur and need to be handle by the error handler down the road js app use some end point function req re next some really cool code happen here then an async call below notice the callback be pass into the save method user save function err the save method must call the database lot of thing can go wrong here so if the driver that connect to the database detect something bad it will call this function that we pass into it with the error it detect we now need to be responsible camper and deal with this error if err if we get to this point that mean err exist and we need to end this function and call the callback return next err because of the return in the conditional above if we reach the code below that mean the database return with no error now we can proceed re send stuff happend save user end of line it be important to end the route handler in two way either by call next with or without an err argument this will tell express to look for the next route handler the other way be to send something down to the user use a res method re here be short for response mean the response to the user most of the time you will be use re render but you could also call re end to not send the user anything other than a message that say the request to the server have end here be some file where error be not properly be handle if you would like to help out respond here with the file that you would like call dibs on controller bonfire controller challenge this one be easy controller courseware controller story on ice as there be a pr wait to be merge controller user
freecodecampfreecodecamp
post to complete challenge be hang as route handler never close
Bug
l460
freecodecampfreecodecamp
unknown window connect mongo bug
Bug
when run the gulp command the browser launch and I get an error 500 error error get collection session at freecodecamp node modules connect mongo lib connect mongo js 160 19 refreshing fix the problem if gulp auto reload the project it s also fine if I rerun the gulp command the error happen again what it look like be happen be the browser be be launch before the following be actually ready javascript app use session resave true saveuninitialize true secret secret sessionsecret store new mongostore url secret db auto reconnect true mongostore have a callback and if I move the follow code into it the problem be fix javascript start express server app listen app get port function console log freecodecamp server listen on port d in s mode app get port app get env
freecodecampfreecodecamp
bug with email login
Bug
create a new account via email you can enter an email such as mrrenter fake this should be check for a com org etc also once this account be create it be bricke as well if you log out of it you can not log back in because the server say its not a valid email address there be still an entry in the table solution update the regex use for email validation
freecodecampfreecodecamp
possible memory leak
Bug
look through heroku log we be get a lot of r14 memory error
freecodecampfreecodecamp
comment overflow in news
Bug
comment overflow in firefox 36 0 1 on os x 10 9 5 link
freecodecampfreecodecamp
readme reference trello instead of waffle io
Bug
when freecodecamp freecodecamp 183 be close by update the link from trello to waffle io the text of the next sentence wasn t update on readme md if your issue or feature isn t on the board either open an issue on this github repo or message quincy larson to request to be add to the trello board
freecodecampfreecodecamp
gitter chat embed fix
Bug
add to framesrc csp fix 182
freecodecampfreecodecamp
gitter embed not work
Bug
I m not sure why but the gitter chat embed be not work my only guess be that they prevent embed but I know very little about iframe so I don t know img I recommend remove it or even consider replace it with a simple proprietary chat p s one be already available by we
freecodecampfreecodecamp
challengename be not define fix
Bug
be get this error in firefox and chrome uncaught referenceerror challengename be not define
freecodecampfreecodecamp
fcc point and achievement date wrongfully reset upon click challenge completion
Bug
action perform 1 pass a bonfire challenge and change point total from 55 to 56 2 go to profile and click on challenge 3 3 mark challenge 3 as complete challenge 3 have already be complete 4 see point total go back to 55 and see challenge 3 finish date set to 2 23 2015 expect result point total should remain at 56 and challenge 3 finish date should remain at the original date actual result point total revert to 55 and challenge 3 finish date set to erroneous date note thankfully bonfire completion be not reset further detail firefox 35 0 1 window 7 32 bit
freecodecampfreecodecamp
firefox web console and bonfire freeze
Bug
action perform 1 log onto bonfire through fcc on firefox 2 work through problem for 5 10mins then refresh page 3 work for 5 10 min and then add code before shutdown code before shutdown include a change in the first variable 7 4 after remove 7 from the first array to revert to default array web console and bonfire cease to work expect result and both bonfire and console refresh actual result no bonfire and console refresh output area with return array do not change further detail firefox 35 0 1 window 7 32 bit
freecodecampfreecodecamp
courseware confirm prematurely
Bug
when type the correct solution into the second courseware challenge I be congratulate before I have close the h2 tag the congratulation modal pop up once I have type this much screen shoot 2015 02 09 at 9 24 39 am if I click away from the modal I be able to complete the tag and then the modal pop up again I m assume whatever regex or otherwise that be check this need some tweak
freecodecampfreecodecamp
infinite challenge point
Bug
after a user complete all challenge click on take I to my next challenge forward to a challenge number that doesn t really exist and award a point for completion
freecodecampfreecodecamp
login avatar profile edit problem
Bug
I have have issue after fill out my fcc public profile test setting window 7 firefox 32 bit bug trigger fill out profile field profile field include username path to public profile twitter github coderbyte and linkedin bug description avatar picture will not display can not login can not login even after reset password can not edit profile after first profile edit bug reproduction could not reproduce with a secondary test account bug only find with link with google attach video of the bug
freecodecampfreecodecamp
forum post withdrawal
Bug
discourse may not be delete post withdraw by author withdraw post be supposedly program to be withdraw 24 hour after withdrawal I have attach a picture of an issue and anonymize the original poster the issue be find on google chrome on window 7 please note the post be post 4 day ago it be possible author may have withdraw post recently if post in question still exist by sunday 1 25 post may not be self withdraw uploading discourse post withdrawal bug jpg if picture be not visible feel free to find bug at
freecodecampfreecodecamp
no jquery exercise description in firefox
Bug
no description and therefore no way to complete these exercise in firefox screen shoot 2015 01 22 at 10 44 52 am
freecodecampfreecodecamp
can t login with github
Bug
I can t login with github when I try it log I into someone else s account I didn t realize it be log I into someone else s account so I delete the account once log in and then try again I be again log into someone else s account a different user this time out of curiosity I have to try delete this user account as well sorry and when I log back in again with github I be sign in as a different user again I assume these be all real account because they have different user profile pic and such it have be a few week since I have log in pre switch away from hipchat if that help
ebookfoundationfreeprogrammingbooks
update problem set competitive programming md
Question
add geeksforgeek what do this pr do add resource s remove resource s add info improve repo add resource for resource description have include geeksforgeek website why be this valuable or not extremely since it be a very popular website among developer how do we know it s really free it have ton of free material to look into and study from for book list be it a book for course list be it a course etc it have documentation practice problem and many more checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
feat create code of conduct ms md malay review request
Help Wanted
what do this pr do add resource for resource description this pr add a translation of code of conduct md document in malay my language for the free programming book repository and follow the file name convention code of conduct my md as indicate the document provide an overview of code of conduct to the repository and serve as a guideline to ensure safe environment for both new and experienced contributor why be this valuable or not the malay translation of the code of conduct md be valuable because it make the repository more inclusive and accessible to malay speak contributor such as malaysian singaporean and bruneian it lower the entry barrier for new contributor by provide guideline of code of conduct in native malay language that enhance the safety and overall user experience how do we know it s really free this be my personal translation contribution without use pay third party service hence it be free to use for book list be it a book for course list be it a course etc no this be just translation of the original code of conduct md into malay language as find in code of conduct my md checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
feat add malay ms translation howto ms md malay review request
Help Wanted
what do this pr do add resource s for resource description this pr add a translation of howto md document in malay my language for the free programming book repository and follow the file name convention howto my md as indicate the document provide an overview of how to contribute to the repository and serve as a quick guide for both new and experienced contributor why be this valuable or not this malay translation of the howto md be valuable because it make the repository more inclusive and accessible to malay speak contributor such as malaysian singaporean and bruneian it lower the entry barrier for new contributor by provide essential resource and guidance and it enhance the overall user experience how do we know it s really free this be my personal open source contribution and do not involve any pay 3rd party service hence it be free for book list be it a book for course list be it a course etc this be not a book or course it s a translate document in markdown format that serve as a guide for contributor especially those who speak malay language checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
improve issue and pr template
Question
what do this pr do improve repo for resource description I add issue template and change a few thing in pr template why be this valuable or not this will close checklist x read our contribute guideline x use an informative name for this pull request follow up check the status of github action and resolve any report warning davorpa could you review this pr
ebookfoundationfreeprogrammingbooks
difference between course and screencast
Question
what be the difference between a screencast and a course course l256 screencast l50
ebookfoundationfreeprogrammingbooks
outdate partial translation zh since late text review 3462
Help Wanted
both chinese translation be outdated and partial do since late text review 3462 we need take english file as reference to review to adapt anybody
ebookfoundationfreeprogrammingbooks
big section be ripe for division
Help Wanted
here be some section that have accumulate many item that might be numerous enough to make their own section 3 or more item be enough to make a stand alone section book free programming book subject md misc book free programming book subject md software architecture book free programming book subject md mathematics course free programming course subject en md misc
ebookfoundationfreeprogrammingbooks
volunteer
Help Wanted
we need help to make this repo work new contributor often need help fit their contribution into the repo feel free to offer help to new contributor especially if you share a language with they
ebookfoundationfreeprogrammingbooks
separate e book and video tutorial
Question
separate e book and video tutorial it will b easy to find out
ebookfoundationfreeprogrammingbooks
add css handbook
Question
what do this pr do add resource for resource the css transition vs animation handbook description it s a handbook about css transition and css animation why be this valuable or not it s valuable because we can learn the difference between css transition and css animation and choose well which one to use how do we know it s really free it s free because it s from freecodecamp which be open and free to the public for book list be it a book for course list be it a course etc it s a web handbook checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
feat add flutter resource
Question
what do this pr do add resource s of flutter for resource description why be this valuable or not because that include the very basic of flutter how do we know it s really free it s totally free for book list be it a book for course list be it a course etc its a course checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
update free programming book lang md
Duplicate
add think stat book by allen b downey on eda what do this pr do add resource s remove resource s add info improve repo for resource description why be this valuable or not how do we know it s really free for book list be it a book for course list be it a course etc checklist read our contribute guideline search for duplicate include author s and platform where appropriate put list in alphabetical order correct spacing add need indication pdf access note under construction use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
update free course en md
Question
what do this pr do add resource s remove resource s add info improve repo add for resource description in this course you will learn about the r console basic datum type datum frame import and export data statistical analysis and datum visualization no prior code experience be require and you will learn by do with hand on exercise and project throughout the course by the end of the course you will be able to write basic r code and use r to analyze and visualize datum this course be ideal for beginner who want to learn r and it be also a great resource for datum scientist and statistician who want to brush up on their r skill the course be teach by experienced instructor and it be self pace so you can learn at your own convenience why be this valuable or not this be valuable because it teach the basic of r in bite sized piece how do we know it s really free you can click on the link and sign for free to start the course for free for book list be it a book for course list be it a course etc it be a course checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
update howto bn md bengali review request
Help Wanted
what do this pr do add resource s remove resource s add info improve repo for resource description this pr add a how to at a glance document in bengali language for the free programming book repository the document provide an overview of how to contribute to the repository and serve as a quick guide for both new and experienced contributor why be this valuable or not this addition be valuable because it make the repository more inclusive and accessible to bengali speak contributor it lower the entry barrier for new contributor by provide essential resource and guidance and it enhance the overall user experience how do we know it s really free the content be translate and adapt from the original english version and no restriction or pay resource be mention it be consistent with the repository s goal of provide free programming resource for book list be it a book for course list be it a course etc this be not a book or course it s a document that serve as a guide for contributor checklist read our contribute guideline search for duplicate include author s and platform where appropriate put list in alphabetical order correct spacing add need indication pdf access note under construction use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
update howto bn md bengali review request
Help Wanted
what do this pr do add resource s remove resource s add info improve repo for resource description this pr add a how to at a glance document in bengali language for the free programming book repository the document provide an overview of how to contribute to the repository and serve as a quick guide for both new and experienced contributor why be this valuable or not this addition be valuable because it make the repository more inclusive and accessible to bengali speak contributor it lower the entry barrier for new contributor by provide essential resource and guidance and it enhance the overall user experience how do we know it s really free the content be translate and adapt from the original english version and no restriction or pay resource be mention it be consistent with the repository s goal of provide free programming resource for book list be it a book for course list be it a course etc this be not a book or course it s a document that serve as a guide for contributor checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
update code of conduct uk md ukrainian review request
Help Wanted
what do this pr do improve ukrainian language fix typo for resource description why be this valuable or not it give well understanding for ukrainian member how do we know it s really free for book list be it a book for course list be it a course etc checklist read our contribute guideline search for duplicate include author s and platform where appropriate put list in alphabetical order correct spacing add need indication pdf access note under construction use an informative name for this pull request follow up check the status of github action and resolve any report warning
ebookfoundationfreeprogrammingbooks
update free course hi md
Question
what do this pr do add resource s for resource add figma course in hindi why be this valuable or not yes it be valuable how do we know it s really free it be available on youtube for book list be it a book for course list be it a course etc checklist x read our contribute guideline x search for duplicate x include author s and platform where appropriate x put list in alphabetical order correct space x add need indication pdf access note under construction x use an informative name for this pull request follow up check the status of github action and resolve any report warning