Compare commits

..

23 Commits

Author SHA1 Message Date
Jason Klebes
07139a28fc
Merge ec25b64568 into 0b375fe86c 2024-11-27 14:44:04 +08:00
Gustavo Adolfo Mejía Sánchez
0b375fe86c
[hcl/en] fix syntax error (#5187)
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 18s
2024-11-23 12:46:21 -07:00
Gustavo Adolfo Mejía Sánchez
c975a23edc
[javascript/es] grammar (#5188)
Update javascript-es.html.markdown
2024-11-23 12:45:19 -07:00
Boris Verkhovskiy
0cbd69c22f
[git] update links (#5185)
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 16s
2024-11-23 04:28:10 -07:00
Alex Hansen
bc3598b1cd
[qsharp/en] update (#5177)
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 16s
2024-11-14 14:20:21 -07:00
Boris Verkhovskiy
3c1b4e752d [wolfram/es] fix filename
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 14s
2024-11-13 09:38:11 -07:00
Boris Verkhovskiy
be43ada53d [wikitext/en] render markdown tables 2024-11-13 09:28:16 -07:00
David Shaked
33e459864c
[java/en] Fix typo (#5182)
This commit fixes a very minor typo in the `java` (English) tutorial.
2024-11-13 09:19:07 -07:00
FireIsGood
54fbf0a948
[ruby/en] Reflow comments (#5180) 2024-11-13 09:18:32 -07:00
Boris Verkhovskiy
fa95b37b6f Fix filename in frontmatter 2024-11-13 08:04:47 -07:00
Boris Verkhovskiy
572827b39f Fix angular download filename
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 15s
2024-11-11 09:49:14 -07:00
Beliavsky
5d0fe40db8
[fortran/en] declare pi without extraneous digits (#5175)
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 15s
2024-11-10 07:05:32 -07:00
Peter Lemenkov
77e2233bf3
[forth/ru-ru] Spellcheck and whitespace (#5171)
All checks were successful
Trigger site build / deploy (push) Has been skipped
CI / lint (push) Successful in 33s
2024-11-08 15:33:45 -07:00
Ily83
ccdb3504c9
[fortran/en] correct sqrt (#5169)
the integer inside the sqrt function need to be converted to real.
2024-11-08 15:31:48 -07:00
Maciej Kasprzyk
a7068ea636
docs: edit contributing, how to build (#5163)
Some checks failed
Trigger site build / deploy (push) Has been cancelled
CI / lint (push) Has been cancelled
2024-10-30 14:47:12 -06:00
Boris Verkhovskiy
d19c7b0a00 Make instructions faster to copy/paste
Some checks are pending
Trigger site build / deploy (push) Waiting to run
CI / lint (push) Waiting to run
2024-10-29 23:29:13 -06:00
Boris Verkhovskiy
d80cc3caeb
Remove "name:" (#5161) 2024-10-29 21:13:04 -06:00
Boris Verkhovskiy
8e94abc88b [rst/*] highlight
Some checks failed
Trigger site build / deploy (push) Has been cancelled
CI / lint (push) Has been cancelled
2024-10-25 11:30:04 -06:00
Boris Verkhovskiy
39727a7971
Delete MontiLang (#5149)
Some checks failed
Trigger site build / deploy (push) Has been cancelled
CI / lint (push) Has been cancelled
2024-10-21 08:05:05 -07:00
Boris Verkhovskiy
da7182cb2e
Reclassify shells as languages (#5150)
Some checks are pending
Trigger site build / deploy (push) Waiting to run
CI / lint (push) Waiting to run
2024-10-20 15:11:09 -07:00
Boris Verkhovskiy
7ecb9a7de6 [openscad] highlight 2024-10-20 14:56:44 -07:00
Boris Verkhovskiy
0175e37c75 [protobuf] categorize as tool and highlight 2024-10-20 14:56:18 -07:00
Boris Verkhovskiy
f4d4fb76ba
Fix language names (#5148) 2024-10-20 14:46:35 -07:00
509 changed files with 826 additions and 1188 deletions

View File

@ -67,7 +67,7 @@ Here's an example header for an Esperanto translation of Ruby:
```yaml
*--
language: ruby
language: Ruby
filename: learnruby-epo.ruby
contributors:
- ["Doktor Esperanto", "http://example.com/"]
@ -90,27 +90,26 @@ addition or not.
## Building the site locally
You can build the site locally to test your changes. Follow the steps below.
Install Ruby. On macOS this can be done with [Homebrew](https://brew.sh/).
* Install Ruby language runtime and RubyGems. See
[here](https://middlemanapp.com/basics/install/)
for more details.
* Clone or zip download the
[learnxinyminutes-site](https://github.com/adambard/learnxinyminutes-site)
repository.
* `git clone https://github.com/adambard/learnxinyminutes-site`
* Install Middleman and other required dependencies using Bundler.
* `cd learnxinyminutes-site/`
* `bundle install`
* Get the source in place
* Copy the contents of your clone of the fork of learnxinyminutes-docs repo
into the `source/docs` folder. There shouldn't be a `learnxinyminutes-docs`
folder inside the `docs` folder, it should just contain all the repo
contents.
* Checkout your fork of the learnxinyminutes-docs repo as `source/docs`.
* `cd source/docs/`
* `git clone https://github.com/YOUR-USERNAME/learnxinyminutes-docs ./source/docs/`
* Build the site or run a development server to test your changes (NOTE: run
these commands at `learnxinyminutes-site/`).
* Build - `bundle exec middleman build`
* Dev server - `bundle exec middleman --force-polling --verbose`
```sh
brew install ruby
# Install Ruby package manager
gem install bundler
```
Then clone two repos, install dependencies and run.
```sh
# Clone website
git clone https://github.com/adambard/learnxinyminutes-site
# Clone docs (this repo) nested in website
git clone https://github.com/<YOUR-USERNAME>/learnxinyminutes-docs ./learnxinyminutes-site/source/docs/
# Install dependencies
cd learnxinyminutes-site
bundle install
# Run
bundle exec middleman serve
```

View File

@ -1,6 +1,6 @@
---
category: tool
tool: amd
tool: AMD
contributors:
- ["Frederik Ring", "https://github.com/m90"]
filename: learnamd.js

View File

@ -3,7 +3,7 @@ category: framework
framework: AngularJS
contributors:
- ["Walter Cordero", "http://waltercordero.com"]
filename: learnangular.html
filename: learnangular.txt
---
## AngularJS Tutorial.

View File

@ -1,6 +1,6 @@
---
category: tool
tool: ansible
tool: Ansible
contributors:
- ["Jakub Muszynski" , "http://github.com/sirkubax"]
- ["Pat Myron" , "https://github.com/patmyron"]

View File

@ -1,7 +1,7 @@
---
language: html
language: HTML
lang: ar-ar
filename: learnhtml-tf.html
filename: learnhtml-tf.txt
contributors:
- ["Christophe THOMAS", "https://github.com/WinChris"]
translators:

View File

@ -1,5 +1,5 @@
---
language: arturo
language: Arturo
filename: learnarturo.art
contributors:
- ["Dr.Kameleon", "https://github.com/drkameleon"]

View File

@ -1,5 +1,5 @@
---
language: asciidoc
language: AsciiDoc
contributors:
- ["Ryan Mavilia", "http://unoriginality.rocks/"]
- ["Abel Salgado Romero", "https://twitter.com/abelsromero"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: awk
tool: AWK
filename: learnawk.awk
contributors:
- ["Marshall Mason", "http://github.com/marshallmason"]

View File

@ -1,6 +1,5 @@
---
category: tool
tool: bash
language: Bash
contributors:
- ["Max Yankov", "https://github.com/golergka"]
- ["Darren Lin", "https://github.com/CogBear"]

View File

@ -1,5 +1,5 @@
---
language: bf
language: BF
filename: bf.bf
contributors:
- ["Prajit Ramachandran", "http://prajitr.github.io/"]

View File

@ -1,7 +1,6 @@
---
name: perl
category: language
language: perl
language: Perl
filename: learnperl-bg.pl
contributors:
- ["Korjavin Ivan", "http://github.com/korjavin"]

View File

@ -1,5 +1,5 @@
---
language: asciidoc
language: AsciiDoc
contributors:
- ["Ryan Mavilia", "http://unoriginality.rocks/"]
translators:

View File

@ -1,5 +1,4 @@
---
name: Go
category: language
language: Go
lang: ca-es

View File

@ -1,5 +1,4 @@
---
name: Groovy
category: language
language: Groovy
lang: ca-es

View File

@ -1,6 +1,6 @@
---
language: html
filename: html-ca.md
language: HTML
filename: html-ca.txt
contributors:
- ["Christophe THOMAS", "https://github.com/WinChris"]
translators:

View File

@ -1,5 +1,5 @@
---
language: kotlin
language: Kotlin
contributors:
- ["S Webber", "https://github.com/s-webber"]
translators:

View File

@ -1,5 +1,5 @@
---
language: chapel
language: Chapel
filename: learnchapel.chpl
contributors:
- ["Ian J. Bertolacci", "https://www.cs.arizona.edu/~ianbertolacci/"]

View File

@ -1,5 +1,5 @@
---
language: "clojure macros"
language: Clojure macros
filename: learnclojuremacros.clj
contributors:
- ["Adam Bard", "http://adambard.com/"]

View File

@ -1,5 +1,5 @@
---
language: clojure
language: Clojure
filename: learnclojure.clj
contributors:
- ["Adam Bard", "http://adambard.com/"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: cmake
tool: CMake
contributors:
- ["Bruno Alano", "https://github.com/brunoalano"]
filename: CMake

View File

@ -1,5 +1,5 @@
---
language: coffeescript
language: CoffeeScript
contributors:
- ["Tenor Biel", "http://github.com/L8D"]
- ["Xavier Yao", "http://github.com/xavieryao"]

View File

@ -1,5 +1,5 @@
---
language: coldfusion
language: ColdFusion
filename: learncoldfusion.cfm
contributors:
- ["Wayne Boka", "http://wboka.github.io"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: compojure
tool: Compojure
contributors:
- ["Adam Bard", "http://adambard.com/"]
filename: learncompojure.clj

View File

@ -1,5 +1,5 @@
---
language: crystal
language: Crystal
filename: learncrystal.cr
contributors:
- ["Vitalii Elenhaupt", "http://veelenga.com"]

View File

@ -1,5 +1,5 @@
---
language: bf
language: BF
contributors:
- ["Prajit Ramachandran", "http://prajitr.github.io/"]
- ["Mathias Bynens", "http://mathiasbynens.be/"]

View File

@ -1,5 +1,5 @@
---
language: css
language: CSS
contributors:
- ["Mohammad Valipour", "https://github.com/mvalipour"]
- ["Marco Scannadinari", "https://github.com/marcoms"]

View File

@ -1,5 +1,4 @@
---
name: Go
category: language
language: Go
filename: learngo-cs.go

View File

@ -1,5 +1,5 @@
---
language: javascript
language: JavaScript
contributors:
- ["Leigh Brenecki", "https://leigh.net.au"]
- ["Ariel Krakowski", "http://www.learneroo.com"]

View File

@ -1,5 +1,5 @@
---
language: json
language: JSON
contributors:
- ["Anna Harren", "https://github.com/iirelu"]
- ["Marco Scannadinari", "https://github.com/marcoms"]

View File

@ -1,5 +1,5 @@
---
language: markdown
language: Markdown
lang: cs-cz
contributors:
- ["Dan Turkel", "http://danturkel.com/"]

View File

@ -1,5 +1,5 @@
---
language: sass
language: Sass
filename: learnsass-cz.scss
contributors:
- ["Laura Kyle", "https://github.com/LauraNK"]

View File

@ -1,5 +1,5 @@
---
language: css
language: CSS
contributors:
- ["Mohammad Valipour", "https://github.com/mvalipour"]
- ["Marco Scannadinari", "https://github.com/marcoms"]

View File

@ -1,5 +1,4 @@
---
name: CUE
category: language
language: CUE
filename: learncue.cue

View File

@ -1,5 +1,5 @@
---
language: cypher
language: Cypher
filename: LearnCypher.cql
contributors:
- ["Théo Gauchoux", "https://github.com/TheoGauchoux"]

View File

@ -1,5 +1,5 @@
---
language: dart
language: Dart
filename: learndart.dart
contributors:
- ["Joao Pedrosa", "https://github.com/jpedrosa/"]

View File

@ -1,5 +1,5 @@
---
language: asciidoc
language: AsciiDoc
contributors:
- ["Ryan Mavilia", "http://unoriginality.rocks/"]
translators:

View File

@ -1,6 +1,5 @@
---
category: tool
tool: bash
language: Bash
lang: de-de
contributors:
- ["Max Yankov", "https://github.com/golergka"]

View File

@ -1,5 +1,5 @@
---
language: bf
language: BF
contributors:
- ["Prajit Ramachandran", "http://prajitr.github.io/"]
- ["Mathias Bynens", "http://mathiasbynens.be/"]

View File

@ -1,5 +1,5 @@
---
language: clojure
language: Clojure
filename: learnclojure-de.clj
contributors:
- ["Adam Bard", "http://adambard.com/"]

View File

@ -1,5 +1,5 @@
---
language: "clojure macros"
language: Clojure macros
filename: learnclojuremacros-de.clj
contributors:
- ["Adam Bard", "http://adambard.com/"]

View File

@ -1,5 +1,5 @@
---
language: coffeescript
language: CoffeeScript
contributors:
- ["Tenor Biel", "http://github.com/L8D"]
- ["Xavier Yao", "http://github.com/xavieryao"]

View File

@ -1,5 +1,5 @@
---
language: crystal
language: Crystal
contributors:
- ["Vitalii Elenhaupt", "http://veelenga.com"]
- ["Arnaud Fernandés", "https://github.com/TechMagister/"]

View File

@ -1,5 +1,5 @@
---
language: css
language: CSS
contributors:
- ["Mohammad Valipour", "https://github.com/mvalipour"]
translators:

View File

@ -1,5 +1,5 @@
---
language: edn
language: EDN
filename: learnedn-de.edn
contributors:
- ["Jason Yeo", "https://github.com/jsyeo"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: git
tool: Git
contributors:
- ["Jake Prather", "http://github.com/JakeHP"]
translators:
@ -26,7 +26,7 @@ Eine Versionsverwaltung erfasst die Änderungen einer Datei oder eines Verzeichn
* Verteilte Versionsverwaltung konzentriert sich auf das Teilen der Änderungen. Jede Änderung hat eine eindeutige ID.
* Verteilte Systeme haben keine vorbestimmte Struktur. Ein SVN-ähnliches, zentrales System wäre mit Git ebenso umsetzbar.
[Weiterführende Informationen](http://git-scm.com/book/en/Getting-Started-About-Version-Control)
[Weiterführende Informationen](https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control)
### Warum Git?
@ -50,7 +50,7 @@ Ein Repository besteht in Git aus dem .git-Verzeichnis und dem Arbeitsverzeichni
### .git-Verzeichnis (Teil des Repositorys)
Das .git-Verzeichnis enthält alle Einstellungen, Logs, Branches, den HEAD und mehr.
[Ausführliche Übersicht](http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)
[Ausführliche Übersicht](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)
### Arbeitsverzeichnis (Teil des Repositorys)
@ -74,12 +74,6 @@ HEAD ist ein Pointer auf den aktuellen Branch. Ein Repository hat nur einen *akt
Ein *head* ist ein Pointer, der auf einen beliebigen Commit zeigt. Ein Repository kann eine beliebige Zahl von *heads* enthalten.
### Konzeptionelle Hintergründe
* [Git For Computer Scientists](http://eagain.net/articles/git-for-computer-scientists/)
* [Git For Designers](http://hoth.entp.com/output/git_for_designers.html)
## Befehle
@ -104,7 +98,7 @@ $ git config --global user.email "MyEmail@Zoho.com"
$ git config --global user.name "My Name"
```
[Mehr über git config](http://git-scm.com/docs/git-config)
[Mehr über git config](https://git-scm.com/docs/git-config)
### help
@ -255,7 +249,7 @@ $ git grep -e 'arrayListName' --and \( -e add -e remove \)
```
Google ist dein Freund; für mehr Beispiele:
[Git Grep Ninja](http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja)
[Git Grep Ninja](https://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja)
### log
@ -338,7 +332,7 @@ Nimm alle Änderungen, die in einem Branch durch Commits vorgenommen wurden, und
$ git rebase master experimentBranch
```
[Weiterführende Informationen](http://git-scm.com/book/en/Git-Branching-Rebasing)
[Weiterführende Informationen](https://git-scm.com/book/en/v2/Git-Branching-Rebasing)
### reset (mit Vorsicht einsetzen)
@ -375,14 +369,12 @@ $ git rm /pather/to/the/file/HelloWorld.c
## Weiterführende Informationen
* [tryGit - A fun interactive way to learn Git.](http://try.github.io/levels/1/challenges/1)
* [git-scm - Video Tutorials](https://git-scm.com/videos)
* [git-scm - Video Tutorials](http://git-scm.com/videos)
* [git-scm - Documentation](http://git-scm.com/docs)
* [git-scm - Documentation](https://git-scm.com/docs)
* [Atlassian Git - Tutorials & Workflows](https://www.atlassian.com/git/)
* [SalesForce Cheat Sheet](https://na1.salesforce.com/help/doc/en/salesforce_git_developer_cheatsheet.pdf)
* [gitflow - Ein Modell um mit Branches zu arbeiten](https://nvie.com/posts/a-successful-git-branching-model/)
* [gitflow - Ein Modell um mit Branches zu arbeiten](http://nvie.com/posts/a-successful-git-branching-model/)
* [Git For Computer Scientists](https://eagain.net/articles/git-for-computer-scientists/)

View File

@ -1,5 +1,5 @@
---
language: haml
language: Haml
filename: learnhaml-de.haml
contributors:
- ["Simon Neveu", "https://github.com/sneveu"]

View File

@ -1,6 +1,6 @@
---
language: HQ9+
filename: hq9+-de.html
filename: hq9+-de.txt
contributors:
- ["Alexey Nazaroff", "https://github.com/rogaven"]
translators:

View File

@ -1,10 +1,10 @@
---
language: html
language: HTML
contributors:
- ["Christophe THOMAS", "https://github.com/WinChris"]
translators:
- ["Dennis Keller", "https://github.com/denniskeller"]
filename: learnhtml-de.html
filename: learnhtml-de.txt
lang: de-de
---

View File

@ -1,5 +1,5 @@
---
language: java
language: Java
filename: LearnJavaDe-de.java
contributors:
- ["Jake Prather", "http://github.com/JakeHP"]

View File

@ -1,5 +1,5 @@
---
language: javascript
language: JavaScript
contributors:
- ["Leigh Brenecki", "https://leigh.net.au"]
translators:

View File

@ -1,5 +1,5 @@
---
language: json
language: JSON
filename: learnjson-de.json
contributors:
- ["Anna Harren", "https://github.com/iirelu"]

View File

@ -1,5 +1,5 @@
---
language: latex
language: LaTeX
contributors:
- ["Chaitanya Krishna Ande", "http://icymist.github.io"]
- ["Colton Kohnke", "http://github.com/voltnor"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: make
tool: Make
contributors:
- ["Robert Steed", "https://github.com/robochat"]
- ["Stephan Fuhrmann", "https://github.com/sfuhrm"]

View File

@ -1,5 +1,5 @@
---
language: markdown
language: Markdown
contributors:
- ["Dan Turkel", "http://danturkel.com/"]
translators :

View File

@ -1,5 +1,5 @@
---
language: nix
language: Nix
filename: learnnix-de.nix
contributors:
- ["Chris Martin", "http://chris-martin.org/"]

View File

@ -1,5 +1,5 @@
---
language: perl
language: Perl
filename: learnperl-de.pl
contributors:
- ["Korjavin Ivan", "http://github.com/korjavin"]

View File

@ -1,12 +1,11 @@
---
language: processing
language: Processing
filename: learnprocessing.pde
contributors:
- ["Phone Thant Ko", "http://github.com/phonethantko"]
- ["Divay Prakash", "https://github.com/divayprakash"]
translators:
- ["caminsha", "https://github.com/caminsha"]
filename: processing-de.md
lang: de-de
---

View File

@ -1,6 +1,6 @@
---
category: framework
framework: PyQT
framework: PyQt
filename: learnpyqt-de.py
contributors:
- ["Nathan Hughes", "https://github.com/sirsharpest"]

View File

@ -1,6 +1,6 @@
---
category: framework
framework: Qt Framework
framework: Qt
language: C++
filename: learnqt-de.cpp
contributors:

View File

@ -1,5 +1,5 @@
---
language: restructured text (RST)
language: reStructuredText (RST)
filename: restructuredtext-de.rst
contributors:
- ["DamienVGN", "https://github.com/martin-damien"]
@ -36,7 +36,7 @@ initiiert werden.
Ein einfaches Beispiel für die Dateisyntax:
```
```rst
.. Zeilen, die mit zwei Punkten starten sind spezielle Befehle.
.. Wenn kein Befehl gefunden wird, wird die Zeile als Kommentar gewertet.

View File

@ -1,5 +1,5 @@
---
language: ruby
language: Ruby
filename: ruby-de.rb
contributors:
- ["David Underwood", "http://theflyingdeveloper.com"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: ruby ecosystem
tool: Ruby ecosystem
contributors:
- ["Jon Smock", "http://github.com/jonsmock"]
- ["Rafal Chmiel", "http://github.com/rafalchmiel"]

View File

@ -1,5 +1,5 @@
---
language: sass
language: Sass
filename: learnsass-de.scss
contributors:
- ["Laura Kyle", "https://github.com/LauraNK"]

View File

@ -1,6 +1,6 @@
---
category: framework
filename: learnshutit-de.html
filename: learnshutit-de.py
framework: ShutIt
contributors:
- ["Ian Miell", "http://ian.meirionconsulting.tk"]

View File

@ -1,5 +1,5 @@
---
language: swift
language: Swift
contributors:
- ["Grant Timmerman", "http://github.com/grant"]
- ["Christopher Bess", "http://github.com/cbess"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: vim
tool: Vim
lang: de-de
contributors:
- ["RadhikaG", "https://github.com/RadhikaG"]

View File

@ -1,5 +1,5 @@
---
language: yaml
language: YAML
contributors:
- ["Leigh Brenecki", "https://github.com/adambrenecki"]
translators:

View File

@ -1,6 +1,6 @@
---
category: tool
tool: docker
tool: Docker
filename: docker.bat
contributors:
- ["Ruslan López", "http://javapro.org/"]

View File

@ -1,5 +1,5 @@
---
language: edn
language: EDN
filename: learnedn.edn
contributors:
- ["Jason Yeo", "https://github.com/jsyeo"]

View File

@ -1,6 +1,5 @@
---
category: tool
tool: bash
language: Bash
contributors:
- ["Dimitri Kokkonis", "https://github.com/kokkonisd"]
filename: LearnBash-gr.sh

View File

@ -1,8 +1,8 @@
---
language: css
language: CSS
contributors:
- ["Kostas Bariotis", "http://kostasbariotis.com"]
filename: css-gr.html.markdown
filename: css-gr.css
lang: el-gr
---

View File

@ -1,6 +1,6 @@
---
language: html
filename: learnhtml-gr.html
language: HTML
filename: learnhtml-gr.txt
contributors:
- ["Dimitri Kokkonis", "https://github.com/kokkonisd"]
lang: el-gr

View File

@ -1,5 +1,5 @@
---
language: java
language: Java
contributors:
- ["Jake Prather", "http://github.com/JakeHP"]
- ["Jakukyo Friel", "http://weakish.github.io"]

View File

@ -1,6 +1,6 @@
---
language: json
filename: json-gr.html.markdown
language: JSON
filename: json-gr.json
contributors:
- ["Anna Harren", "https://github.com/iirelu"]
- ["Marco Scannadinari", "https://github.com/marcoms"]

View File

@ -1,5 +1,5 @@
---
language: racket
language: Racket
filename: learnracket-gr.rkt
contributors:
- ["th3rac25", "https://github.com/voila"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: vim
tool: Vim
contributors:
- ["RadhikaG", "https://github.com/RadhikaG"]
filename: LearnVim-gr.txt

View File

@ -1,5 +1,5 @@
---
language: elisp
language: Emacs Lisp
contributors:
- ["Bastien Guerry", "https://bzg.fr"]
- ["Saurabh Sandav", "http://github.com/SaurabhSandav"]

View File

@ -1,6 +1,6 @@
---
category: tool
tool: emacs
tool: Emacs
filename: emacs.txt
contributors:
- ["Joseph Riad", "https://github.com/Joseph-Riad"]

View File

@ -1,5 +1,5 @@
---
language: erlang
language: Erlang
contributors:
- ["Giovanni Cappellotto", "http://giovanni.curlybrackets.it/"]
filename: learnerlang.erl

View File

@ -1,7 +1,7 @@
---
category: tool
tool: amd
tool: AMD
contributors:
- ["Frederik Ring", "https://github.com/m90"]

View File

@ -1,5 +1,5 @@
---
language: asciidoc
language: AsciiDoc
contributors:
- ["Ryan Mavilia", "http://unoriginality.rocks/"]
translators:

View File

@ -1,6 +1,6 @@
---
category: tool
tool: awk
tool: AWK
filename: learnawk-es.awk
contributors:
- ["Marshall Mason", "http://github.com/marshallmason"]

View File

@ -1,6 +1,5 @@
---
category: tool
tool: bash
language: Bash
contributors:
- ["Max Yankov", "https://github.com/golergka"]
- ["Darren Lin", "https://github.com/CogBear"]

View File

@ -1,5 +1,5 @@
---
language: bf
language: BF
filename: bf-es.bf
contributors:
- ["Prajit Ramachandran", "http://prajitr.github.io/"]

View File

@ -1,5 +1,5 @@
---
language: chapel
language: Chapel
filename: learnchapel.chpl
contributors:
- ["Ian J. Bertolacci", "https://www.cs.arizona.edu/~ianbertolacci/"]

View File

@ -1,5 +1,5 @@
---
language: clojure
language: Clojure
filename: learnclojure-es.clj
contributors:
- ["Adam Bard", "http://adambard.com/"]

View File

@ -1,5 +1,5 @@
---
language: coffeescript
language: CoffeeScript
lang: es-es
contributors:
- ["Tenor Biel", "http://github.com/L8D"]

View File

@ -1,5 +1,5 @@
---
language: coldfusion
language: ColdFusion
filename: learncoldfusion-es.cfm
contributors:
- ["Wayne Boka", "http://wboka.github.io"]

View File

@ -1,5 +1,5 @@
---
language: css
language: CSS
contributors:
- ["Mohammad Valipour", "https://github.com/mvalipour"]
- ["Marco Scannadinari", "https://github.com/marcoms"]

View File

@ -1,10 +1,10 @@
---
language: dart
language: Dart
contributors:
- ["Joao Pedrosa", "https://github.com/jpedrosa/"]
translators:
- ["Jorge Antonio Atempa", "http://www.twitter.com/atempa09"]
filename: dart-es.md
filename: dart-es.dart
lang: es-es
---

View File

@ -1,5 +1,5 @@
---
language: docker
language: Docker
filename: docker-es.bat
contributors:
- ["Ruslan López", "http://javapro.org/"]

View File

@ -1,5 +1,5 @@
---
language: edn
language: EDN
filename: learnedn-es.edn
contributors:
- ["Jason Yeo", "https://github.com/jsyeo"]

View File

@ -1,5 +1,5 @@
---
language: elisp
language: Emacs Lisp
contributors:
- ["Bastien Guerry", "http://bzg.fr"]
translators:

View File

@ -1,5 +1,5 @@
---
language: factor
language: Factor
contributors:
- ["hyphz", "http://github.com/hyphz/"]
translators:

View File

@ -1,5 +1,5 @@
---
language: forth
language: Forth
contributors:
- ["Horse M.D.", "http://github.com/HorseMD/"]
translators:

View File

@ -1,6 +1,6 @@
---
category: tool
tool: git
tool: Git
filename: LearnGit-es.txt
contributors:
- ["Jake Prather", "http://github.com/JakeHP"]
@ -31,7 +31,7 @@ uno o varios archivos, a lo largo del tiempo.
+ El versionamiento distribuido no tiene una estructura definida, incluso se
puede mantener el estilo de los repositorios SVN con git.
[Información adicional](http://git-scm.com/book/es/Empezando-Acerca-del-control-de-versiones)
[Información adicional](https://git-scm.com/book/es/v2/Inicio---Sobre-el-Control-de-Versiones-Acerca-del-Control-de-Versiones)
### ¿Por qué usar Git?
@ -58,7 +58,7 @@ Un repositorio esta compuesto por la carpeta .git y un "árbol de trabajo".
El directorio .git contiene todas las configuraciones, registros, branches, HEAD
y mas.
[Lista detallada.](http://es.gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)
[Lista detallada.](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)
### Directorio de trabajo (componentes del repositorio)
@ -91,15 +91,8 @@ repositorio solo puede tener un HEAD activo. En cambio "head", es un apuntador a
cualquier commit realizado, un repositorio puede tener cualquier número de
"heads".
### conceptos - recursos.
* [Git para informáticos](http://eagain.net/articles/git-for-computer-scientists/)
* [Git para diseñadores](http://hoth.entp.com/output/git_for_designers.html)
## Comandos.
### init
Crear un repositorio de git vacio. Las configuraciones, información almacenada y
@ -123,7 +116,7 @@ $ git config --global user.email "corre@gmail.com"
$ git config --global user.name "nombre"
```
[Más sobre git config.](http://git-scm.com/book/es/Personalizando-Git-Configuración-de-Git)
[Más sobre git config.](https://git-scm.com/book/es/v2/Personalizaci%c3%b3n-de-Git-Configuraci%c3%b3n-de-Git)
### help
@ -275,7 +268,7 @@ $ git grep -e 'nombreArreglo' --and \( -e agregar -e remover \)
Más ejemplos:
- [Git Grep Ninja](http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja)
- [Git Grep Ninja](https://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja)
### log
@ -354,7 +347,7 @@ de otra rama. *No reescribe los commits que se han empujado antes a un repositor
$ git rebase master experimentBranch
```
[Información adicional.](http://git-scm.com/book/es/Ramificaciones-en-Git-Procedimientos-básicos-para-ramificar-y-fusionar)
[Información adicional.](https://git-scm.com/book/es/v2/Ramificaciones-en-Git-Reorganizar-el-Trabajo-Realizado)
### reset (precaución)
@ -396,22 +389,18 @@ $ git rm /directorio/del/archivo/FooBar.c
## Información Adicional
* [tryGit - Una forma entretenida y rapida de aprender Git.](http://try.github.io/levels/1/challenges/1)
* [Udemy tutorial de Git: Una guía completa](https://blog.udemy.com/git-tutorial-a-comprehensive-guide/)
* [Inmersión Git - Una visita guiada caminando a través de los fundamentos de git](http://gitimmersion.com/)
* [Inmersión Git - Una visita guiada caminando a través de los fundamentos de git](https://gitimmersion.com/)
* [git-scm - Video-tutoriales](http://git-scm.com/videos)
* [git-scm - Documentacion](http://git-scm.com/book/es)
* [git-scm - Video-tutoriales](https://git-scm.com/videos)
* [Atlassian Git - Tutoriales y Flujos de trabajo](https://www.atlassian.com/git/)
* [SalesForce Chuleta](https://na1.salesforce.com/help/doc/en/salesforce_git_developer_cheatsheet.pdf)
* [git - la guía sencilla](https://rogerdudler.github.io/git-guide/index.es.html)
* [Git - La guía simple](http://rogerdudler.github.io/git-guide/index.html)
* [Pro Git](https://git-scm.com/book/es/v2)
* [Pro Git](http://www.git-scm.com/book/en/v2)
* [Una introducción a Git y GitHub para principiantes (Tutorial)](https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners)
* [Una introducción a Git y GitHub para principiantes (Tutorial)](http://product.hubspot.com/blog/git-and-github-tutorial-for-beginners)
* [Git para informáticos](https://eagain.net/articles/git-for-computer-scientists/)

View File

@ -1,5 +1,4 @@
---
name: Go
category: language
language: Go
lang: es-es

View File

@ -5,7 +5,7 @@ contributors:
translators:
- ["Jhoon Saravia", "https://github.com/jhoon"]
lang: es-es
filename: groovy-es.html
filename: groovy-es.groovy
---
Groovy - Un lenguaje dinámico para la plataforma Java. [Leer más aquí](http://www.groovy-lang.org/).

View File

@ -1,5 +1,5 @@
---
language: haml
language: Haml
filename: learnhaml-es.haml
contributors:
- ["Simon Neveu", "https://github.com/sneveu"]

View File

@ -4,7 +4,7 @@ contributors:
- ["Adit Bhargava", "http://adit.io"]
translators:
- ["Jorge Antonio Atempa", "http://www.twitter.com/atempa09"]
filename: haskell-es.md
filename: haskell-es.hs
lang: es-es
---

Some files were not shown because too many files have changed in this diff Show More