summaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeLines
* Merge pull request #1070 from deryni/avoid-ALL_CAPS-variablesLevi Bostian2015-05-08-29/+29
|\ | | | | [bash/en] Don't use ALL_CAPS variable names.
| * Don't use ALL_CAPS variable names.Etan Reisner2015-05-07-29/+29
|/ | | | | | | | ALL_CAPS variable names are traditionally "reserved" for use by the shell/system. (People often try to use PATH for things locally and then wonder why their commands all stop working for example.
* Merge pull request #1089 from geoffliu/masterGeoff Liu2015-05-06-0/+126
|\ | | | | [C++/en] Templates and gotchas
| * comment changesGeoff Liu2015-05-06-3/+3
| |
| * Response to commentsGeoff Liu2015-05-05-8/+31
| |
| * Minor fixGeoff Liu2015-05-04-3/+4
| |
| * Templates and suchGeoff Liu2015-05-04-0/+102
|/
* Merge pull request #1087 from aloisdg/patch-1ven2015-05-03-1/+1
|\ | | | | Fix Markdown
| * Fix MarkdownAlois2015-05-03-1/+1
| |
* | Merge pull request #1085 from aloisdg/typescript-frven2015-05-03-0/+174
|\ \ | | | | | | [typescript/fr] Adding french to TypeScript guide
| * | Update typescript-fr.html.markdownAlois2015-05-03-11/+12
| | | | | | | | | Add modifications from @vendethiel's comments. See #1075
| * | Update typescript-fr.html.markdownAlois2015-04-30-17/+22
| | | | | | | | | Adjust to 80 columns
| * | Update typescript-fr.html.markdownAlois2015-04-30-4/+4
| | | | | | | | | Fix translation
| * | Update typescript-fr.html.markdownAlois2015-04-30-31/+28
| | | | | | | | | Add classe block
| * | Update typescript-fr.html.markdownAlois2015-04-30-10/+10
| | | | | | | | | Translate functions block
| * | Create typescript-fr.html.markdownAlois2015-04-30-0/+171
| | | | | | | | | Translate the reading block, the introduction part and the type part.
* | | Merge pull request #1086 from aloisdg/json-frven2015-05-03-0/+62
|\ \ \ | |_|/ |/| | [json/fr] Adding french to JSON guide
| * | Fix HeaderAlois2015-05-03-2/+2
| | |
| * | Fix MarkdownAlois2015-05-03-1/+1
| | |
| * | Update json-fr.html.markdownAlois2015-05-03-2/+2
| | | | | | | | | Thank you @vendethiel for your comments
| * | Create json-fr.html.markdownAlois2015-05-03-0/+62
| |/
* | Merge pull request #1084 from garrison/julia03Geoff Liu2015-05-03-4/+4
|\ \ | | | | | | [julia/en] Update for Julia 0.3 and fix a few typos
| * | [julia/en] Update for Julia 0.3 and fix a few typosJim Garrison2015-05-02-4/+4
|/ /
* | Merge pull request #1080 from kryzhovnik/bash/clear-variable-default-valueLevi Bostian2015-05-02-1/+2
|\ \ | | | | | | Clear explanation of default value expression
| * | Clear explanation of default value expressionAndrey Samsonov2015-05-02-1/+2
| | |
* | | Merge pull request #1079 from kryzhovnik/bash/string-substitutionLevi Bostian2015-05-02-1/+2
|\ \ \ | | | | | | | | Clear that length and position can be set by a variable in substring extraction
| * | | Clear that length and position can be set by variable in substring extractionAndrey Samsonov2015-05-02-1/+2
| |/ /
* | | Merge pull request #1077 from geoffliu/masterLevi Bostian2015-05-02-21/+21
|\ \ \ | | | | | | | | [Python3/en] Python3 doc cleanup
| * | | Python3 doc cleanupGeoff Liu2015-04-30-21/+21
| | | |
* | | | Merge pull request #1083 from sinkswim/masterGeoff Liu2015-05-02-0/+275
|\ \ \ \ | |_|/ / |/| | | [Bash/it] Italian translation of bash guide
| * | | Update bash-it.html.markdownsinkswim2015-05-02-1/+1
| | | |
| * | | rm .DSrobertmargelli2015-05-02-0/+0
| | | |
| * | | added italian translation of bashrobertmargelli2015-05-02-0/+275
| | | |
* | | | Merge pull request #1076 from rinoc/masterGeoff Liu2015-04-30-5/+5
|\ \ \ \ | |_|_|/ |/| | | Fix Python typo.
| * | | Clarify wording for list reversal.Rinoc Johnson2015-04-30-2/+2
| | | |
| * | | Fix Python typo.Rinoc Johnson2015-04-30-4/+4
|/ / /
* | | Merge pull request #1069 from deryni/common-bash-variable-assignment-mistakeLevi Bostian2015-04-27-1/+9
|\ \ \ | | | | | | | | [bash/en] Add another common bash variable assignment mistake
| * | | Follow variable capitalization on this branch.Etan Reisner2015-04-27-2/+2
| | | |
| * | | Add another very common shell variable assignment mistake.Etan Reisner2015-04-26-1/+8
| | | |
| * | | Add myself as a contributor.Etan Reisner2015-04-26-0/+1
| | | |
* | | | Merge pull request #1072 from TiddoLangerak/patch-1ven2015-04-27-1/+1
|\ \ \ \ | | | | | | | | | | Fixed haskell foldr example
| * | | | Fixed haskell foldr exampleTiddo Langerak2015-04-27-1/+1
|/ / / / | | | | | | | | For #1068
* | | | Merge pull request #1067 from MoreMoschops/masterven2015-04-27-2/+1
|\ \ \ \ | |/ / / |/| | | Neither gcc nor clang accept void main.
| * | | Neither gcc nor clang accept void main.MoreMoschops2015-04-26-2/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Neither gcc nor clang accept void main. Remove this bad information. Tested as follows: $ cat 045.cpp void main() { } $ g++ 045.cpp 045.cpp:1:11: error: ‘::main’ must return ‘int’ void main() ^ $ clang++ 045.cpp 045.cpp:1:1: error: 'main' must return 'int' void main() ^~~~ int 1 error generated. $ g++ --version g++ (Ubuntu 4.8.2-19ubuntu1) 4.8.2 $ clang++ --version Ubuntu clang version 3.4.2-3ubuntu2~xedgers (tags/RELEASE_34/dot2-final) (based on LLVM 3.4.2)
* | | Merge pull request #1065 from j-baker/masterven2015-04-26-2/+22
|\ \ \ | | | | | | | | [standard-ml] Standard ML has references!
| * | | Add myself as a contributorJames Baker2015-04-26-0/+1
| | | |
| * | | Add examples of imperative-style controlJames Baker2015-04-26-0/+19
| | | | | | | | | | | | | | | | Make reference and update, add use of a while and use of seq
| * | | Standard ML has referencesJames Baker2015-04-26-2/+2
|/ / / | | | | | | | | | | | | Standard ML is not a pure language and has imperative structures like references while and seq
* | | Merge pull request #1063 from sinkswim/masterGeoff Liu2015-04-25-0/+62
|\| | | | | | | | [JSON/it]
| * | added italian JSON translationrobertmargelli2015-04-24-0/+62
|/ /