| Commit message (Collapse) | Author | Age | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
|
| |
|
|\ |
|
| | |
|
| |
| |
| |
| | |
Add docs from latest English version
|
| |\
| | |
| | | |
Deeper translation
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
tested @
Nim Compiler Version 1.1.1 [MacOSX: amd64]
|
| | | |
|
| | |
| | |
| | |
| | | |
fixes doubled entry on homepage
|
| |\ \
| | | |
| | | | |
[language/raku-code] Perl6 to Raku and many more
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
+ As the Perl 6 is renamed to raku, it is good to reflect that https://github.com/Raku/problem-solving/blob/master/solutions/language/Path-to-Raku.md
+ perl6.org is now raku.org
+ change references of perl 6 to raku
+ rename file perl6-pod.html.markdown to raku-pod.html.markdown
+ Perl refers to Perl 5, there is no ambiguity after rename of Perl6 to
Raku, use Perl only to refer to Perl 5
+ fix links inside raku.html.markdown
|
| |\ \ \
| | |/ /
| |/| | |
[ruby/ru] Fix comment of attr_accessor
|
| | | | |
|
| |\ \ \
| | |/ /
| |/| | |
pascal-ru.html.markdown - Pascal translation to Russian language
|
| | |/ |
|
| |\ \
| | | |
| | | | |
[Python] Make Python 3 default
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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/' {} \;
```
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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/' {} \;
```
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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/' {} \;
```
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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)/' {} \;
```
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
fnew=$(echo "$f" | sed 's/python3/python/')
git mv "$f" "$fnew"
done
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
git mv "$f" "$flegacy"
done
```
|
| |/ / |
|
| | | |
|
| |\ \
| | |/
| |/| |
[C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
|
| | | |
|
| |\ \
| | | |
| | | | |
[c,c++/ru-ru] Fix typos
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | | |
Fix typo
|
| |\| |
| | | |
| | | | |
[go/ru-ru] Fix typos
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
[Rust/ru-ru] Update intro and fix some misspellings (Обновлена вводная часть и исправлены некоторые опечатки)
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
некоторые опечатки
|
| |/ / / |
|
| | | | |
|
| |/ / |
|
| |/ |
|
| | |
|