Commit Graph

560 Commits (7dca82d66a9a6290bf63980e45ed47ec28a74312)

Author SHA1 Message Date
André Castillo 7ef729bfb3 I translated the commented code into spanish (#25640) 2018-10-28 22:39:23 -06:00
Stahlone 10361750de fix: improved translation (#25352)
While correct, the original translation didn´t feel natural for a spanish speaker.
2018-10-28 22:18:20 -06:00
alenniu 50668cd036 Additional Source (#20289)
This is an additional reference for html layouts.
2018-10-28 21:52:22 -05:00
alenniu dbb6294729 Additional Reference (#20281)
Added WebPlatform external html lists reference list.
2018-10-28 21:51:31 -05:00
Joe Doh be82a2c6ff Added link for Part Two of article (#20039)
* Added link for Part Two of article

* Removed link. Edited subheading.

* Removed link to GitHub's features/pricing page.
* Change link/reference section to be consistent with what's originally in the stub.
2018-10-28 21:45:35 -05:00
Andrei Cretan dd6f7725e3 Minor translation changes. (#22419)
Made minor translation changes, that where tranlated literally.
2018-10-28 20:25:14 -06:00
Carla Prieto f3c601ee16 Fixed traduction typo. (#20027)
Python is the formal name of the language, it should not be translated to "piton"
2018-10-28 20:07:48 -06:00
Santiago Beloqui 3e09317015 Change "pila completa" for "Full Stack" (#24736)
"Pila completa" it's not an expression used by developers who speak spanish.
2018-10-28 20:02:29 -06:00
javisenberg 7135901867 Language mistake corrected (#24570)
Updated some spanish syntax to make it more readable.
2018-10-28 19:58:18 -06:00
PatrickRJadwin c73c7eb835 Warning for potential dangerous command (#20272)
Added warning specifying the dangers of rm
2018-10-28 20:33:37 -05:00
mistymayem 0e77f8c289 Simplified explanation of example (#20262) 2018-10-28 20:30:24 -05:00
Marcella b3834712a3 Edits (#20370)
succinct wording, correction of  missing hyphen and its -> it's
2018-10-29 08:29:43 +07:00
Yves Wienecke a3b20c0652 Return types, pass by reference vs pass by value (#20261)
Expanded on what data types can be returned. Also added section for the differences between passing an object as a parameter by value versus by reference.
2018-10-28 20:27:41 -05:00
Cory Harkins 5cc2757e32 Added Popular CSS Frameworks 2018 section and description (#20253) 2018-10-28 20:25:12 -05:00
Chris Williams 37a4b0b004 added additional stakeholder types (#20251) 2018-10-28 20:12:10 -05:00
Andres Sebastian Hernandez Guerra 491476db6b Changed GPU, Case, and Motherboard sections (#23959)
Native Spanish speaker. I have made some changes to help with readability as well as changed word use and some grammar, the content is intact conceptually.
2018-10-28 19:00:00 -06:00
Andres Sebastian Hernandez Guerra 5ba38aa086 Corrected second paragraph and an extra sentence (#23947)
I am a native Spanish speaker with programming knowledge. I have changed the second paragraph mainly for grammar and deleted redundant "final". I have also changed a sentence under "Clasificación de los algoritmos" which was not understandable before.
2018-10-28 18:55:55 -06:00
Andres Sebastian Hernandez Guerra 220db68fbc Changed "sabores" for "tipos" and added a comma (#23940)
I am a native Spanish speaker, and have changed a word use mistake. Also added a comma to help readability.
2018-10-28 18:47:51 -06:00
Austen Pritchett bf64d3e8f3 Added a couple lines (#20536)
Mentioned that it's more difficult to go back through your code and comment it, rather than just comment it while you go.
2018-10-29 05:07:57 +05:30
joruchan 6ef37d2e13 changed uppercase O to lowercase o (#20546)
no need for an uppercase in this situation
2018-10-29 04:57:55 +05:30
Chris Williams e0f059bae2 clarified cert tiers (#20299) 2018-10-28 16:12:49 -07:00
waffles517 4969872c5d Fix formatting for list, add relevant link (#20482) 2018-10-29 04:25:00 +05:30
Isuru Ranawaka 0ba3c48ee4 Updated to include require, update and remove (#20269)
Updated the file with composer commands and descriptions of require, update and remove.
2018-10-28 15:51:14 -07:00
rosswhitehouse 1918180d69 Additions to Using CSS Transitions Guide (#20488) 2018-10-29 04:15:30 +05:30
alenniu a7d6d59537 External Reference (#20277)
This is another HTML Symbol source and reference.
2018-10-28 15:32:52 -07:00
PatrickRJadwin 1db2fba1d3 Warning for potential dangerous command (#20264)
Added warning for the dangers of mv command
2018-10-28 15:21:13 -07:00
Chris Williams 1433ff225b forgot CFTs! (#20266) 2018-10-28 15:20:25 -07:00
Aman Shah e80ee06535 Angular installation (#20239) 2018-10-28 15:14:57 -07:00
tykqian 71af19c739 Added the text "Prgramming Throwdown..." into Podcast Section (#20149)
Added the text "Prgramming Throwdown..." into Podcast Section
2018-10-29 05:13:02 +07:00
Siddharth Shrivastav c8aa2a4e9e star pattern using for loop (#20222)
## Example for printing star pattern for pyramid 
```c

#include<stdio.h>
int
main ()
{
  int i, j;
  for (i = 1; i <= 5; i++)
    {

      for (j = i; j < 5; j++)
	{
	  printf (" ");
	}


      for (j = 1; j <= (2 * i - 1); j++)
	{
	  printf ("*");
	}


      printf ("\n");
    }

  return 0;
}
```
## Output:
```shell 
     *
    ***
   *****
  *******
 ********* 

``
2018-10-28 15:06:09 -07:00
allenpbiju 4dd798de05 info on table borders (#20245)
Some info and code is provided on table borders and adjusting them.
2018-10-28 13:17:18 -05:00
Eugene d94b5b9745 Some changes in translation (#20997) 2018-10-28 21:33:47 +04:00
Dagny Kight 651297810b Add the link to "Python Tricks" to index.md (#20237) 2018-10-28 12:31:31 -05:00
Eugene c891c37e7f Some changes in translation (#20992) 2018-10-28 21:31:01 +04:00
Cory Harkins e7fd282cde Note on getting caught in while loops. (#20230) 2018-10-28 12:25:10 -05:00
edkkv79 4f2226ca86 Change endings (#20668)
Change endings in"Многие математические, научные и валютные символы нет на обычной клавиатуре"
2018-10-28 21:24:32 +04:00
PatrickRJadwin 0eb442a949 Added books to java, c#, and added databases (#20229)
Add books to java, C#

Also added a section for books on databases
2018-10-28 12:23:19 -05:00
GattoNero 867d25322d lexical corrections (#20380) 2018-10-28 21:18:10 +04:00
GattoNero d7a5052faf lexical corrections (#20326) 2018-10-28 21:16:13 +04:00
Xenia Serbin d869bc3d5f Update index.md (#20314) 2018-10-28 21:13:32 +04:00
Derek Williams b86d21a756 Added 'JavaScript & jQuery' (#20209)
This book is great for an absolute beginner by Jon Duckett
2018-10-28 09:45:34 -07:00
Talia Kaplanian 825751e04b Added single line comment shortcut (#20185)
* Update index.md

* added verbiage specifying comment hotkeys are only in some editors
2018-10-28 09:44:32 -07:00
Martynas Jasins e06a3d3e36 Additional information on Unreal Engine 4 (#20089)
* Additional information on Unreal Engine 4

I think that a small potion of information on the current state of the Unreal Engine would be great,
Big fan of the Engine

* removed unnecessary commentary
2018-10-28 09:40:31 -07:00
allenpbiju 88324e28df Added some info (#20088)
* Added some info 

Added some info on changing the dimensions of the image.

* corrected anyone to any one
2018-10-28 09:38:08 -07:00
Lawrence Lockhart d5177b4bea Add Javascript Jquery book by Duckett (#20125)
* Add Javascript Jquery book by Duckett

* Corrected formatting for bulleted item
2018-10-28 09:35:49 -07:00
tibble49 92f7514ceb Expanded definition and overview (#20115)
Elaborated on the data structure that is block chain, also added some information around a popular blockchain implementation called bitcoin
2018-10-28 09:34:16 -07:00
Sarah Grace edac1eb817 Update index.md (#20204) 2018-10-28 09:31:50 -07:00
Moritz f9ee83dee6 Add: More important basic commands for docker-compose (#20227) 2018-10-28 10:08:28 -05:00
Jennifer W. Mitchell 1567a16b2f Expand type families and bash touch documentation (#20210)
* Update index.md

Added links to resources on Typeface Families.

* Expand description of command and add link
2018-10-28 10:03:32 -05:00
PatrickRJadwin 09bc1429c0 Added warnings for potentially dangerous command (#20197)
Added warnings for mv and rm because they are notoriously dangerous commands, especially for beginners
2018-10-28 09:45:27 -05:00
Yves Wienecke 0fdef12b15 Included example of inheritance (#20187)
Added an example of inheritance with an 'animal' base class and a 'cat' derived class
2018-10-28 09:43:08 -05:00
zendmaster b2f90962ca Added command for install for Centos 6 or 7 (#20177) 2018-10-28 09:37:53 -05:00
Yves Wienecke aa624dd7e4 Delete [] operator and Valgrind (#20121)
Changed how to free memory assigned to a pointer to an array of object. Also added information about how to check for memory leaks with valgrind.
2018-10-28 09:30:23 -05:00
christocarr 33d5921722 Include mobile first approach (#20377) 2018-10-28 18:22:29 +07:00
Andrew Laptev 94f603807f [Haskell] Russian translate for monad/index.md (#20865) 2018-10-28 14:48:12 +04:00
Andrew Laptev 6c6bcb04fc [Haskell] Russian translate for hello-world/index.md (#20932) 2018-10-28 14:46:00 +04:00
Evgeniia Garnaga 2f55a4353d Adds the improved Russian translation to article (#20843) 2018-10-28 14:42:55 +04:00
mikeblackjr 70a4d718e5 Added Wikipedia link (#20365) 2018-10-28 17:36:25 +07:00
Andrew Laptev a2cf4f9e07 Russian translate (#20783) 2018-10-28 14:27:01 +04:00
Dmitriy Кorneev 84c4dcbdd8 Article translaite to russian (#20529) 2018-10-28 14:14:03 +04:00
Cameron Burkholder 9ea0a3b026 Word change to Bootstrap Dropdowns article (#20366)
Replaced definite article with indefinite article
2018-10-28 17:13:55 +07:00
Alexey Mikhaylov 8ed5ea54e4 Imrpove russian translation in article (React) (#20453) 2018-10-28 14:08:18 +04:00
Alexey Mikhaylov 7f2cdf414a Improve russian translation in article (React) (#20403) 2018-10-28 14:06:05 +04:00
Xenia Serbin c00a8a2a7c Update index.md (#20367) 2018-10-28 14:03:53 +04:00
Xenia Serbin d737817865 Update index.md (#20348) 2018-10-28 14:02:56 +04:00
Xenia Serbin 7e67e997d7 Update index.md (#20294) 2018-10-28 13:52:57 +04:00
Cory Harkins d5ad4e0690 Added note for bracket requirements on if statements (#20196) 2018-10-28 05:13:27 -04:00
mrugesh mohapatra 7997ff8f51
fix: add meta for invalid merge from #20267 (#30961) 2018-10-28 14:34:55 +05:30
Joe Doh 09784de149 Add Wikipedia reference (#20069) 2018-10-28 04:30:07 -04:00
Taylor 9afdd1235d Update index.md (#20292)
Fixed several spelling errors and run-on sentences.
2018-10-28 15:26:45 +07:00
Roman de860e3565 Add new file and full translation (#20267)
Completly new translation to Russian of React Context API article
2018-10-28 11:34:08 +04:00
Chris Williams 8ed2244855 Added specific information on resource declaration (#20216) 2018-10-27 21:15:59 -07:00
Ellysha Chavez ad44442741 Full sentences in parenthesis edited (#20218) 2018-10-27 21:12:55 -07:00
Vyrza d961e04a86 Minor writing changes. (#20198) 2018-10-27 21:11:38 -07:00
allenpbiju c7d64100a3 Changes on centering an element using margins. (#20170)
Changes has been made on aligning an element to the center by changing the margin values.
2018-10-27 21:00:19 -07:00
Talia Kaplanian c09dce92dd Update index.md (#20151) 2018-10-27 20:58:26 -07:00
Yizhou Sun 62139160f5 Add a demonstrative article in "More information:" (#20143)
* Add a demonstrative article in "More information:"

* Change content in a tag
2018-10-27 20:54:26 -07:00
Ellysha Chavez f67d87faad Add short read (#20113)
link : https://cs.uwaterloo.ca/~shallit/DC2015/cockburn.pdf
2018-10-27 20:52:55 -07:00
rajranjan0608 cb6be06f3f Update index.md (#20102) 2018-10-27 20:49:01 -07:00
Simas Janusas 92d88c401e Added a 'grep' command. (#19924)
* Added a 'grep' command.

Added a 'grep' command to the basic linux command list.

* Fixed formatting
2018-10-27 20:44:10 -07:00
mil2001 77c30c08e0 software engineering (#19837)
* software engineering

* Fixed spacing and grammar

* software engineering isn't a study
2018-10-27 20:43:16 -07:00
Yizhou Sun f55ab87094 Add "Google Fonts" in "More information:" (#20111) 2018-10-27 20:24:29 -07:00
Manish kumar chaurasia 22481b1fcc updated code of selection sort in this article (#20058) 2018-10-28 14:23:50 +11:00
Sarah Grace c85ac9a9eb Update index.md (#20098) 2018-10-27 20:20:39 -07:00
Smruti Ranjan Rana 24392e05d0 Update "Another way to create an Array:" section (#19852)
* Update "Another way to create an Array:" section

Add another way to declare an array.

* Update 'Another way to create an Array' section, Add 'Declaring array literal' section.
2018-10-27 23:19:11 -04:00
Ken Nguyen 75d856fa26 Added PEP8 convention (#20168) 2018-10-27 20:13:15 -07:00
PatrickRJadwin 4d3a705c73 Specified what a shebang is and added alt shells (#20169)
specified alternative shells users might see in the wild and specified what a shebang is
2018-10-27 20:10:45 -07:00
Benabadji Mohammed Salim 06fbd4c156 split example usage (#20164) 2018-10-27 20:07:39 -07:00
alenniu 228f1a2d0f Add Comma (#20154)
between the sentences " pleasant experience on your website, they need to be able to get", I decided it was more appropriate to add a comma.
2018-10-27 20:05:57 -07:00
Benabadji Mohammed Salim bddc20a66b fix example usage (#20152) 2018-10-27 20:02:51 -07:00
Benabadji Mohammed Salim 8e980f0f84 add option to CLI (#20141)
add option parameter to example of usage
2018-10-27 20:02:07 -07:00
Yiğit Sever 11b1b150a8 Do not cast the result of malloc (#20044)
https://stackoverflow.com/a/605858/3005749, also expanded the definition of heap
2018-10-27 19:56:26 -07:00
Jeremy a112fa501e Modify index.md for Bootstrap navbars guide (#19899) 2018-10-27 22:51:36 -04:00
PranavKrishnan1 ed7b0de6e5 Added information on packages (#19827)
Added some text on R packages and removed an unnecessary "*" present.
2018-10-27 19:46:49 -07:00
sjanasek 7145009a73 brands using WordPress (#19818)
added some big name brands using WordPress
2018-10-27 19:45:54 -07:00
tattoodgeek cbc44d80d9 Added df -h command (#19821)
* Added df -h command

* fix typo
2018-10-27 22:45:25 -04:00
Aditya e653eab3f5 [Guide] Project Euler: Problem 10: Summation of primes (#30503)
* feat: added problem 10 solution

* Added some formatting and minor grammar changes
2018-10-27 19:37:25 -07:00
AMIT KUMAR RANJAN 0a8b936915 add HTML Elements (from line 67 to 114) (#20105)
* add HTML Elements (from line 67 to  114)

I have added description regarding commonly used HTML elements .

* Corrected formatting and structure
2018-10-27 19:29:07 -07:00
rajranjan0608 7db9f67057 added OBJECT ORIENTED PROGRAMMING concept to the article (#20007)
* Update index.md

* Fix grammer
2018-10-27 21:28:03 -05:00
Anthony Campbell f423f04495 Add ASP.NET MVC Information (#19942)
Added ASP.NET MVC site, tutorials, and interview questions article in the More Information section.
2018-10-27 21:23:05 -05:00