Commit Graph

21846 Commits

Author SHA1 Message Date
bed432b93b fix(donate): refactor form handler 2019-02-14 14:14:10 +00:00
82219916bf fix: reorder modules and add https 2019-02-14 14:14:10 +00:00
a30637d934 fix(donate): use intialState as recommended 2019-02-14 14:14:10 +00:00
6c41dd2b7c fix(donate): update component names 2019-02-14 14:14:10 +00:00
8fbd26ff33 fix: optimize donate other 2019-02-14 14:14:10 +00:00
c0d05cc96a feat: wrap paypal form with ReactGA 2019-02-14 14:14:10 +00:00
37f7dd1800 feat: make component modular and GA ready 2019-02-14 14:14:10 +00:00
baf425f907 fix: reactify donation other 2019-02-14 14:14:10 +00:00
66d628ff2f fix(donate): extract active donors from selectors 2019-02-14 14:14:10 +00:00
02e6e711cf fix(donate): refactor handlers for charges 2019-02-14 14:14:10 +00:00
e84f021d8b fix(donate): refactor to add completion in form 2019-02-14 14:14:10 +00:00
d816bc4acf feat(donate): initial port of the other ways 2019-02-14 14:14:10 +00:00
6b7c7d6033 fix(donate): update styling and refactor components 2019-02-14 14:14:10 +00:00
08d6c06250 feat(donate): intial port from the donate app 2019-02-14 14:14:10 +00:00
d09cbfecba chore: update lockfile for ui fixes from master 2019-02-14 14:14:10 +00:00
0b32358936 fix(guide): add warning about a potential security issue (#33221) 2019-02-14 19:31:21 +05:30
5e137d2022 fix(client): make render functions pure 2019-02-14 13:36:06 +00:00
361ce5cd8e fix: Broken regex for short news links 2019-02-14 16:54:39 +05:30
0e0bebed4a fix: Use absolute path for auth0 callback 2019-02-14 16:54:39 +05:30
b57d3dddcf fix(Learn): Gives the search bar a defined height to prevent it from overflowing on Retina devices. 2019-02-14 11:01:35 +00:00
07f11288b2 fix(style): navbar buttons may not properly highlighted 2019-02-14 10:59:29 +00:00
5a8f9bff41 feat(guide): add an example of custom component 2019-02-14 09:33:53 +00:00
6a93b44aca feat(client): use custom components for guide articles 2019-02-14 09:33:53 +00:00
54e6f4d6ae add image (#27424) 2019-02-13 20:37:33 -08:00
28b92c31a7 Add caution to Any Type documentation (#30412) 2019-02-13 21:15:29 -07:00
f86f39a97e -**Cost Reduction**- It's a very early phase in software testing so e… (#32352)
* -**Cost Reduction**- It's a very early phase in software testing so eventually it reduces cost of Testing as defects are captured in the early stage.

* fix: bullet formatting
2019-02-13 21:14:15 -07:00
26bc83d9ed Reusability (#30317) 2019-02-13 21:00:55 -07:00
a39b27cfa9 Fixed spelling and grammar issues (#32678)
Edited spelling and grammar
Added to description of OR
Edited capitalization of "True" and "False" for consistency
2019-02-13 20:57:26 -07:00
af75d47594 Fixed Typographical Error in guide/english/react/index.md (#35187)
* Update index.md

* Update index.md
2019-02-13 20:48:33 -07:00
e360c8d627 Fix typo, line 46 (#32806) 2019-02-13 19:37:35 -08:00
0aa4d109d0 Added sentence on comparisons (#30208) 2019-02-13 19:36:54 -08:00
4b7230001a Update index.md (#30306) 2019-02-13 20:13:53 -07:00
b9227d0d99 added React maintainers info (#31341) 2019-02-13 19:57:28 -07:00
00f473ed97 Standardized and corrected truth tables (#29203)
Improved the truth tables by capitalization of truth values and standard order.
Changed "A" and "B" to "P" and "Q" (the standard abbreviations in propositional logic).
Corrected an explicit error in the truth table for Conjunction (one of the values for "P&&Q" was incorrect).
2019-02-13 19:56:54 -07:00
0be5360a93 described return 0. (#32117)
described use of return 0 in function.
2019-02-13 20:46:36 -06:00
e719c154f6 Add "ng add" to Angular-CLI (#31561) 2019-02-13 18:45:06 -08:00
58e10048a6 Explained int main() (#32051)
Return value of main function explained
2019-02-13 20:26:42 -06:00
ed816b8266 Extra information (#31621) 2019-02-13 20:02:05 -06:00
c5e7a9aa78 Fix comparison between sorting and search (#31149)
* Fix comparison between sorting and search

* fix: changed much to very
2019-02-13 16:21:13 -08:00
2620693b20 example in php added (#26864)
* example in php added

php example of linear search added

* exmaple in php modified (#4)

exmaple in php modified

* example in php modified (#6)
2019-02-13 16:20:15 -08:00
e0d97ea3e1 C implementation of linear search (#26629)
* C implementation of linear search

C implementation of linear search using pointers vs array indexing

* fix: replaced existing c solution
2019-02-13 16:19:21 -08:00
87bbbeee8d Added C code of GCD (#26779)
* Added C code of GCD

* fix: correct code format syntax
2019-02-13 15:40:56 -08:00
5181843c25 Add a gif showing binary search and linear search (#32384) 2019-02-13 15:39:07 -08:00
ee9920fbb8 Avoiding overflow in getting mid index in Java (#25211)
* Avoiding overflow in getting mid index in Java

start + (end - start)/2 is preferable over (start + end)/2 to avoid overflow errors

* Update index.md
2019-02-13 15:37:30 -08:00
7d30fdbe3a Formating changes and clarified text. (#30093) 2019-02-13 17:15:01 -06:00
99f25ca627 Add C++ code (#25437)
* Add C++ code

* fix: removed recursive version
2019-02-13 15:03:42 -08:00
36e356e6fd GCD function using Recursion in Python and Java (#25226)
function in Python and method in Java to perform gcd using recursion
2019-02-13 14:41:55 -08:00
99cf6090bd fix(curriculum): getUserInput is not defined 2019-02-13 22:01:38 +00:00
f4e264e49d Extended Euclidean algorithm (#25148)
* Extended Euclidean algorithm

* fix: made header smaller
2019-02-13 13:34:52 -08:00
0dc0edcded Replace Github -> GitHub (Portuguese) (#35166) 2019-02-13 10:39:06 -08:00