Commit Graph

5503 Commits

Author SHA1 Message Date
samcv
d6f6995dde Fix for the three tutorials with broken YAML markup, causing them not to be accessible at all or show up in the index (#2497)
* Fix typo causing typescript-ru.html.markdown not to parse correctly in the header

* Fix typo in markdown-ru.html.markdown causing page not to parse correctly

* Oh no! both translator and contributors fields in the header used fullwidth commas instead of normal ones. This fixes processing of this file :)
2016-10-23 14:19:46 +02:00
Soumya D. Sanyal
c7f2b23f2f typo fix in clojure.html.markdown nth input expression from 4 to 2 resolves: IndexOutOfBoundsException clojure.lang.RT.nthFrom (RT.java:885) (#2493) 2016-10-23 14:19:13 +02:00
ven
c76be299aa Update less-es.html.markdown 2016-10-23 00:33:28 +02:00
César Suárez Ortega
b652505def Add Spanish version of Less tutorial (#2459) 2016-10-23 00:33:04 +02:00
Serg
da14e53217 [javascript/uk-ua] Fixed typo (#2492) 2016-10-22 14:45:38 +02:00
Adam Bard
afc169e6ca Merge pull request #2466 from peterszatmary/elixir/sk
[elixir/sk] Created new translation page for awesome Elixir in Slovak language (…
2016-10-21 15:43:26 -07:00
Adam
c8a954c535 Merge branch 'master' of github.com:adambard/learnxinyminutes-docs 2016-10-21 15:42:21 -07:00
Adam
8bc771cc77 Remove binary search 2016-10-21 15:41:08 -07:00
Adam Bard
0ede1e9fde Merge pull request #2484 from davelima/composer-ptbr
[php-composer/pt_br] Translate Composer to portuguese
2016-10-21 15:38:49 -07:00
Adam
a67deabb36 Add messagepack as a tool 2016-10-21 15:36:15 -07:00
Adam
356547aaee Merge branch 'messagepack-docs' of https://github.com/gczh/learnxinyminutes-docs into gczh-messagepack-docs 2016-10-21 15:35:38 -07:00
Adam
620e5d2040 Merge branch 'master' of github.com:adambard/learnxinyminutes-docs 2016-10-21 15:35:09 -07:00
Adam
de376b4357 Added angularjs tutorial 2016-10-21 15:28:22 -07:00
David Lima
ea920c76d5 [php-composer/pt_br] Translate Composer to portuguese 2016-10-21 18:51:27 -02:00
Ramanan Balakrishnan
0659107a78 [latex/en] minor typo fixes (#2481) 2016-10-21 22:34:23 +02:00
Hughes Perreault
8d0e3d6d5c Added line "lang: es-es" (#2483)
Fixes #2482
2016-10-21 22:33:09 +02:00
Chris
d48aef96f1 Added example of C# inline properties (#1464)
This was a really cool & useful trick/feature that I found while
learning C#.
2016-10-21 17:46:25 +02:00
Dennis Keller
819d16b7e5 [ruby/de] typo, formatting and translation fixes (#1792)
* [ruby-ecosystem/de] typo fixes

* move name to translators section

* remove trailing whitespace

* revamp sentence
2016-10-21 17:40:03 +02:00
ven
78617f6c8c Update edn-es.html.markdown 2016-10-21 17:34:23 +02:00
Gino Amaury
038bf6d596 translate edn to spanish (#2467)
* Añadido html en español

* traduccion html a español sin revision

* Traduccion html al español corregido

* Correccion de la configuraciond el header

* Correccion de links

* creacion del archivo en la carpeta de traduccion

* traduccion busqueda binaria español

* traduccion programación dináica al español

* creacion del archivo en español de edn

* traduccion edn al español

* Move Spanish SASS tutorial to the ES folder (#2468)

* [c/pt_br]Fix correct name #define (#2469)
2016-10-21 17:34:01 +02:00
DennisPS
6c27e9e2b1 [go/de] fixing typos (#2480) 2016-10-21 08:24:26 +02:00
David Lima
9162cf44b1 [clojure-macros/pt_br] Fixing references links positioning (#2476)
Links were positioned inside a code block, preventing markdown
to parse links to HTML version
2016-10-21 08:23:55 +02:00
Harry Moreno
e68bf145bc Add python3 class notes (#2479)
* explain that you can place the human and bat classes into seperate
files
* explain how to import specific functions from other files
2016-10-20 23:08:44 +02:00
ven
1d2a910fd6 also fix #2463 2016-10-20 18:54:50 +02:00
ven
8934f0c54f fix #2463 2016-10-20 18:54:24 +02:00
samcv
e336c909b9 Perl 6: Make information about Hash tables correct. Rewrite the example for dynamically scoped variables.. (#2475)
* Explain that you cannot pass immutable values like integers to subs even if you use $n is rw.

* Add myself as a contributor

* Remove contributor since I am not a major contributor

* Add many more smartmatch examples. Make the ternary operatory clearer and add a code example for it. Make the section for && and || have a working code example and show the output it gives

* Fix assigning $a $b and $c values in the && operator section

* Rename a few things so they don't conflict with variables in other parts of the code

* Remove extra dashes

* Move description of smartmatch type checks toward the end of that section

* Better names for scoping examples

* Redo the example for dynamically scoped variables so the example is better and functions properly when ran (old example did not work properly when running it by itself)

* Rename these classes so they aren't named the same as the ones above

* Add information about the different twigils in Perl 6. This makes understanding what $. $! and $* are and how they relate. Also complete the renaming in the previous commit

* Fix capitalization and indenting here

* Using the word interpolate to mean accessing an element of an array is not the proper terminology. Using the word interpolate is usually associated with things such as this: say "@names = { @names.perl }"

* Make the wording a little clearer for arrays

* Remove incorrect information about hashes.  Hashes are not arrays of pairs although Perl 6 makes it easy to use them as such

* Make the subroutine text read better

* Clean up the Object Model introduction section

* Fix the section on interpolating all elements of an array

* Use the word attribute instead of field since this is the wording that the perl 6 documentation uses for these objects

* Fix column width in a few places

* More clearly mark which twigils are used for "normal" variables and which ones are used on "objects". This makes the flow from the # Scoping => # Twigil => # Object Model section smoother

* Semi-rewrite the example for object inheritance and use more natural names.  Also rename class A to class Attrib-Class

* Clean up the scoping introduction a little

* Remove a leftover line from rewriting the inheritance example

* More gradually introduce exceptions and fix a typo, as well as adding a few examples

* Reorder introduction of packages to be more natural. Show how to "use" a package before we show how to create and declare our own modules

* Avoid using the word 'use' because we're not refering to the perl keyword 'use'
2016-10-20 15:59:55 +02:00
Srinivas Gorur-Shandilya
8905c0c5bc [python3] updated docs on division for python3 (#2473)
* updated docs on division for python3

prev. docs were confusing, did not show how to actually divide.

* modified language about python division

* fixed grammar
2016-10-20 15:57:55 +02:00
ven
0c6b3e7337 Delete LearnGit-sk.txt 2016-10-18 22:36:03 +02:00
samcv
8f9021a84d Perl6: Add many more smartmatch examples. Make the ternary operator clearer (#2472)
* Explain that you cannot pass immutable values like integers to subs even if you use $n is rw.

* Add myself as a contributor

* Remove contributor since I am not a major contributor

* Add many more smartmatch examples. Make the ternary operatory clearer and add a code example for it. Make the section for && and || have a working code example and show the output it gives

* Fix assigning $a $b and $c values in the && operator section

* Rename a few things so they don't conflict with variables in other parts of the code

* Remove extra dashes

* Move description of smartmatch type checks toward the end of that section
2016-10-18 21:49:42 +02:00
David Lima
11e3c93463 [vim/pt_br] Translate vim to portuguese (#2474)
* [vim/pt_br] Translate vim to portuguese

* [vim/pt_br] Updating references

Plus translating titles and adding (EN) tag on english links
2016-10-18 21:38:53 +02:00
samcv
0d11887c22 Perl6: Explain that Integers Can't be Passed and Modified in Sub's Even If Using `is rw´ (#2471)
* Explain that you cannot pass immutable values like integers to subs even if you use $n is rw.

* Add myself as a contributor

* Remove contributor since I am not a major contributor
2016-10-18 18:59:13 +02:00
Paulo Moura
c08ca5b9c9 Fixes and improvements to the Logtalk tutorial (#2470) 2016-10-18 17:15:43 +02:00
Diogo Leal
95283618ae [c/pt_br]Fix correct name #define (#2469) 2016-10-17 18:41:46 +02:00
gkampjes
500a79811a Move Spanish SASS tutorial to the ES folder (#2468) 2016-10-17 08:40:31 +02:00
nue
df1f8373c7 Creating new translation page for awesome Elixir in Slovak language (sk-sk). 2016-10-16 18:26:09 +02:00
Dennis Keller
4ba4e9abbe [html/de] Translate html to german (#2440)
* Translate html to german

* Add EN label to resources in English
2016-10-15 22:10:00 +02:00
Hughes Perreault
5eda755a8f useless "lang: en" (#2462)
trying to fix #2417
2016-10-15 22:09:33 +02:00
Serg
ba574ecdb2 [json/uk-ua] translation improvement (#2461) 2016-10-15 17:29:43 +02:00
César Suárez Ortega
ced846af5b [sass/es-es] Add Spanish version for the Sass tutorial (#2457)
* Add Spanish version for the Sass tutorial

* Add EN label to resources in English

* Add better translation
2016-10-15 16:22:28 +02:00
César Suárez Ortega
f7a106ebc5 Fix typos and improve styles (#2460) 2016-10-15 16:22:02 +02:00
César Suárez Ortega
81ce1c4b71 [sass/en] Fix typos in Sass tutorial (#2458)
* Fix typos in Sass tutorial

* Restore contributors meta info
2016-10-15 16:21:45 +02:00
Serg
274067e05b [bash/uk-ua] translation fixes 2016-10-15 15:32:41 +03:00
Fabien Sa
58c97eea69 Update syntax (#2455) 2016-10-15 13:11:23 +02:00
SmuSmu
179b34b81a Update d-de.html.markdown (#2454) 2016-10-14 22:25:50 +02:00
Diogo Leal
173a7664a0 fix tag language pt_br for amd (#2452) 2016-10-14 13:12:03 +02:00
Remigiusz Suwalski
9b2da09365 Removed excessive dollar signs (#2447)
There is no $ when one referencec the name of a variable as Bash is not PHP.
2016-10-13 08:25:44 +02:00
Jakukyo Friel
858171d723 Several changes on Kontlin. (#2335)
* kotlin: remove unnecessary semicolons.

Also replace code block language `java` with `kotlin`.

* kotlin: change coding style (Kotlin Reference)

* kotlin: anonymous function -> lambda expression

Anonymous functions and lambda expressions are different in Kotlin.
The code example uses `anonymous function` in the comment,
while the code below is in fact lambda expressions.

* Remove myself from contributors.

Not for trivial changes.

* kotlin: fix a typo.

Thanks @geoffliu to point out this.

* kotlin: change style of default parameter according to Referenec.
2016-10-12 11:47:41 +02:00
Claudson Martins
c77d5655ec [dynamic-programming/pt-br] Translation to portuguese (#2442)
* Dynamic programming translation to PT-BR

* Added EN tag to resources subtitle
2016-10-11 20:28:10 +02:00
Gino Amaury
bba5f6c57c Translate - Dynamic Programming to spanish (#2428)
* Añadido html en español

* traduccion html a español sin revision

* Traduccion html al español corregido

* Correccion de la configuraciond el header

* Correccion de links

* creacion del archivo en la carpeta de traduccion

* traduccion busqueda binaria español

* traduccion programación dináica al español
2016-10-11 09:34:29 +02:00
chriszimmerman
7b96973204 Csharp parallel (#2443)
* [csharp/en] - Attempts to address issue #1064 by using a different parallel example.
2016-10-11 09:33:17 +02:00