Commit Graph

283 Commits

Author SHA1 Message Date
Logan Tegman
a4e4df1a55 Fix Waypoint Count Backwards Seed Code
Closes #3968
2015-10-28 15:18:20 -07:00
Logan Tegman
83c3fa6ae4 Fix Waypoint Delete Properties From an Object Tests
Closes #3960
2015-10-28 14:33:26 -07:00
Berkeley Martinez
35e8efb06d Fix map iteration and object update copy. 2015-10-28 10:43:45 -07:00
Berkeley Martinez
b390db0be4 Fix update properties challenge 2015-10-28 10:35:01 -07:00
Quincy Larson
515a011448 one more commit before resuming on Berkeley side 2015-10-28 10:11:46 -07:00
Quincy Larson
4820ae2e36 everything is ready except OOP 2015-10-28 05:13:49 -07:00
Quincy Larson
6a7d9e2878 fix some mis-mergings for basic-javascript.json 2015-10-28 02:39:51 -07:00
Quincy Larson
7326996bdb Merge branch 'staging' into improve-early-challenges
Conflicts:
	seed/challenges/basic-javascript.json
	seed/challenges/bootstrap.json
	seed/challenges/html5-and-css.json
	seed/challenges/object-oriented-and-functional-programming.json
2015-10-28 02:20:09 -07:00
Quincy Larson
4011efdaed Merge pull request #3909 from ltegman/fix/waypoint-slot-machine-permits-more-efficient-answer-2278
Fix Waypoint Create Slot Machine Tests
2015-10-28 01:49:39 -07:00
Quincy Larson
eef1c5136a finish JavaScript and OOP sections for QA 2015-10-28 01:15:54 -07:00
Quincy Larson
419f6507d0 major improvements to basic-javascript.json 2015-10-27 23:16:08 -07:00
Em01
0db2882f42 Fixed same issue in waypoint 4 2015-10-27 14:06:34 +00:00
Em01
ea632c3a79 Fixed additional typos. 2015-10-27 09:49:56 +00:00
Em01
35aa781215 Fixed typos in in JS Waypoints. Closes #3897 2015-10-26 23:59:43 +00:00
Logan Tegman
082eb3065f Fix Waypoint Create Slot Machine Tests
Permits solutions that don't explicitly call Math.random three times and instead wrap that operation in a function.
2015-10-25 23:08:00 -07:00
Quincy Larson
df8df1172b fix waypoint typo 2015-10-25 19:47:02 -07:00
Ben McMahon
8ed3d3e723 Merge pull request #3595 from FreeCodeCamp/curriculum/JSONAndAJAX
Curriculum/json and ajax for QA and copy check
2015-10-26 00:47:30 +00:00
Quincy Larson
2ca89c19e9 Merge branch 'ahstro-3228' of https://github.com/ahstro/freecodecamp into ahstro-ahstro-3228
Conflicts:
	seed/challenges/basic-javascript.json
2015-10-24 01:39:05 -07:00
Quincy Larson
f6fe58e866 merge staging and make my own minor improvements 2015-10-23 23:45:42 -07:00
Quincy Larson
dfe0ba1a7b Merge branch 'saintpeter-new-for-loops' of https://github.com/SaintPeter/FreeCodeCamp into SaintPeter-saintpeter-new-for-loops 2015-10-23 22:51:41 -07:00
Quincy Larson
7eb1870c79 fix second instance of logger.html 2015-10-23 22:48:49 -07:00
Quincy Larson
7c7454bc94 Merge branch 'fix/test-slot-machine-to-life' of https://github.com/natac13/freecodecamp into natac13-fix/test-slot-machine-to-life 2015-10-23 22:45:23 -07:00
Quincy Larson
97a3b12bfb finish editing ajax challenges 2015-10-23 21:32:51 -07:00
Logan Tegman
f017682ffe Merge pull request #3790 from sanspace/fix/min-value-for-random-numbers-test-issue-3764
Fix accepting incorrect answer in generating random values within a range waypoint
2015-10-18 07:36:46 -07:00
Santhosh Kumar Srinivasan
501c63fc29 Fix accepting incorrect answer
Make min nonzero value
Alter the last test to accept only correct answers
2015-10-18 13:44:17 +05:30
Jonathan Lee Slew
72cec2ecab Added missing spaces and fixes a capitalization typo in the description of the "Use Bracket Notation to Find the Nth Character in a String" waypoint.
See issue #3783
2015-10-17 17:40:30 -04:00
Aniruddh Agarwal
97b5c24b46 Fix typo in pop waypoint test 2015-10-15 16:27:55 +08:00
Quincy Larson
bf17a54b75 add time estimates to challenge blocks on map 2015-10-12 22:56:10 -07:00
Logan Tegman
41fc89b3c5 Fix Waypoint Iterate with a For Loop Typo
Closes #3691
2015-10-10 09:17:36 -07:00
Anton Strömkvist
7dcb422ce3 Merge pull request #3661 from BradenWhited/fix/Lesson-31-More-Concise-Comment
Fix - Comment In Lesson 31 Needs To Be More Concise
2015-10-09 08:14:38 +02:00
Braden Whited
ba9c4a694e Lesson 31 - Javascript Generate random whole numbers within a range comment error #1947
Comment needed changed to be more concise.

See #1947
2015-10-08 17:47:06 -04:00
Anton Strömkvist
6397eda8dc Merge pull request #3603 from ltegman/fix/find-white-space-explaination-2838
Fix Waypoint: Find White Space Explaination
2015-10-08 16:19:46 +02:00
Quincy Larson
0b583dd9b3 fix message on slot machine challenge 2015-10-07 18:33:01 -07:00
Quincy Larson
c709daabd1 update challenge sequence and break on boarding into two sections 2015-10-07 00:41:43 -07:00
Logan Tegman
668852fdc7 Fix Waypoint: Find Whitespace spelling and grammar. 2015-10-06 08:45:21 -07:00
ahstro
39b4a73efb 'Regular Expressions'-waypoint improvements
* Remove unnecessary `i`-flag from tests and test messages,
  e.g. `/\s+/gi` => `/\s+/g`
* Remove dupliate backslashes from regex test messages,
  e.g. `/\\s+/g` => `/\s+/g`

The two backslashes were probably just an accident caused by how
multiple escapes are necessary with the current way tests are handled.
The `i`-flag was just unnecessary since its purpose is to ignore the
case of alphabetic characters.
2015-10-06 15:13:53 +02:00
Logan Tegman
57d0e5750b Fix Waypoint: Find White Space Explaination
Changed text description to make it clear that `\s` is used to find all types of whitespace characters, not just `" "`.
Closes #2838
2015-10-05 22:50:09 -07:00
SaintPeter
47bd1cbb1a New for loop waypoints and verbiage improvements 2015-10-03 20:00:09 -07:00
Quincy Larson
344a5b9103 Merge branch 'staging' into map-restructure
Conflicts:
	seed/challenges/basic-ziplines.json
	seed/challenges/intermediate-ziplines.json
2015-10-02 11:23:54 -07:00
Quincy Larson
b78696463d remove vestigial difficulty attribute from challenges 2015-10-02 01:06:27 -07:00
Quincy Larson
8dc908aa30 restructure challenges and add certificate challenge skeletons 2015-10-01 23:54:20 -07:00
Berkeley Martinez
266a505cfb Merge pull request #3548 from FreeCodeCamp/converge-bonfires
refactor all Bonfire tests to use assert and have friendly messages
2015-09-30 19:47:20 -07:00
Quincy Larson
e71d748e91 Merge branch 'staging' into converge-bonfires
Conflicts:
	seed/challenges/basic-bonfires.json
	seed/challenges/intermediate-bonfires.json
2015-09-30 19:06:28 -07:00
Quincy Larson
eb7aaf4c64 fix exact change and QA all JS challenges 2015-09-30 18:33:32 -07:00
natac13
0b08459caa fix test so it does not match code not in the answer 2015-09-30 05:13:13 -04:00
Mike
44e43000c2 Remove Unnecessary Left Over Semicolon
Remove left over semicolon from function that was converted from an anonymous function at https://github.com/FreeCodeCamp/FreeCodeCamp/issues/3287
2015-09-30 02:40:21 -04:00
Aniruddh Agarwal
1a6927afce Merge pull request #3520 from abhisekp/fix/waypoint-manipulate-arrays-with-unshift
Minor fix comments in Waypoint: Manipulate Arrays With unshift
2015-09-28 09:19:05 +08:00
Abhisek Pattnaik
b5141f50ae Fix comments in Waypoint: Manipulate Arrays With unshift 2015-09-28 03:45:13 +05:30
Abhisek Pattnaik
86c07dcd97 Correct comment
Replace "ourArray[1]" with "ourArray"
close FreeCodeCamp/FreeCodeCamp#3515
2015-09-28 01:04:59 +05:30
ahstro
5f4ecc72e4 Slot Machine false positives
The 'Add your JavaScript Slot Machine Slots' waypoint would
throw false positives if all slot numbers were the same, effectively
allowing the campers to pass the test without having written any code.
2015-09-21 23:42:19 +02:00