Ay355
9552f2a1fe
[rust/all] Remove .iter() on array example ( #4230 )
...
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
2021-11-01 22:27:42 +01:00
Petru Madar
0086b92f09
[ruby/all] Replace tryruby.org with the proper link ( #4217 )
...
* Replace tryruby.org with the proper link
* Replace tryruby.org with the proper link
2021-08-21 23:08:42 +02:00
Борис Верховский
a502f8d723
Rename OS X to macOS ( #4166 )
2021-05-25 13:42:50 +02:00
Adam Bard
d8c8755e5b
Merge pull request #3709 from chris54721/patch-2
...
[sql/it] Add sql-it.html.markdown
2020-05-19 09:00:47 -07:00
Adam Bard
f84a61e5a0
Merge pull request #3708 from chris54721/patch-1
...
[zfs/it] Add zfs-it.html.markdown
2020-05-19 09:00:22 -07:00
Adam Bard
0a0a40dc2d
Merge pull request #3856 from sshine/make-python3-default
...
[Python] Make Python 3 default
2020-02-13 22:00:05 -08:00
Leigh Brenecki
5864aba42d
Purge my deadname
2020-02-13 10:38:29 +10:30
Simon Shine
ae848c481f
Python 3: Use 'filename: learnpython*.py' (no '3')
...
Before renaming, Python 3 filenames were 'learnpython3*.py'.
This commit removes the '3' part from the filename.
To verify that the filenames were named consistently across
translations prior to this commit, and to change this:
```
ack -H 'filename:' python.html.markdown
find . -name "python-*.markdown" -exec ack -H 'filename:' {} \;
sed -i 's/^filename: learnpython3/filename: learnpython/' \
python.html.markdown
find . -name "python-*.markdown" -exec \
sed -i 's/^filename: learnpython3/filename: learnpython/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
887cbee8af
Change 'filename:' for Python 2 (legacy)
...
Before renaming, all Python 2 filenames were 'learnpython-*.py'.
This commit renames them to 'learnpythonlegacy-*.py'.
To verify that the filenames were named consistently across
translations prior to this commit, and to change this:
```
find . -name "pythonlegacy*.markdown" -exec ack filename: {} \;
find . -name "pythonlegacy*.markdown" -exec \
sed -i 's/^filename: learnpython/filename: learnpythonlegacy/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
8f5fac9895
Python 3: 'language: Python'
...
Instead of listing 'language: python3' for Python 3, use
language: Python
as #3450 does.
```
find . -iname "python-*.markdown" -exec \
sed -i 's/language: python3/language: Python/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
95c8b24ebf
Python 2 'language': Python 2 (legacy)
...
Instead of listing 'language: python' for Python 2, use
language: Python 2 (legacy)
```
find . -iname "*pythonlegacy*" -exec \
sed -i 's/^language: .*/language: Python 2 (legacy)/' {} \;
```
2020-02-12 05:09:13 +01:00
Simon Shine
efe00fd06e
Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'
...
The list of references is exhausted by running 'ack docs/python'.
2020-02-12 05:03:08 +01:00
Simon Shine
a3b0585374
Rename Python 3 markdown files into 'python'
...
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
fnew=$(echo "$f" | sed 's/python3/python/')
git mv "$f" "$fnew"
done
2020-02-12 04:54:36 +01:00
Simon Shine
1adab9bc3f
Rename Python 2 markdown files into 'pythonlegacy'
...
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
2020-02-12 04:53:08 +01:00
Andrea Borruso
1b01d8c03f
piccola correzione di testo
2020-01-29 08:43:27 +01:00
Divay Prakash
d568151804
Merge pull request #3678 from neslinesli93/feature/fix_elixir_it
...
[elixir/it-it] Add section about pipes, and fix docs here and there
2020-01-11 14:05:58 +05:30
Christian Grasso
ad35bbd477
[sql/it] Add sql-it.html.markdown
2019-10-20 12:43:10 +02:00
Christian Grasso
1ba3aa9d91
[zfs/it] Add zfs-it.html.markdown
2019-10-20 12:23:38 +02:00
Tommaso
b7a5d8f8e0
Add section about pipes, and fix docs here and there for elixir/it-it
2019-10-05 21:30:24 +02:00
Tommaso
bcefaaf7b7
Add explanation of =~
and alias
inside bash/it-it
2019-10-05 21:19:37 +02:00
carl
edcfd31759
Tweak markdown to properly render html
2019-09-20 14:12:41 +10:00
Divay Prakash
11885877e7
Merge pull request #3508 from vinniec/master
...
[javascript/it-it] Create javascript-it.html.markdown
2019-08-04 14:24:44 +05:30
Divay Prakash
84886fad29
Update javascript-it.html.markdown
...
Fix YAML frontmatter
2019-08-04 14:22:44 +05:30
Daniele Megna
8c7aff32cc
[rust-it] fix struct name according below usage
2019-05-31 16:02:41 +02:00
Daniele Megna
98534da524
Fix typo in rust-it
2019-05-29 16:47:31 +02:00
vinniec
22a4106a47
Create javascript-it.html.markdown
...
Translated from the version 2570367
of 21 Jan
2019-03-30 02:10:08 +01:00
Andre Polykanine
895a0ed413
Merge pull request #3458 from sanindya-iiitd/patch-1
...
[python/all] Type correction for the output of math.sqrt()
2019-02-09 01:41:44 +02:00
Anindya Srivastava
9b5b5f6d31
Type correction for the output of math.sqrt() propagated across versions and languages
2019-02-06 07:31:34 +05:30
Paulo Moura
c0d134c2d9
Improve section on compiling and loading source files
2019-02-03 17:23:31 +00:00
Divay Prakash
f5b3d1c97c
YAML fixes ( #3400 )
2018-11-17 23:55:42 +05:30
Divay Prakash
8f5a671907
Merge pull request #3324 from chris54721/master
...
[typescript/it] Add typescript-it.html.markdown
2018-10-24 09:49:19 +05:30
Chris54721
f7d86067f1
[pcre/it] Add pcre-it.html.markdown
2018-10-23 23:07:41 +02:00
Chris54721
a516d9a375
[typescript/it] Add language spec line
2018-10-23 22:35:48 +02:00
Chris54721
f7fb113ba5
[it/it] Add typescript-it.html.markdown
2018-10-22 23:51:31 +02:00
abonte
99cd64ed04
fix typos and accent marks
2018-10-18 19:34:03 +02:00
bonte
7a88501d52
small change
2018-10-14 12:04:44 +02:00
bonte
61dc8ca784
add translator
2018-10-14 12:00:21 +02:00
bonte
60377c4ee1
cut lines over 80 chars
2018-10-14 11:48:16 +02:00
bonte
e3ae8a048f
add translation [ruby/it]
2018-10-14 11:31:47 +02:00
Divay Prakash
69dd941c17
Merge pull request #3296 from divayprakash/fix-links
...
[dynamic-programming] Fix links
2018-10-14 06:11:15 +05:30
Divay Prakash
494eb90fca
Fix links
2018-10-14 06:05:25 +05:30
Divay Prakash
99618d394e
Add new link from 2242ad7
2018-10-14 05:51:14 +05:30
Divay Prakash
4de5670652
Fix links and list styling
2018-10-14 05:34:24 +05:30
Chris54721
3388a561e5
[toml/it] Add it-IT translation for TOML
2018-10-13 18:23:31 +02:00
Divay Prakash
398054ceb0
Merge pull request #3287 from Ale46/dynamic-programming-it
...
[dynamic-programming/it-IT] Add italian language for dynamic-programming
2018-10-13 19:50:08 +05:30
Divay Prakash
3f4f11981b
Merge pull request #3288 from Ale46/qt-it
...
[qt/it-IT] Add italian language for qt
2018-10-13 19:48:43 +05:30
Divay Prakash
44976d384e
Merge pull request #3289 from Ale46/asciidoc-it
...
[asciidoc/it-IT] Add italian language for asciidoc
2018-10-13 19:42:46 +05:30
Divay Prakash
ca51912b9d
Merge pull request #3290 from Ale46/pyqt-it
...
[pyqt/it-IT] Add italian language for pyqt
2018-10-13 19:39:06 +05:30
Ale46
b3586510e2
[pyqt/it-IT] Add italian language for pyqt
2018-10-13 15:05:32 +02:00
Ale46
e2c7caff58
[asciidoc/it-IT] Add italian language for asciidoc
2018-10-13 15:04:56 +02:00