From 1541edc145f2d4b2db520382e12e4bfbec49a031 Mon Sep 17 00:00:00 2001 From: Roger Turnau Date: Fri, 14 Aug 2015 16:29:16 -0400 Subject: [PATCH 1/4] Added improved instructions to Least Common Multiple Bonfire. --- challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index 954d402ce9..c47d55b9ef 100644 --- a/challenges/intermediate-bonfires.json +++ b/challenges/intermediate-bonfires.json @@ -547,7 +547,7 @@ "title": "Smallest Common Multiple", "difficulty": "2.11", "description": [ - "Find the smallest number that is evenly divisible by all numbers in the provided range.", + "Find the smallest number that is evenly divisible by all numbers in the provided range. In other words, given the range [3,7], you will need to find the least common multiple of 3, 4, 5, 6, and 7.", "The range will be an array of two numbers that will not necessarily be in numerical order.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ], From 8c4469fdd7bbf83605674e62a908e062f2daf78f Mon Sep 17 00:00:00 2001 From: Isabell Long Date: Sat, 15 Aug 2015 19:53:04 +0100 Subject: [PATCH 2/4] Close a tag so that only actual code is marked - Fixes #1767, hopefully. --- challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index d3a44025d5..36744e2f9c 100644 --- a/challenges/html5-and-css.json +++ b/challenges/html5-and-css.json @@ -538,7 +538,7 @@ "title": "Change the Font Size of an Element", "difficulty": 1.13, "description": [ - "Create a second p element with the following kitty ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.", + "Create a second p element with the following kitty ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.", "Then, inside your <style> element, set the font-size of all p elements to 16 pixels.", "Font size is controlled by the font-size CSS attribute, like this: h1 { font-size: 30px; }.", "See if you can figure out how to give both of your p elements the font-size of 16 pixels (16px). You can do this inside the same <style> tag that we created for your red-text class." From e035a4a1322620c67efd2da7497545a6eae86b4e Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Sat, 15 Aug 2015 12:19:36 -0700 Subject: [PATCH 3/4] add random attribute to user props Allows easier random sampling --- loopbackMigration.js | 1 + 1 file changed, 1 insertion(+) diff --git a/loopbackMigration.js b/loopbackMigration.js index ab86785b34..a06eea83c1 100644 --- a/loopbackMigration.js +++ b/loopbackMigration.js @@ -124,6 +124,7 @@ var users = dbObservable user[provider + 'id'] = user[provider]; user[provider] = null; }); + user.rand = Math.random(); return user; }) From f0cd33901c6d9e2a84b9aa645beb337d5e889f0c Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Sat, 15 Aug 2015 14:04:01 -0700 Subject: [PATCH 4/4] Update intermediate-bonfires.json --- challenges/intermediate-bonfires.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index c47d55b9ef..10c1c35bcf 100644 --- a/challenges/intermediate-bonfires.json +++ b/challenges/intermediate-bonfires.json @@ -547,7 +547,8 @@ "title": "Smallest Common Multiple", "difficulty": "2.11", "description": [ - "Find the smallest number that is evenly divisible by all numbers in the provided range. In other words, given the range [3,7], you will need to find the least common multiple of 3, 4, 5, 6, and 7.", + "Find the smallest number that is evenly divisible by all numbers in the provided range.", + "In other words, given the range [3,7], you will need to find the least common multiple of 3, 4, 5, 6, and 7.", "The range will be an array of two numbers that will not necessarily be in numerical order.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ],