Skip to content

Commit adda1dc

Browse files
committed
Update internal links
1 parent d922514 commit adda1dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+71
-76
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Anything not covered by the above -- basically, this README -- you can use as
4040
you wish, I guess.
4141

4242

43-
[1]: http://learnxinyminutes.com
43+
[1]: https://learnxinyminutes.com
4444
[2]: /CONTRIBUTING.md
4545
[3]: http://creativecommons.org/licenses/by-sa/3.0/deed.en_US

ar/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ filename: learnpython-ar.py
1515
لقد أُنشئت لغة البايثون بواسطة جايدو ڤان روسم في بداية التسعينات. هي الأن أحد أشهر اللغات الموجودة.
1616
لقد أحببت لغة البايثون بسبب وضوحها. هي في الأساس عبارة عن سودوكود قابل للتنفيذ.
1717

18-
ملحوظة: هذا المقال يُطبق على بايثون 3 فقط. راجع المقال [هنا](http://learnxinyminutes.com/docs/pythonlegacy/) إذا أردت تعلم لغة البايثون نسخة 2.7 الأقدم
18+
ملحوظة: هذا المقال يُطبق على بايثون 3 فقط. راجع المقال [هنا](../pythonlegacy/) إذا أردت تعلم لغة البايثون نسخة 2.7 الأقدم
1919

2020
```python
2121
# تعليق من سطر واحد يبدأ برمز الرقم.

assemblyscript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ filename: learnassemblyscript.ts
1010

1111
__AssemblyScript__ compiles a variant of __TypeScript__ (basically JavaScript with types) to __WebAssembly__ using __Binaryen__. It generates lean and mean WebAssembly modules while being just an `npm install` away.
1212

13-
This article will focus only on AssemblyScript extra syntax, as opposed to [TypeScript](/docs/typescript) and [JavaScript](/docs/javascript).
13+
This article will focus only on AssemblyScript extra syntax, as opposed to [TypeScript](../typescript/) and [JavaScript](../javascript/).
1414

1515
To test AssemblyScript's compiler, head to the
1616
[Playground](https://www.assemblyscript.org/editor.html#IyFydW50aW1lPXN0dWIKLyoqIENhbGN1bGF0ZXMgdGhlIG4tdGggRmlib25hY2NpIG51bWJlci4gKi8KZXhwb3J0IGZ1bmN0aW9uIGZpYihuOiBpMzIpOiBpMzIgewogIHZhciBhID0gMCwgYiA9IDEKICBpZiAobiA+IDApIHsKICAgIHdoaWxlICgtLW4pIHsKICAgICAgbGV0IHQgPSBhICsgYgogICAgICBhID0gYgogICAgICBiID0gdAogICAgfQogICAgcmV0dXJuIGIKICB9CiAgcmV0dXJuIGEKfQoKIyFodG1sCjx0ZXh0YXJlYSBpZD0ib3V0cHV0IiBzdHlsZT0iaGVpZ2h0OiAxMDAlOyB3aWR0aDogMTAwJSIgcmVhZG9ubHk+PC90ZXh0YXJlYT4KPHNjcmlwdD4KbG9hZGVyLmluc3RhbnRpYXRlKG1vZHVsZV93YXNtLCB7IC8qIGltcG9ydHMgKi8gfSkKICAudGhlbigoeyBleHBvcnRzIH0pID0+IHsKICAgIGNvbnN0IG91dHB1dCA9IGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKCdvdXRwdXQnKQogICAgZm9yIChsZXQgaSA9IDA7IGkgPD0gMTA7ICsraSkgewogICAgICBvdXRwdXQudmFsdWUgKz0gYGZpYigke2l9KSA9ICR7ZXhwb3J0cy5maWIoaSl9XG5gCiAgICB9CiAgfSkKPC9zY3JpcHQ+Cg==) where you will be able

clojure-macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use a macro only when you need control over when or if the arguments to a form w
1414
be evaluated.
1515

1616
You'll want to be familiar with Clojure. Make sure you understand everything in
17-
[Clojure in Y Minutes](/docs/clojure/).
17+
[Clojure in Y Minutes](../clojure/).
1818

1919
```clojure
2020
;; Define a macro using defmacro. Your macro should output a list that can

cs/hack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ které známe ze staticky typovaných jazyků.
1212

1313
Níže jsou popsané pouze vlastnosti jazyka Hack. Detaily ohledně jazyka PHP a jeho
1414
syntaxe pak najdete na těchto stránkách v samostatném
15-
[článku o PHP](http://learnxinyminutes.com/docs/php/).
15+
[článku o PHP](/php/).
1616

1717
```php
1818
<?hh

cs/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ filename: learnpython-cz.py
1212
Python byl vytvořen Guidem Van Rossum v raných 90. letech. Nyní je jedním z nejpopulárnějších jazyků.
1313
Zamiloval jsem si Python pro jeho syntaktickou čistotu - je to vlastně spustitelný pseudokód.
1414

15-
Poznámka: Tento článek je zaměřen na Python 3. Zde se můžete [naučit starší Python 2.7](http://learnxinyminutes.com/docs/pythonlegacy/).
15+
Poznámka: Tento článek je zaměřen na Python 3. Zde se můžete [naučit starší Python 2.7](/pythonlegacy/).
1616

1717
```python
1818
# Jednořádkový komentář začíná křížkem

de/clojure-macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Sei aber vorsichtig, es wird als schlechter Stil angesehen, wenn du
1616
ein Macro schreibst, obwohl eine Funktion genauso gut funktionieren würde.
1717
Verwende nur dann ein Macro, wenn du Kontrolle darüber brauchst, wann oder ob Argumente in einer Form evaluiert werden.
1818

19-
Wenn du mit Clojure vertraut sein möchtest, stelle sicher, dass du alles in [Clojure in Y Minutes](/docs/clojure/) verstehst.
19+
Wenn du mit Clojure vertraut sein möchtest, stelle sicher, dass du alles in [Clojure in Y Minutes](../clojure/) verstehst.
2020

2121
```clojure
2222
;; Definiere ein Macro mit defmacro. Dein Macro sollte eine Liste zurückgeben,

de/hack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Typisierung der Sprache, die eine wesentlich höhere Performance erlaubt.
1515

1616

1717
Hier werden nur Hack-spezifische Eigenschaften beschrieben. Details über PHP's
18-
Syntax findet man im [PHP Artikel](http://learnxinyminutes.com/docs/php/) dieser
18+
Syntax findet man im [PHP Artikel](/php/) dieser
1919
Seite.
2020

2121
```php

de/paren.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ translators:
1111
[Paren](https://bitbucket.org/ktg/paren) ist ein Dialekt von Lisp.
1212
Es ist als eingebettete Sprache konzipiert.
1313

14-
Manche Beispiele sind von <http://learnxinyminutes.com/docs/racket/>.
14+
Manche Beispiele sind von [Racket](/racket/).
1515

1616
```scheme
1717
;;; Kommentare

de/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ filename: learnpython-de.py
1010
Anmerkungen des ursprünglichen Autors:
1111
Python wurde in den frühen Neunzigern von Guido van Rossum entworfen. Es ist heute eine der beliebtesten Sprachen. Ich habe mich in Python wegen seiner syntaktischen Übersichtlichkeit verliebt. Eigentlich ist es ausführbarer Pseudocode.
1212

13-
Hinweis: Dieser Beitrag bezieht sich implizit auf Python 3. Falls du lieber Python 2.7 lernen möchtest, schau [hier](http://learnxinyminutes.com/docs/pythonlegacy/) weiter. Beachte hierbei,
13+
Hinweis: Dieser Beitrag bezieht sich implizit auf Python 3. Falls du lieber Python 2.7 lernen möchtest, schau [hier](/pythonlegacy/) weiter. Beachte hierbei,
1414
dass Python 2 als veraltet gilt und für neue Projekte nicht mehr verwendet werden sollte.
1515

1616
```python

de/qt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ translators:
1010
die auf verschiedenen Hard- und Softwareplattformen mit wenig oder keinen Veränderungen im Code läuft.
1111
Dabei besitzt man die Power und Geschwindigkeit von nativen Anwendungen.
1212
Obwohl **Qt** ursprünglich in *C++* geschrieben wurde,
13-
gibt es verschiedene Ports für andere Sprachen: *[PyQt](https://learnxinyminutes.com/docs/pyqt/)*, *QtRuby*, *PHP-Qt*, etc.
13+
gibt es verschiedene Ports für andere Sprachen: *[PyQt](../pyqt/)*, *QtRuby*, *PHP-Qt*, etc.
1414

1515
**Qt** eignet sich hervorragend zum Erstellen von Anwendungen mit grafischer Benutzeroberfläche (GUI).
1616
Dieses Tutorial zeigt, wie man das in *C++* macht.

el/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ filename: learnpython-gr.py
1414
δημοφιλείς γλώσσες. Ερωτευεται κανείς την python για τη συντακτική της απλότητα.
1515
Βασικά είναι εκτελέσιμος ψευδοκώδικας.
1616

17-
Σημείωση: Το παρόν άρθρο ασχολείται μόνο με την Python 3. Δείτε [εδώ](http://learnxinyminutes.com/docs/pythonlegacy/) αν θέλετε να μάθετε την παλιά Python 2.7
17+
Σημείωση: Το παρόν άρθρο ασχολείται μόνο με την Python 3. Δείτε [εδώ](/pythonlegacy/) αν θέλετε να μάθετε την παλιά Python 2.7
1818

1919
```python
2020
# Τα σχόλια μίας γραμμής ξεκινούν με #

es/hack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ filename: learnhack-es.hh
99

1010
Hack es un superconjunto de PHP que se ejecuta en una máquina virtual llamada HHVM. Hack es casi totalmente compatible con código PHP ya existente y añade varias características típicas de los lenguajes de programación estáticamente tipados.
1111

12-
En este artículo sólo se cubren las características específicas de Hack. Los detalles sobre la sintaxis de PHP están en el [artículo sobre PHP](http://learnxinyminutes.com/docs/php/) de esta misma web.
12+
En este artículo sólo se cubren las características específicas de Hack. Los detalles sobre la sintaxis de PHP están en el [artículo sobre PHP](../php/) de esta misma web.
1313

1414
```php
1515
<?hh

es/jquery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ filename: jquery-es.js
88

99
jQuery es una librería de JavaScript que le ayuda a "hacer más y escribir menos". Esto hace que muchas de las tareas comunes de JavaScript sean más fáciles de escribir. jQuery es utilizado por muchas de las grandes empresas y desarrolladores de todo el mundo. Hace que AJAX, la gestión de eventos, la manipulación de documentos, y mucho más, sea más fácil y rápido.
1010

11-
Debido a que jQuery es una librería de JavaScript debes [aprender JavaScript primero](https://learnxinyminutes.com/docs/es-es/javascript-es/)
11+
Debido a que jQuery es una librería de JavaScript debes [aprender JavaScript primero](../javascript/)
1212

1313
```js
1414
///////////////////////////////////

es/r.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ require(plyr)
659659

660660
# "pets.csv" es un archivo en internet
661661
# (pero puede ser tan fácil como tener el archivo en tu computadora)
662-
pets <- read.csv("http://learnxinyminutes.com/docs/pets.csv")
662+
pets <- read.csv("https://learnxinyminutes.com/pets.csv")
663663
pets
664664
head(pets, 2) # primeras dos filas
665665
tail(pets, 1) # última fila

es/typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TypeScript es un lenguaje cuyo objetivo es facilitar el desarrollo de aplicacion
1010
TypeScript añade conceptos comunes como clases, módulos, interfaces, genéricos y (opcionalmente) tipeo estático a JavaScript.
1111
Es un superset de JavaScript: todo el código JavaScript es código válido en TypeScript de manera que se puede integrar fácilmente a cualquier proyecto . El compilador TypeScript emite JavaScript.
1212

13-
Este artículo se enfocará solo en la sintáxis extra de TypeScript, y no en [JavaScript](../javascript-es/).
13+
Este artículo se enfocará solo en la sintáxis extra de TypeScript, y no en [JavaScript](../javascript/).
1414

1515
Para probar el compilador de TypeScript, diríjase al [Área de Pruebas](https://www.typescriptlang.org/Playground) donde podrá tipear código, y ver como se auto-completa al tiempo que ve el código emitido JavaScript.
1616

fr/jquery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ filename: jquery-fr.js
99
jQuery est une bibliothèque JavaScript dont le but est de permettre de "faire plus en écrivant moins" (do more, write less). Elle facilite l'écriture de nombreuses fonctions, notamment au niveau d'AJAX, de la gestion d'événements, ou encore de la manipulation de documents.
1010
C'est pourquoi aujourd'hui, jQuery est utilisée par de nombreuses grandes entreprises et par des développeurs du monde entier.
1111

12-
Étant donné que jQuery est une bibliothèque JavaScript, vous devriez d'abord [apprendre le JavaScript](https://learnxinyminutes.com/docs/fr-fr/javascript-fr/)
12+
Étant donné que jQuery est une bibliothèque JavaScript, vous devriez d'abord [apprendre le JavaScript](./javascript/)
1313

1414
```js
1515
///////////////////////////////////

fr/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Python a été créé par Guido Van Rossum au début des années 90. C'est maint
1414
langages les plus populaires. Je suis tombé amoureux de Python pour la clarté de sa syntaxe.
1515
C'est tout simplement du pseudo-code exécutable.
1616

17-
Note : Cet article s'applique spécifiquement à Python 3. Jettez un coup d'oeil [ici](http://learnxinyminutes.com/docs/fr-fr/python-fr/) pour apprendre le vieux Python 2.7
17+
Note : Cet article s'applique spécifiquement à Python 3. Jettez un coup d'oeil [ici](../pythonlegacy/) pour apprendre le vieux Python 2.7
1818

1919
```python
2020
# Un commentaire d'une ligne commence par un dièse

fr/pythonlegacy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ translators:
1010
Python a été créé par Guido Van Rossum au début des années 90. C'est maintenant un des langages de programmation les plus populaires.
1111
Je suis tombé amoureux de Python de par la clarté de sa syntaxe. C'est pratiquement du pseudo-code exécutable.
1212

13-
N.B. : Cet article s'applique spécifiquement à Python 2.7, mais devrait s'appliquer pour toute version Python 2.x. Python 2.7 est en fin de vie et ne sera plus maintenu à partir de 2020, il est donc recommandé d'apprendre Python avec Python 3. Pour Python 3.x, il existe un autre [tutoriel pour Python 3](http://learnxinyminutes.com/docs/fr-fr/python3-fr/).
13+
N.B. : Cet article s'applique spécifiquement à Python 2.7, mais devrait s'appliquer pour toute version Python 2.x. Python 2.7 est en fin de vie et ne sera plus maintenu à partir de 2020, il est donc recommandé d'apprendre Python avec Python 3. Pour Python 3.x, il existe un autre [tutoriel pour Python 3](../python/).
1414

1515
```python
1616
# Une ligne simple de commentaire commence par un dièse

fr/r.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ require(plyr)
688688

689689
# "pets.csv" est un fichier sur internet
690690
# (mais il pourrait être tout aussi facilement sur votre ordinateur)
691-
pets <- read.csv("http://learnxinyminutes.com/docs/pets.csv")
691+
pets <- read.csv("https://learnxinyminutes.com/pets.csv")
692692
pets
693693
head(pets, 2) # first two rows
694694
tail(pets, 1) # last row

fr/typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TypeScript est un langage visant à faciliter le développement d'applications l
1010
TypeScript ajoute des concepts classiques comme les classes, les modules, les interfaces, les génériques et le typage statique (optionnel) à JavaScript.
1111
C'est une surcouche de JavaScript : tout le code JavaScript est valide en TypeScript ce qui permet de l'ajouter de façon transparente à n'importe quel projet. Le code TypeScript est transcompilé en JavaScript par le compilateur.
1212

13-
Cet article se concentrera seulement sur la syntaxe supplémentaire de TypeScript, plutôt que celle de [JavaScript](../javascript-fr/).
13+
Cet article se concentrera seulement sur la syntaxe supplémentaire de TypeScript, plutôt que celle de [JavaScript](../javascript/).
1414

1515
Pour tester le compilateur de TypeScript, rendez-vous au [Playground](https://www.typescriptlang.org/Playground) où vous pourrez coder, profiter d'une autocomplétion et accéder directement au rendu JavaScript.
1616

hjson.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contributors:
55
- ["MrTeferi", "https://github.com/MrTeferi"]
66
---
77

8-
Hjson is an attempt to make [JSON](https://learnxinyminutes.com/docs/json/) more human readable.
8+
Hjson is an attempt to make [JSON](../json/) more human readable.
99

1010
Hjson is a syntax extension to JSON.
1111
It's NOT a proposal to replace JSON or to incorporate it into the JSON spec itself.

hu/pythonlegacy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bele. Tulajdonképpen futtatható pszeudokód.
1818
Figyelem: ez a leírás a Python 2.7 verziójára vonatkozik, illetve
1919
általánosságban a 2.x verziókra. A Python 2.7 azonban már csak 2020-ig lesz
2020
támogatva, ezért kezdőknek ajánlott, hogy a Python 3-mal kezdjék az
21-
ismerkedést. A Python 3.x verzióihoz a [Python 3 bemutató](http://learnxinyminutes.com/docs/python/)
21+
ismerkedést. A Python 3.x verzióihoz a [Python 3 bemutató](/python/)
2222
ajánlott.
2323

2424
Lehetséges olyan Python kódot írni, ami egyszerre kompatibilis a 2.7 és a 3.x

it/jquery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ translators:
88

99
jQuery è una libreria JavaScript che ti aiuta a "fare di più, scrivendo meno". Rende molte attività comuni di JavaScript più facili da scrivere. jQuery è utilizzato da molte grandi aziende e sviluppatori in tutto il mondo. Rende AJAX, gestione degli eventi, manipolazione dei documenti e molto altro, più facile e veloce.
1010

11-
Visto che jQuery è una libreria JavaScript dovresti prima [imparare JavaScript](https://learnxinyminutes.com/docs/javascript/)
11+
Visto che jQuery è una libreria JavaScript dovresti prima [imparare JavaScript](../javascript/)
1212

1313
```js
1414
///////////////////////////////////

it/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ translators:
1515

1616
Python è stato creato da Guido Van Rossum agli inizi degli anni 90. Oggi è uno dei più popolari linguaggi esistenti. Mi sono innamorato di Python per la sua chiarezza sintattica. E' sostanzialmente pseudocodice eseguibile.
1717

18-
Nota: Questo articolo è riferito a Python 3 in modo specifico. Se volete avete la necessità di utilizzare Python 2.7 potete consultarla [qui](https://learnxinyminutes.com/docs/it-it/python-it/)
18+
Nota: Questo articolo è riferito a Python 3 in modo specifico. Se volete avete la necessità di utilizzare Python 2.7 potete consultarla [qui](../pythonlegacy/)
1919

2020
```python
2121
# I commenti su una sola linea iniziano con un cancelletto

it/pythonlegacy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pseudocodice eseguibile.
1616
Nota: questo articolo è riferito a Python 2.7 in modo specifico, ma dovrebbe andar
1717
bene anche per Python 2.x. Python 2.7 sta raggiungendo il "fine vita", ovvero non sarà
1818
più supportato nel 2020. Quindi è consigliato imparare Python utilizzando Python 3.
19-
Per maggiori informazioni su Python 3.x, dai un'occhiata al [tutorial di Python 3](http://learnxinyminutes.com/docs/python/).
19+
Per maggiori informazioni su Python 3.x, dai un'occhiata al [tutorial di Python 3](../python/).
2020

2121
E' possibile anche scrivere codice compatibile sia con Python 2.7 che con Python 3.x,
2222
utilizzando [il modulo `__future__`](https://docs.python.org/2/library/__future__.html) di Python.

it/qt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ translators:
66
- ["Ale46", "https://gihub.com/ale46"]
77
---
88

9-
**Qt** è un framework ampiamente conosciuto per lo sviluppo di software multipiattaforma che può essere eseguito su varie piattaforme software e hardware con modifiche minime o nulle nel codice, pur avendo la potenza e la velocità delle applicazioni native. Sebbene **Qt** sia stato originariamente scritto in *C++*, ci sono diversi porting in altri linguaggi: *[PyQt](https://learnxinyminutes.com/docs/pyqt/)*, *QtRuby*, *PHP-Qt*, etc.
9+
**Qt** è un framework ampiamente conosciuto per lo sviluppo di software multipiattaforma che può essere eseguito su varie piattaforme software e hardware con modifiche minime o nulle nel codice, pur avendo la potenza e la velocità delle applicazioni native. Sebbene **Qt** sia stato originariamente scritto in *C++*, ci sono diversi porting in altri linguaggi: *[PyQt](../pyqt/)*, *QtRuby*, *PHP-Qt*, etc.
1010

1111
**Qt** è ottimo per la creazione di applicazioni con interfaccia utente grafica (GUI). Questo tutorial descrive come farlo in *C++*.
1212

ja/python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ filename: learnpython-jp.py
1818
私は構文の明快さによって、Pythonと恋に落ちました。
1919
以下は基本的に実行可能な疑似コードです。
2020

21-
Note: この記事はPython 3に内容を絞っています。もし古いPython 2.7を学習したいなら、 [こちら](http://learnxinyminutes.com/docs/pythonlegacy/) をご確認下さい。
21+
Note: この記事はPython 3に内容を絞っています。もし古いPython 2.7を学習したいなら、 [こちら](/pythonlegacy/) をご確認下さい。
2222

2323
```python
2424
# 1行のコメントは番号記号(#)から始まります。

ja/r.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ require(plyr)
706706

707707
# "pets.csv"は、インターネット上に置いてあるファイルです
708708
# (しかし、自分のPCにあるのと同じぐらい簡単に扱う事ができます)
709-
pets <- read.csv("http://learnxinyminutes.com/docs/pets.csv")
709+
pets <- read.csv("https://learnxinyminutes.com/pets.csv")
710710
pets
711711
head(pets, 2) # 最初の2行
712712
tail(pets, 1) # 最後の行

jquery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ filename: jquery.js
99

1010
jQuery is a JavaScript library that helps you "do more, write less". It makes many common JavaScript tasks and makes them easier to write. jQuery is used by many big companies and developers everywhere. It makes AJAX, event handling, document manipulation, and much more, easier and faster.
1111

12-
Because jQuery is a JavaScript library you should [learn JavaScript first](https://learnxinyminutes.com/docs/javascript/)
12+
Because jQuery is a JavaScript library you should [learn JavaScript first](../javascript/)
1313

1414
**NOTE**: jQuery has fallen out of the limelight in recent years, since you can achieve the same thing with the vanilla DOM (Document Object Model) API. So the only thing it is used for is a couple of handy features, such as the [jQuery date picker](https://api.jqueryui.com/datepicker) (which actually has a standard, unlike the `<input type="date">` HTML element), and the obvious decrease in the code length.
1515

ko/clojure-macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ translators:
1313
주의하시기 바랍니다. 함수로도 충분히 해결할 수 있는 문제를 매크로로 작성하게 된다면, 좋은 코드라고 할 수 없습니다.
1414
인자가 평가되는 시점을 제어해야 할 때만 매크로를 사용하는게 좋습니다.
1515

16-
Clojure랑 친해지면 쉽게 따라갈 수 있습니다. [Clojure in Y Minutes](/docs/ko-kr/clojure-kr/)를 한번 읽어보세요.
16+
Clojure랑 친해지면 쉽게 따라갈 수 있습니다. [Clojure in Y Minutes](../clojure/)를 한번 읽어보세요.
1717

1818
```clojure
1919
;; defmacro로 매크로를 정의합니다.

0 commit comments

Comments
 (0)