Skip to content

Commit 9e8c203

Browse files
authored
update
1 parent 1a2a226 commit 9e8c203

File tree

25 files changed

+678
-214
lines changed

25 files changed

+678
-214
lines changed

404.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta property="og:locale" content="es_ES">
1616
<meta property="og:site_name" content="AyudaEnPython">
1717
<meta property="og:title" content="Page Not Found">
18-
<meta property="og:url" content="/404.html">
18+
<meta property="og:url" content="http://localhost:4000/404.html">
1919

2020

2121
<meta property="og:description" content="Page not found. Your pixels are in another canvas.">
@@ -31,7 +31,7 @@
3131

3232

3333

34-
<link rel="canonical" href="/404.html">
34+
<link rel="canonical" href="http://localhost:4000/404.html">
3535

3636

3737

@@ -42,7 +42,7 @@
4242

4343
"@type": "Person",
4444
"name": "AyudaEnPython",
45-
"url": "/"
45+
"url": "http://localhost:4000/"
4646

4747
}
4848
</script>
@@ -154,7 +154,7 @@
154154

155155
<header>
156156
<h1 id="page-title" class="page__title p-name" itemprop="headline">
157-
<a href="/404.html" class="u-url" itemprop="url">Page Not Found
157+
<a href="http://localhost:4000/404.html" class="u-url" itemprop="url">Page Not Found
158158
</a>
159159
</h1>
160160

about/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta property="og:locale" content="es_ES">
1616
<meta property="og:site_name" content="AyudaEnPython">
1717
<meta property="og:title" content="Sobre nosotros">
18-
<meta property="og:url" content="/about/">
18+
<meta property="og:url" content="http://localhost:4000/about/">
1919

2020

2121
<meta property="og:description" content="Website de la comunidad AyudaEnPython dedicado a brinda artículos referentes a Python.">
@@ -31,7 +31,7 @@
3131

3232

3333

34-
<link rel="canonical" href="/about/">
34+
<link rel="canonical" href="http://localhost:4000/about/">
3535

3636

3737

@@ -42,7 +42,7 @@
4242

4343
"@type": "Person",
4444
"name": "AyudaEnPython",
45-
"url": "/"
45+
"url": "http://localhost:4000/"
4646

4747
}
4848
</script>
@@ -154,7 +154,7 @@
154154

155155
<header>
156156
<h1 id="page-title" class="page__title p-name" itemprop="headline">
157-
<a href="/about/" class="u-url" itemprop="url">Sobre nosotros
157+
<a href="http://localhost:4000/about/" class="u-url" itemprop="url">Sobre nosotros
158158
</a>
159159
</h1>
160160

articulos/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta property="og:locale" content="es_ES">
1616
<meta property="og:site_name" content="AyudaEnPython">
1717
<meta property="og:title" content="Artículos">
18-
<meta property="og:url" content="/articulos/">
18+
<meta property="og:url" content="http://localhost:4000/articulos/">
1919

2020

2121
<meta property="og:description" content="Website de la comunidad AyudaEnPython dedicado a brinda artículos referentes a Python.">
@@ -31,7 +31,7 @@
3131

3232

3333

34-
<link rel="canonical" href="/articulos/">
34+
<link rel="canonical" href="http://localhost:4000/articulos/">
3535

3636

3737

@@ -42,7 +42,7 @@
4242

4343
"@type": "Person",
4444
"name": "AyudaEnPython",
45-
"url": "/"
45+
"url": "http://localhost:4000/"
4646

4747
}
4848
</script>

assets/js/lunr/lunr-store.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,16 @@ var store = [{
3030
"teaser": null
3131
},{
3232
"title": "Conceptos Básicos",
33-
"excerpt":"Variable Un variable conceptualmente es un contenedor etiquetado el cual almacena un valor 1. Para una definición más detallada puedes pulsar aquí. Ejemplo: &gt;&gt;&gt; nombre = \"John\" &gt;&gt;&gt; edad = 18 La variable nombre almacena el valor \"John\" (cadena de texto) y la variable edad almacena el valor 18 (entero)....","categories": [],
33+
"excerpt":"Indentación En Python la indentación (sangrado) 1 es obligatoria ya que de ella dependerá su estructura. Una indentación de 4 espacios en blanco indicará que las instrucciones indentadas forman parte de una mismo bloque de código. Ejemplo: def main(): print(\"Hola Mundo\") if __name__ == \"__main__\": main() A pesar que la...","categories": [],
3434
"tags": [],
3535
"url": "/tutorial-python/conceptos-basicos/",
3636
"teaser": null
37+
},{
38+
"title": "Sintaxis",
39+
"excerpt":"Variable Un variable conceptualmente es un contenedor etiquetado el cual almacena un valor 1 (para una definición más detallada puedes pulsar aquí). Para definir una variable en Python, simplemente asignamos un valor a un identificador: &gt;&gt;&gt; nombre = \"John\" &gt;&gt;&gt; apellido = \"Doe\" &gt;&gt;&gt; edad = 18 La variable nombre...","categories": [],
40+
"tags": [],
41+
"url": "/tutorial-python/sintaxis/",
42+
"teaser": null
3743
},{
3844
"title": "Estructuras de Datos",
3945
"excerpt":"Una estructura de datos es una forma particular de organizar datos en una computadora para que puedan ser utilizados de manera eficiente. 1 Python ayuda a aprender los fundamentos de estas estructuras de una manera simple comparada a otros lenguajes de programación, ofreciendo en su documentación oficial varios ejemplos. 2...","categories": [],

bienvenido/index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<meta property="og:locale" content="es_ES">
1818
<meta property="og:site_name" content="AyudaEnPython">
1919
<meta property="og:title" content="Bienvenidos a nuestro proyecto Ayuda en Python!">
20-
<meta property="og:url" content="/bienvenido/">
20+
<meta property="og:url" content="http://localhost:4000/bienvenido/">
2121

2222

2323
<meta property="og:description" content="Unas palabras de bienvenida y un simple saludo (en código) de parte nuestra.">
@@ -35,7 +35,7 @@
3535

3636

3737

38-
<link rel="canonical" href="/bienvenido/">
38+
<link rel="canonical" href="http://localhost:4000/bienvenido/">
3939

4040

4141

@@ -46,7 +46,7 @@
4646

4747
"@type": "Person",
4848
"name": "AyudaEnPython",
49-
"url": "/"
49+
"url": "http://localhost:4000/"
5050

5151
}
5252
</script>
@@ -154,15 +154,15 @@
154154

155155

156156
<div class="author__avatar">
157-
<a href="/">
157+
<a href="http://localhost:4000/">
158158
<img src="/assets/images/AyudaEnPython.png" alt="AyudaEnPython" itemprop="image" class="u-photo">
159159
</a>
160160
</div>
161161

162162

163163
<div class="author__content">
164164
<h3 class="author__name p-name" itemprop="name">
165-
<a class="u-url" rel="me" href="/" itemprop="url">AyudaEnPython</a>
165+
<a class="u-url" rel="me" href="http://localhost:4000/" itemprop="url">AyudaEnPython</a>
166166
</h3>
167167

168168
<div class="author__bio p-note" itemprop="description">
@@ -266,7 +266,7 @@ <h3 class="author__name p-name" itemprop="name">
266266

267267
<header>
268268
<h1 id="page-title" class="page__title p-name" itemprop="headline">
269-
<a href="/bienvenido/" class="u-url" itemprop="url">Bienvenidos a nuestro proyecto Ayuda en Python!
269+
<a href="http://localhost:4000/bienvenido/" class="u-url" itemprop="url">Bienvenidos a nuestro proyecto Ayuda en Python!
270270
</a>
271271
</h1>
272272

@@ -389,11 +389,11 @@ <h2 id="reglas">Reglas</h2>
389389
<h4 class="page__share-title">Compartir en</h4>
390390

391391

392-
<a href="https://twitter.com/intent/tweet?text=Bienvenidos+a+nuestro+proyecto+Ayuda+en+Python%21%20%2Fbienvenido%2F" class="btn btn--twitter" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Compartir en Twitter"><i class="fab fa-fw fa-twitter" aria-hidden="true"></i><span> Twitter</span></a>
392+
<a href="https://twitter.com/intent/tweet?text=Bienvenidos+a+nuestro+proyecto+Ayuda+en+Python%21%20http%3A%2F%2Flocalhost%3A4000%2Fbienvenido%2F" class="btn btn--twitter" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Compartir en Twitter"><i class="fab fa-fw fa-twitter" aria-hidden="true"></i><span> Twitter</span></a>
393393

394-
<a href="https://www.facebook.com/sharer/sharer.php?u=%2Fbienvenido%2F" class="btn btn--facebook" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Compartir en Facebook"><i class="fab fa-fw fa-facebook" aria-hidden="true"></i><span> Facebook</span></a>
394+
<a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Flocalhost%3A4000%2Fbienvenido%2F" class="btn btn--facebook" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Compartir en Facebook"><i class="fab fa-fw fa-facebook" aria-hidden="true"></i><span> Facebook</span></a>
395395

396-
<a href="https://www.linkedin.com/shareArticle?mini=true&url=%2Fbienvenido%2F" class="btn btn--linkedin" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Compartir en LinkedIn"><i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span> LinkedIn</span></a>
396+
<a href="https://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Flocalhost%3A4000%2Fbienvenido%2F" class="btn btn--linkedin" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="Compartir en LinkedIn"><i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span> LinkedIn</span></a>
397397
</section>
398398

399399

categories/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta property="og:locale" content="es_ES">
1616
<meta property="og:site_name" content="AyudaEnPython">
1717
<meta property="og:title" content="Posts by Category">
18-
<meta property="og:url" content="/categories/">
18+
<meta property="og:url" content="http://localhost:4000/categories/">
1919

2020

2121
<meta property="og:description" content="Website de la comunidad AyudaEnPython dedicado a brinda artículos referentes a Python.">
@@ -31,7 +31,7 @@
3131

3232

3333

34-
<link rel="canonical" href="/categories/">
34+
<link rel="canonical" href="http://localhost:4000/categories/">
3535

3636

3737

@@ -42,7 +42,7 @@
4242

4343
"@type": "Person",
4444
"name": "AyudaEnPython",
45-
"url": "/"
45+
"url": "http://localhost:4000/"
4646

4747
}
4848
</script>
@@ -150,15 +150,15 @@
150150

151151

152152
<div class="author__avatar">
153-
<a href="/">
153+
<a href="http://localhost:4000/">
154154
<img src="/assets/images/AyudaEnPython.png" alt="AyudaEnPython" itemprop="image" class="u-photo">
155155
</a>
156156
</div>
157157

158158

159159
<div class="author__content">
160160
<h3 class="author__name p-name" itemprop="name">
161-
<a class="u-url" rel="me" href="/" itemprop="url">AyudaEnPython</a>
161+
<a class="u-url" rel="me" href="http://localhost:4000/" itemprop="url">AyudaEnPython</a>
162162
</h3>
163163

164164
<div class="author__bio p-note" itemprop="description">

feed.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.0">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2022-03-03T06:14:18+00:00</updated><id>/feed.xml</id><title type="html">AyudaEnPython</title><subtitle>Website de la comunidad AyudaEnPython dedicado a brinda artículos referentes a Python.</subtitle><author><name>AyudaEnPython</name></author><entry><title type="html">Python es de tipado dinámico y fuerte</title><link href="/tutoriales/tipado-dinamico-y-fuerte/" rel="alternate" type="text/html" title="Python es de tipado dinámico y fuerte" /><published>2022-03-02T00:00:00+00:00</published><updated>2022-03-02T00:00:00+00:00</updated><id>/tutoriales/tipado-dinamico-y-fuerte</id><content type="html" xml:base="/tutoriales/tipado-dinamico-y-fuerte/">&lt;p&gt;Python efectivamente es fuertemente tipado y dinámico a la vez, para ello
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.0">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2022-03-03T08:34:09+00:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">AyudaEnPython</title><subtitle>Website de la comunidad AyudaEnPython dedicado a brinda artículos referentes a Python.</subtitle><author><name>AyudaEnPython</name></author><entry><title type="html">Python es de tipado dinámico y fuerte</title><link href="http://localhost:4000/tutoriales/tipado-dinamico-y-fuerte/" rel="alternate" type="text/html" title="Python es de tipado dinámico y fuerte" /><published>2022-03-02T00:00:00+00:00</published><updated>2022-03-02T00:00:00+00:00</updated><id>http://localhost:4000/tutoriales/tipado-dinamico-y-fuerte</id><content type="html" xml:base="http://localhost:4000/tutoriales/tipado-dinamico-y-fuerte/">&lt;p&gt;Python efectivamente es fuertemente tipado y dinámico a la vez, para ello
22
vamos a analizarlo por partes:&lt;/p&gt;
33

44
&lt;h2 id=&quot;tipado-dinámico&quot;&gt;Tipado dinámico&lt;/h2&gt;
@@ -75,7 +75,7 @@ una fuente de errores:&lt;/p&gt;
7575
&lt;p&gt;&lt;a href=&quot;https://es.wikipedia.org/wiki/Tipado_fuerte&quot;&gt;Wikipedia: Tipado fuerte&lt;/a&gt; &lt;a href=&quot;#fnref:2&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
7676
&lt;/li&gt;
7777
&lt;/ol&gt;
78-
&lt;/div&gt;</content><author><name>leugimkm</name></author><summary type="html">Explicación sobre el tipado de Python.</summary></entry><entry><title type="html">Bienvenidos a nuestro proyecto Ayuda en Python!</title><link href="/bienvenido/" rel="alternate" type="text/html" title="Bienvenidos a nuestro proyecto Ayuda en Python!" /><published>2022-03-01T00:00:00+00:00</published><updated>2022-03-01T00:00:00+00:00</updated><id>/bienvenido</id><content type="html" xml:base="/bienvenido/">&lt;h2 id=&quot;bienvenidos&quot;&gt;Bienvenidos&lt;/h2&gt;
78+
&lt;/div&gt;</content><author><name>leugimkm</name></author><summary type="html">Explicación sobre el tipado de Python.</summary></entry><entry><title type="html">Bienvenidos a nuestro proyecto Ayuda en Python!</title><link href="http://localhost:4000/bienvenido/" rel="alternate" type="text/html" title="Bienvenidos a nuestro proyecto Ayuda en Python!" /><published>2022-03-01T00:00:00+00:00</published><updated>2022-03-01T00:00:00+00:00</updated><id>http://localhost:4000/bienvenido</id><content type="html" xml:base="http://localhost:4000/bienvenido/">&lt;h2 id=&quot;bienvenidos&quot;&gt;Bienvenidos&lt;/h2&gt;
7979

8080
&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;saludar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;nombre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;-&amp;gt;&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
8181
&lt;span class=&quot;s&quot;&gt;&quot;&quot;&quot;Saludo de bienvenida a los integrantes de la comunidad

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta property="og:locale" content="es_ES">
1616
<meta property="og:site_name" content="AyudaEnPython">
1717
<meta property="og:title" content="AyudaEnPython">
18-
<meta property="og:url" content="/">
18+
<meta property="og:url" content="http://localhost:4000/">
1919

2020

2121
<meta property="og:description" content="Sitio web de la comunidad AyudaEnPython sin anuncios, cursos de pago, espacios privados ni registros. Nuestro material siempre será gratuito y accesible desde nuestros diferentes canales. Forma parte de nuestra comunidad!">
@@ -31,7 +31,7 @@
3131

3232

3333

34-
<link rel="canonical" href="/">
34+
<link rel="canonical" href="http://localhost:4000/">
3535

3636

3737

@@ -42,7 +42,7 @@
4242

4343
"@type": "Person",
4444
"name": "AyudaEnPython",
45-
"url": "/"
45+
"url": "http://localhost:4000/"
4646

4747
}
4848
</script>

no-index/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<meta property="og:locale" content="es_ES">
1616
<meta property="og:site_name" content="AyudaEnPython">
1717
<meta property="og:title" content="AyudaEnPython">
18-
<meta property="og:url" content="/no-index/">
18+
<meta property="og:url" content="http://localhost:4000/no-index/">
1919

2020

2121
<meta property="og:description" content="Website de la comunidad AyudaEnPython dedicado a brinda artículos referentes a Python.">
@@ -31,7 +31,7 @@
3131

3232

3333

34-
<link rel="canonical" href="/no-index/">
34+
<link rel="canonical" href="http://localhost:4000/no-index/">
3535

3636

3737

@@ -42,7 +42,7 @@
4242

4343
"@type": "Person",
4444
"name": "AyudaEnPython",
45-
"url": "/"
45+
"url": "http://localhost:4000/"
4646

4747
}
4848
</script>

revisiones/generar-numeros-aleatorios/index.html

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<meta property="og:locale" content="es_ES">
1818
<meta property="og:site_name" content="AyudaEnPython">
1919
<meta property="og:title" content="Generar números aleatorios">
20-
<meta property="og:url" content="/revisiones/generar-numeros-aleatorios/">
20+
<meta property="og:url" content="http://localhost:4000/revisiones/generar-numeros-aleatorios/">
2121

2222

2323
<meta property="og:description" content="Refactorización">
@@ -28,14 +28,14 @@
2828

2929

3030

31-
<meta property="article:published_time" content="2022-03-03T06:14:18+00:00">
31+
<meta property="article:published_time" content="2022-03-03T08:34:09+00:00">
3232

3333

3434

3535

3636

3737

38-
<link rel="canonical" href="/revisiones/generar-numeros-aleatorios/">
38+
<link rel="canonical" href="http://localhost:4000/revisiones/generar-numeros-aleatorios/">
3939

4040

4141

@@ -46,7 +46,7 @@
4646

4747
"@type": "Person",
4848
"name": "AyudaEnPython",
49-
"url": "/"
49+
"url": "http://localhost:4000/"
5050

5151
}
5252
</script>
@@ -154,15 +154,15 @@
154154

155155

156156
<div class="author__avatar">
157-
<a href="/">
157+
<a href="http://localhost:4000/">
158158
<img src="/assets/images/AyudaEnPython.png" alt="AyudaEnPython" itemprop="image" class="u-photo">
159159
</a>
160160
</div>
161161

162162

163163
<div class="author__content">
164164
<h3 class="author__name p-name" itemprop="name">
165-
<a class="u-url" rel="me" href="/" itemprop="url">AyudaEnPython</a>
165+
<a class="u-url" rel="me" href="http://localhost:4000/" itemprop="url">AyudaEnPython</a>
166166
</h3>
167167

168168
<div class="author__bio p-note" itemprop="description">
@@ -259,14 +259,14 @@ <h3 class="author__name p-name" itemprop="name">
259259
<article class="page h-entry" itemscope itemtype="https://schema.org/CreativeWork">
260260
<meta itemprop="headline" content="Generar números aleatorios">
261261
<meta itemprop="description" content="Refactorización">
262-
<meta itemprop="datePublished" content="2022-03-03T06:14:18+00:00">
262+
263263

264264

265265
<div class="page__inner-wrap">
266266

267267
<header>
268268
<h1 id="page-title" class="page__title p-name" itemprop="headline">
269-
<a href="/revisiones/generar-numeros-aleatorios/" class="u-url" itemprop="url">Generar números aleatorios
269+
<a href="http://localhost:4000/revisiones/generar-numeros-aleatorios/" class="u-url" itemprop="url">Generar números aleatorios
270270
</a>
271271
</h1>
272272

@@ -337,8 +337,6 @@ <h4 class="no_toc">Nota</h4>
337337

338338

339339

340-
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> Actualizado:</strong> <time class="dt-published" datetime="2022-03-03T06:14:18+00:00">March 3, 2022</time></p>
341-
342340
</footer>
343341

344342

0 commit comments

Comments
 (0)