Commit Graph

5315 Commits

Author SHA1 Message Date
Geoffrey Liu
273fa8606b [racket/en] Add more details about Racket (#2278)
* Add let* and letrec reference

* More elaboration on structs

* Add code about predefined car, cdr functions

* Mention explicit typing, int to real conversion
2016-06-26 15:21:13 +02:00
s-webber
19ac1e8eeb [kotlin/en] Add examples of sequences (#2214)
* minor capitalization and punctuation changes

* examples of sequences

* corrected comment
2016-06-26 15:20:28 +02:00
ven
4604870dc3 metadata fix 2016-06-26 15:12:36 +02:00
Jacopo Andrea Giola
b7e57907b9 Add Italian translation for Markdown (#1663) 2016-06-26 15:11:52 +02:00
ven
cf309475ad #1949 metadata fix 2016-06-26 15:10:59 +02:00
Xuan-thi N
810178c3cc [Git/fr] Added translation for Git article (#1949)
* Added translation for Git article

* Took into account suggestions for modification

* Forgot a fix
2016-06-26 15:10:26 +02:00
ven
eb15a9272f #1672 metadata 2016-06-26 15:08:10 +02:00
Jorge Antonio Atempa Camacho
eaee51effe [haskell/es] Spanish translation (#1309)
* Add comments section

* Add Strings and Characters Section

* Added list and tuples Section

* Add More Functions Section

* Add translation of Types Signature Section

* Add Haskell links

* Add translation

* Haskell's spanish translation, finished
2016-06-26 15:07:31 +02:00
Niels van Velzen
25f954e90a Add dutch translation of markdown (#1724)
Add dutch translation of markdown
2016-06-26 15:06:53 +02:00
Matthias Kern
b54e0f4da8 Add german translation for python3 (#1287) 2016-06-26 15:06:36 +02:00
Lucas Moreira
57a0ce5acc [ruby/pt-br] Erros ortográficos. (#1609)
* Alguns erros ortográficos foram corrigidos.

* Correcting some words.
2016-06-26 15:05:04 +02:00
Jonathan Wang
8cd7c230aa [bash/en] basic parameter expansion, and brace expansion (#1533)
* Added brace expansion as well as basic parameter expansion

* frogot my name

* Update bash.html.markdown

 Added to parameter expansion
2016-06-26 15:04:11 +02:00
Gabriel Gomes
d9caa2436e Added typescript-pt.html.markdown (#1699)
* link for learning of javascript adjusted

* Added typescript-pt.html.markdown
2016-06-26 15:03:09 +02:00
Akashdeep Goel
41cf3e7421 Feature: adds Dynamic Programming tutorial (#1885) 2016-06-26 14:58:40 +02:00
ven
f6c68bdd00 Update python3-pt.html.markdown 2016-06-26 14:56:03 +02:00
Paulo Henrique Rodrigues Pinheiro
eda92c0165 Output example had a value more (#1876)
* Output example had a value more

* Added pt-br translation for python3
2016-06-26 14:55:40 +02:00
ven
b76e66ed9b fixup filename for #1879 2016-06-26 14:52:42 +02:00
Abhishek Jaisingh
59adb3cca3 Ds (#1879)
* created binary search doc

started contributing

* Updated binary search

* Added new info
2016-06-26 14:52:17 +02:00
ven
49bc5c8f11 metadata fixup for #1874 2016-06-26 14:51:54 +02:00
ditam
75a5764000 add Hungarian translation (#1874) 2016-06-26 14:51:24 +02:00
ven
e65c618e29 Update swift.html.markdown 2016-06-26 14:51:06 +02:00
João Costa
8e19b8ebba [swift/pt-pt] Add Swift Portuguese translation (#1740)
* Start swift pt-pt translation

* Start swift pt-pt translation

* Finish Collections Section

* Finish Control Flow Section

* Finish Functions Section

* Finish Structures Section

* Finish Classes Section

* Finish translating Enums Section

* Finish Protocols Sections translation

* Finish Other Section translation
2016-06-26 14:50:52 +02:00
Prashant Khanduri
0387bd30fc Generator explanation for python (#1870)
More details and code on the same example as before.
2016-06-26 14:50:05 +02:00
Shawn McGuire
e9ce4e2e6e [csharp/en] Add string interpolation (#1864)
Added example of using string interpolation
2016-06-26 14:47:36 +02:00
Yi Hong Ang
9d17f8bc57 Add a section on code sections/cells (#1855) 2016-06-26 14:45:45 +02:00
Harry
ebd74da99a Added main attributes of javadocs. (#1850) 2016-06-26 14:45:20 +02:00
Caio Mariano
efec1d63ee correcoes ortograficas e adicao de alguns exemplos (#1849)
* correcoes ortogrÃaficas e adicao de alguns exemplos

* mais explicacoes no documento

* somente explicacoes mais detalhadas
2016-06-26 14:45:07 +02:00
Sam van Kampen
d7af1e0b70 Clarify sentences and fix spelling and space usage in nl-nl/yaml (#1822) 2016-06-26 14:43:53 +02:00
ven
1311f4dbb2 manually merge #1838 2016-06-26 14:41:30 +02:00
julianaortga
a24bafe5cb [git/es] updated further information (#1831) 2016-06-26 14:39:28 +02:00
julianaortga
9592b8fc43 [css/es] Updated translation (#1830)
* updated resources and further reading [css/es]

* minor fix and spellchecking
2016-06-26 14:39:14 +02:00
julianaortga
243ef338ab update further reading [c/es] (#1829) 2016-06-26 14:38:29 +02:00
Sachin Divekar
d1216a4253 Add an example of trap command (#1826)
* Begin writing document for PCRE

Started writing learnxinyminutes document for PCRE to cover general purpose regular expressions. 
Added introduction and a couple of details.

* Change introductory example for regex

The old example was incorrect. It's replaced with a simple one.

* Add some more introductory text

* Add first example

* Added more example and a table for proper formatting

* Add few more examples

* Formatting

* Improve example

* Edit description of character classes

* Add a way to test regex

Add https://regex101.com/ web application to test the regex provided in example.

* Add example of trap command 

trap is a very important command to intercept a fatal signal, perform cleanup, and then exit gracefully. It needs an entry in this document.

Here a simple and most common example of using trap command i.e. cleanup upon receiving signal is added.

* Revert "Add example of trap command"

* Add an example of trap command

`trap` is a very important command to intercept a fatal signal, perform cleanup, and then exit gracefully. It needs an entry in this document.

Here a simple and most common example of using `trap` command i.e. cleanup upon receiving signal is added.
2016-06-26 14:38:05 +02:00
Carolina Knoll
d4aa031d55 Create asymptoticnotation-pt.html.markdown (#1820) 2016-06-26 14:34:35 +02:00
ven
b46e577526 Metadata fixups for #1673 2016-06-26 14:33:01 +02:00
ven
b76ab9f2b5 Fixup metadata for #1673 2016-06-26 14:32:48 +02:00
Vipul Sharma
cdda9936e9 Added Hindi amd (#1673)
* Added Hindi amd.html.maarkdown

* Added D.html.markdown

* removed

* Added D.html.markdown

* Fixing..

* Added D.html.markup finally
2016-06-26 14:32:15 +02:00
Devin Soni
912d546dc7 add dict.items() (#2290) 2016-06-26 14:30:39 +02:00
WeizhongTu
83eb5dd94e fix spelling mistake 2016-06-23 13:50:44 +08:00
Felipe Martins
7895dcc604 Add example of an int is divided by a double (#2284) 2016-06-21 23:20:59 +02:00
Nemil Dalal
eaf0307775 Security additions + edits (#2281)
* Edits with a focus on security risks

* Modified example

* Flip sign - example of the risk of Solidity code when published to an append only ledger

* Fixed formatting
2016-06-20 20:56:44 +02:00
Keith Miyake
bf32d58d75 [SASS] Add control directives, and misc. fixes (#1805)
* [SASS] Add control directives, other selector uses, and variables in selector names

* sass: add contributor credit
2016-06-19 15:59:26 +02:00
ven
0484537a1c Fix yaml in #1815 2016-06-16 15:22:17 +02:00
ven
1e117c111f fix yaml in #1815 2016-06-16 15:22:06 +02:00
Jeroen Deviaene
02eec22922 Translated Markdown to dutch (#1815)
* Translated Markdown to dutch

* Translated Bash to dutch
2016-06-16 15:21:35 +02:00
ven
5affe64801 String length by #1742 2016-06-16 15:19:43 +02:00
ven
b3b5ece63c String length by @thesourabh 2016-06-16 15:18:30 +02:00
ven
d82da8357c Fix filename for #1812 2016-06-16 15:09:37 +02:00
Juraj Kostolanský
114387de05 [json/sk] Slovak translation for JSON (#1812) 2016-06-16 15:09:07 +02:00
Ryan
367f1477f9 Change curly braces statement (#1804)
The '$$' before the braces was a bit confusing. I added a couple lines that show that you have options on where the '$' goes when it comes to curly braces in strings.
2016-06-16 15:04:40 +02:00