Commit Graph

17211 Commits (e80ee06535943f27a86ab6cb62d40d5b6759d6ff)

Author SHA1 Message Date
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
Gregory Gubarev 6985e4942b
Responsive Web Design: Improve translate, added text in tests (#19647) 2018-10-28 22:03:03 +04:00
Gregory Gubarev b128bf3beb
Responsive Web Design: Improve translate Improve Chart Accessibility with the figure Element (#19645) 2018-10-28 21:53:36 +04:00
sgarnaga d320dbe33e Add the improved Russian translation to this challenge (#21406) 2018-10-28 21:52:34 +04:00
sgarnaga 50a4a6b5a6 Add the improved Russian translation to this challenge (#21272) 2018-10-28 21:45:33 +04:00
Evgeniia Garnaga 0da8ead304 Add the improved Russian translation to this challenge (#21041) 2018-10-28 21:34:44 +04: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
aweza13 243a303176 Link to External Pages with Anchor Elements: Improved translate (#20395) 2018-10-28 14:04:53 +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
aweza13 ac98152438 Turn an Image into a Link: Improved translate (#20306) 2018-10-28 13:54:28 +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