Commit Graph

24853 Commits (99c86be86b68fe71f7606e96d1bfc5f80c85d457)

Author SHA1 Message Date
M Rumman Hasan Khan ee77adbee9 Guide to the Data Visualization with D3 Work with Data in D3 (#36651)
* Guide to the Data Visualization with D3 Work with Data in D3

* Guide to data visualization with d3 work with data in d3

* Delete index.md
2019-08-22 10:14:48 -07:00
Stéphane Angeles 9b1e125022 Cambios de traducción y mejoras (#32973)
Distintas mejoras de traducción. Sobretodo el continuo uso de "Cuerdas" en vez de "Cadena" para el término de String.
2019-08-22 10:11:24 -07:00
Lance Rutkin 7a97974099 fix(donate): modal opens at most once per session (#36632)
* Track if donation modal has opened in a session

* Fix prettier problem

* Create separate action that switches donationRequested
2019-08-22 12:59:13 +05:30
Randell Dawson 316503bfaa fix: added forumTopicId to new challenge (#36609) 2019-08-21 11:20:05 -05:00
Kristofer Koishigawa 754981b728 fix: Global color vars (#36653)
* Added colors from the style guide to :root so they're available globally. Also switched out hex codes for named variables in .dark-palette and .light-palette wherever possible.

* feat: add success and danger colors to root
2019-08-21 16:19:21 +03:00
Tom 45765ad03e fix/margins-on-buttons (#36649) 2019-08-21 01:25:51 +03:00
alberto d03c71b990 Improved Spanish List Guide (#31432)
Added a lot more of information and code examples
2019-08-20 14:13:12 -07:00
Alperen Turkoz 9d30fe7027 feat(guide): Add a new solution using reduce (#36629) 2019-08-20 09:39:25 -07:00
Willy David Jr a9fb8ac1c3 Corrected access on constant variable and access on attribute properties. (#36586)
First on constant variable issue:

This will not compile:

[Plugin(MyPluginName)] // Won't compile because MyPluginName isn't const
[Plugin(MyConstPluginName)] // OK
[Plugin("My Cool Plugin")] // OK

In order to access properties on the static class, it must specify the name of the class before the properties name as proposed on this change:

[Plugin(Variables.MyPluginName)] // Won't compile because MyPluginName isn't const
[Plugin(Variables.MyConstPluginName)] // OK
[Plugin("My Cool Plugin")] // OK

Second on access on attribute properties:

In order to access plugin.Name on this code:

var type = typeof(MyPlugin); // Returns a Type object representing our MyPlugin class
	var attributes = System.Attribute.GetCustomAttributes(type); // Returns an Attribute[]

	foreach (var a in attributes)
	{
		if (a is PluginAttribute plugin)
			Console.WriteLine($"Plugin Name: {plugin.Name}");
	}

You need to cast if first to the right class, then access the properties, as the above code will generate a compile-time error:

var type = typeof(PluginAttribute); // Returns a Type object representing our PluginAttribute class
	var attributes = System.Attribute.GetCustomAttributes(type); // Returns an Attribute[]

	foreach (var a in attributes)
	{
		if (a is PluginAttribute)
                    {
                        PluginAttribute plug = (PluginAttribute)a; //Cast it first to PluginAttribute class before you can access all accessible properties
                        Console.WriteLine($"Plugin Name: {plug.Name}");
                    }
	}
2019-08-20 09:32:05 -07:00
Cleo Aguiar ad5b99ed09 update translation greedy-algorithms (#36388)
* update translation greedy-algorithms

* updated translation after review
2019-08-20 09:26:25 -07:00
Lipis b6ffe92a84 Typescript -> TypeScript (spanish) (#35204)
* Typescript -> TypeScript (spanish)

* Update index.md
2019-08-20 08:41:15 -07:00
shreyas1599 24eaec6e44 [Update] Added guide for unordered_map (#36608)
* [Update] Added guide for unordered_map

* fix: removed unsecure links
2019-08-20 08:01:07 -07:00
SayanKar 662ea9235a Added Diamond Printing Example.md (#36637)
Added Example of a Diamond Printing code
2019-08-20 07:40:54 -07:00
Lauren Van Sloun 4507a6b254 Minor grammar fixes (#36643)
* Minor grammar fix
2019-08-20 14:36:22 +01:00
Rajiv Ranjan Singh 38badd6259 typo fixed (#36642) 2019-08-20 06:28:56 -07:00
TylerGlenski 7c293b523e added solution 2 to the article (#36639) 2019-08-20 06:26:41 -07:00
Mrugesh Mohapatra 1348a5a037 fix(profile): update identicon colors 2019-08-20 13:37:11 +05:30
Ahmad Abdolsaheb 31e3d9b27e feat: commandline chic 2019-08-20 13:37:11 +05:30
Mrugesh Mohapatra f0329da61a fix(redirects): update redirection paths and codes 2019-08-20 00:23:21 +05:30
Mrugesh Mohapatra de6f32cd33 fix(redirects): update redirection paths and codes 2019-08-19 22:48:03 +05:30
mrugesh 10d176178a
fix(client): update profile image urls check (#36636) 2019-08-19 22:11:29 +05:30
Cleo Aguiar b08f260dd3 Changed exhibition title (#27450)
guide/portuguese/r/data-types
2019-08-19 07:00:58 -07:00
mrugesh 5f97782eb0
fix: add identicon natively (#36633) 2019-08-19 19:17:53 +05:30
mrugesh 985daf5e5a
fix(redirects): update app paths and other misc. (#36635) 2019-08-19 19:17:27 +05:30
Mrugesh Mohapatra 9f40714d0a fix: remove avatar from nav 2019-08-19 17:06:38 +05:30
mrugesh 5318c87b08 docs: add pipeline badges 2019-08-19 15:25:28 +05:30
Some Der a4a9b0af24 docs: setup -> set up 2019-08-19 13:16:49 +05:30
Mrugesh Mohapatra ac50216949 fix: NODE_ENV conflicts on pipelines 2019-08-19 01:37:32 +05:30
Adriano d864326d97 finished translation, (#27125)
corrected bad translation of css properties, corrected code indentation,
2019-08-18 09:49:27 -07:00
Ai-Lyn Tang 24b3bed83f fix: add link to boilerplate Glitch file (#36340)
* Add link to boilerplate Glitch file

The boilerplate link is hard to see in the previous "introduction" page. I was using the old Glitch project link, and was confused.

When I googled for a solution, it was clear than others had also been quite confused. I believe this additional instruction will help many people.

* Direct people back to introduction page

Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

* Remove unnecessary indentation

Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>

* Remove spaces on empty line

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* Remove spaces on empty line

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* Add empty line to fix markdown link

Markdown link needs a blank line to render correctly

* fix: add extra line to prevent linting error

* fix/remove-bullet-points


Co-authored-by: Randell Dawson <rdawson@onepathtech.com>
Co-authored-by: Tom <tmondloch01@gmail.com>
2019-08-18 20:27:54 +05:30
Mrugesh Mohapatra a00f9c5810 fix: update client dependencies 2019-08-18 15:43:25 +05:30
Gustavo Cavalieri Fernandes d1a46d84d0 Update CONTRIBUTING.md (#36510)
fixing #36483
2019-08-18 10:34:54 +05:30
Parviz/Ibragim Bekliev 4193b7be8d [Order] [Portuguese] Fixing chaotic order of table of languages (#36252)
* Added Greek lang

* Capitalized "русский" into "Русский"
2019-08-18 10:33:20 +05:30
Mengeroshi fb3809a19c errores de dedo en la traducción (#28433) 2019-08-18 10:28:23 +05:30
Jefferson Oliveira fe8cf1a469 translate: fix translation and grammar on vim's guide index.md (#28551)
* translate: fix translation and grammar on vim's guide index.md

* fix: changed estao to estão
2019-08-18 10:22:22 +05:30
shreyas1599 443ad21b9a [Update-guide] Improved article (#36613)
* [Update-guide] Added link of a hands-on tutorial

Added link of a hands-on tutorial which is a great way to learn more about Haskell.

* [Update] Added more content about Haskell

Added reasons for learning Haskell and link with project ideas.

* fix: removed non-secure links
2019-08-17 06:37:07 -07:00
Valeriy S 052769e69f chore(client): update gatsby 2019-08-17 18:35:21 +05:30
Mrugesh Mohapatra 15a74a9ee7 fix: remove azure pipelines config file 2019-08-17 18:13:12 +05:30
alan1001110 b4ef20d716 replaced stub with solution to large sum (#36618)
replaced stub with solution to large sum, explanation, links
2019-08-17 05:40:54 -07:00
Mrugesh Mohapatra 56d78a1119 fix(server,client): CORS is a real nightmare 2019-08-17 17:01:10 +05:30
Mrugesh Mohapatra de5e88942f fix(tools): add build scripts 2019-08-17 17:01:10 +05:30
mrugesh 91ad464020
Revert "feat: add bootcamp cost calc guide (#35278)" (#36614)
This reverts commit 869f5edfc5.
2019-08-17 16:31:29 +05:30
totalamd 21cfe11edb fix image urls (#33942)
* fix image urls

* fix image urls
2019-08-16 22:01:47 -07:00
Tamara S 832bec808d Edited lang in docs/russian/how-to-catch-outgoing-emails-locally.md (#31359) 2019-08-16 22:01:08 -07:00
Ron Sogueco 869f5edfc5 feat: add bootcamp cost calc guide (#35278)
* feat: add bootcamp cost calc guide

* feat: use ReactJS portals

* feat: fix eslint errors

* feat: update with change requests

* feat: update package-lock.json
2019-08-16 23:57:36 -05:00
Diz, Nicolás Amor 9e4abad1cb create README.spanish.md (#36142) 2019-08-16 21:55:22 -07:00
Lipis ce87cbf659 Typescript -> TypeScript (portuguese) (#35203) 2019-08-16 13:59:59 -07:00
Paulo Henrique Junior 72d0525d5f Small adjustments in translation (#32213)
* Small adjustments in translation

Small adjustments in translation

* Update index.md
2019-08-16 12:40:09 -07:00
DanielMartinsAlves 24b8cb14d0 Fix sentences (#33602)
Fix sentences
2019-08-16 12:04:05 -07:00
Gustavo Cavalieri Fernandes a049713c25 add "sapply function" portuguese translation to guide (#36391)
* add "sapply function" portuguese translation to guide

* fixing locale title at pt/sapply-function
2019-08-16 12:02:43 -07:00