e36832b1ca
Add a "Variable lifecycle" short note ( #19263 )
2018-10-15 23:19:00 -05:00
e8dd96f73a
Add info to article. ( #19196 )
...
A stack is a First In Last Out (FILO) or Last In First Out (LIFO) Data Structure
2018-10-15 23:16:23 -05:00
7df1e43eda
Update index.md ( #19200 )
...
Added a paragraph. An image showing different agile methodologies.
2018-10-15 23:15:52 -05:00
897535e4a0
Added Linear Search function in Java8 ( #19214 )
2018-10-15 23:14:59 -05:00
fac8e975dd
Added Iterative and Recursive Binary Search in Java ( #19219 )
...
Code for Iterative and Recursive Binary Search has been appended. Thanx !
2018-10-15 23:14:08 -05:00
fb80ec288e
Added sample code for D3Js library. ( #19227 )
...
I've appended the code for a simple html file which renders text using D3JS library.
2018-10-15 23:13:17 -05:00
23806a9de7
Add sort using lamda function. ( #19048 )
...
* Update index.md
* Update index.md
2018-10-15 23:08:37 -05:00
4a71c171c2
add 'Challenge' & 'video tutorial' site ( #19146 )
2018-10-15 23:06:51 -05:00
806b67b684
Added changes to "What can be inherited ?" section ( #19147 )
2018-10-15 23:06:28 -05:00
26e0d7bcec
Add more information regarding mining and transactions ( #19159 )
2018-10-15 23:02:57 -05:00
eeb050085f
Reorganized & added Version Control info ( #19162 )
2018-10-15 23:02:17 -05:00
1b43e640d1
Added initial content for the Certbot stub. ( #19164 )
2018-10-15 23:01:35 -05:00
7420ed7444
Added the cat
command. Added external resources. ( #19106 )
2018-10-15 23:00:55 -05:00
37318fa8da
Revised formatting and added information ( #19431 )
...
Revised formatting to follow PSR, included additional examples, added multiple conditions with logical operators, and added a reference to ternary operators.
2018-10-15 20:59:38 -07:00
c8de747d0e
Update index.md ( #19176 )
...
Created a draft guide for finding a percent. Also added info about arithmetical operations on percentages. (first pull request, so please forgive any errors).
2018-10-15 22:58:05 -05:00
0cd8496ad0
Added fall-through documentation & return notation ( #19428 )
...
* Added fall-through documentation & return notation
Fall-through is an important feature of switch statements. In addition, best practices with break-usage have been included.
* fix: added closing switch curly braces
* fix: corrected link syntax
2018-10-15 20:57:51 -07:00
fa6a0fc8d5
Added information on > >> and | ( #19178 )
...
Created a file discussing I/O redirection using pipes and flow control codes for chaining bash commands.
2018-10-15 22:57:43 -05:00
dd91a4ab28
Javascript: add hint to Use Multiple Conditional (Ternary) Operators ( #19113 )
...
* Javascript: add hint to Use Multiple Conditional (Ternary) Operators
Add hint to Use Multiple Conditional (Ternary) Operators (https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/use-multiple-conditional-ternary-operators/ and https://guide.freecodecamp.org/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-multiple-conditional-ternary-operators/ )
* Update index.md
2018-10-15 22:57:24 -05:00
9050a085dc
Added navigation with dirs/push/popd ( #19179 )
2018-10-15 22:56:38 -05:00
f7c29339d5
Add 'python' book and course ( #19186 )
2018-10-15 22:56:09 -05:00
ea983e5c13
Add info to the article ( #19192 )
...
It is also known as an 'entry-controlled loop' since the condition is checked before the next iteration. Another example of an 'entry-controlled loop' is a while loop.
2018-10-15 22:54:35 -05:00
51beff16ef
Add info to the article ( #19194 )
...
They can be categorized as:
(a) Entry controlled loops- Loops in which the condition is checked before every iteration. e.g. for loop, while loop
(a) Exit controlled loop- Loops in which the execution takes place once even if the condition is false. e.g. for do-while loop
2018-10-15 22:54:02 -05:00
15de6b2491
added Recommended Reading section ( #19105 )
2018-10-15 22:52:12 -05:00
133fbdeb25
fixed typo issue ( #19429 )
...
converted is to it
2018-10-15 20:51:49 -07:00
c7ce87090f
destructuring an array in ES6 rest ( #19424 )
...
* destructuring an array in ES6 rest
* fix: added const on line 56
2018-10-15 20:51:09 -07:00
44641ab13a
destructuring an array in ES6 rest ( #19426 )
...
* destructuring an array in ES6 rest
* fix: removed extra space in each code line
2018-10-15 20:48:45 -07:00
3947a5bf03
formatting update, removed empty Source 2 ( #19114 )
...
closed off <li> tag from Source 1
2018-10-15 22:48:18 -05:00
5e5c162303
[Guide] Basic JS: Profile lookup. Fixes and enhancements ( #19115 )
...
- Add title
- Fixed HTML/markdown tags
- Resources to bottom and in markdown
- Deleted notes for contributors
- Add JS highlighting to code example
- Add alternative code solution and Run link
2018-10-15 22:47:34 -05:00
2ab6d429f5
Javascript: add hint to Replacing If Else Chains with Switch ( #19116 )
...
Add hint to Replacing If Else Chains with Switch (https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/replacing-if-else-chains-with-switch/ and https://guide.freecodecamp.org/certifications/javascript-algorithms-and-data-structures/basic-javascript/replacing-if-else-chains-with-switch/ )
2018-10-15 22:46:55 -05:00
892232b70e
Javascript: add hint to Return Early Pattern for Functions ( #19118 )
...
Add hint to Return Early Pattern for Functions (https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/return-early-pattern-for-functions/ and https://guide.freecodecamp.org/certifications/javascript-algorithms-and-data-structures/basic-javascript/return-early-pattern-for-functions/ )
2018-10-15 22:46:00 -05:00
b85e58deeb
Added "Nested Functions" section to the file ( #19120 )
...
* Added "Nested Functions" section to the file
* Update index.md
* Revert "Update index.md"
2018-10-15 22:44:56 -05:00
179a6f6bc8
fix(guide): Fix typo and adjust examples ( #19122 )
...
Subsitute to substitute, and adjusted example messages to fit with the example images.
2018-10-15 22:43:55 -05:00
282ff3d4b7
Added info on nesting functional components ( #19131 )
2018-10-15 22:41:02 -05:00
49f5b96d4c
Add section on creating redux middleware ( #19093 )
2018-10-15 22:40:47 -05:00
3f9f258203
Added 'cp' command description ( #19145 )
2018-10-15 22:34:44 -05:00
c1e2da97e0
Mentioned 3 types of lists at beginning ( #19074 )
...
The article structure and formatting doesn't make it obvious what the third type of list is, so I added the names of the 3 types of list to the first paragraph.
2018-10-15 22:34:10 -05:00
3fda823973
feature(guide): added usage of default parameters ( #19087 )
...
When the default parameters are not in the end of the parameters list, they still can be used if you pass 'undefined' arguments.
2018-10-15 22:32:46 -05:00
8d8b7843b6
Added another usage example and fixed typos ( #19088 )
2018-10-15 22:32:21 -05:00
fb12f02104
Update to add-fractions-with-unlike-denominators ( #19095 )
...
Described second method for smaller common denominator
2018-10-15 22:30:23 -05:00
2a11e0dfd7
Improved wording in all-factors-of-a-number ( #19096 )
...
* Update to all-factors-of-a-number
Improved wording for better understanding
* Update index.md
2018-10-15 22:30:00 -05:00
290e16e80d
Variable Arguments (Varargs) Method ( #19098 )
...
if we need a method in which number of parameters varies then use this type.
2018-10-15 22:29:00 -05:00
4f12490bcd
Update index.md ( #18898 )
...
add ignite as a resource for getting started
2018-10-15 22:26:31 -05:00
23dddbf25f
Update index.md ( #19039 )
2018-10-15 22:26:06 -05:00
6f4e23bf55
Add a guide article for the Elm architecture ( #19042 )
...
* Add architecture stub and link to it in language intro
* Add Elm architecture initial article
* Add wrap up section to architecture article
* Add link to official elm guide
2018-10-15 22:25:46 -05:00
0bae15e8c3
Clarification of the declaration order overriding ( #19046 )
...
* Clarification of the declaration order overriding
Previous text was talking about an override but it may also confuse readers that the override was done in the order of the listing of class names inside the h1.
I also added an extra case to better clarify the situation.
* Small change mentioning the order of declaration
Missed an order of declaration emphasis on my previous commit, adding it on this one.
2018-10-15 22:23:15 -05:00
80eeb06ac0
suggestion for OS X ( #19047 )
2018-10-15 22:23:05 -05:00
7d3219cb30
Add text "Learn More about CS" ( #18939 )
2018-10-15 22:21:45 -05:00
1d217b53b5
Update index.md ( #18947 )
...
Added a python book recommendation to the book-recommendations page.
2018-10-15 22:20:47 -05:00
3939a4c433
Update index.md ( #19051 )
2018-10-15 22:18:59 -05:00
5efcae8dc0
Corrected typo ( #19056 )
2018-10-15 22:17:56 -05:00