Skip to content

Commit

Permalink
deploy: b1ea1ba
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroVelez committed Aug 9, 2024
1 parent 8ed9a5f commit df987e9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 362 deletions.
108 changes: 4 additions & 104 deletions POcultarVideos.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@



<li><a href="_sources/POcultarVideos.ipynb" target="_blank"
<li><a href="_sources/POcultarVideos.md" target="_blank"
class="btn btn-sm btn-download-source-button dropdown-item"
title="Download source file"
data-bs-placement="left" data-bs-toggle="tooltip"
Expand All @@ -320,7 +320,7 @@
<span class="btn__icon-container">
<i class="fas fa-file"></i>
</span>
<span class="btn__text-container">.ipynb</span>
<span class="btn__text-container">.md</span>
</a>
</li>

Expand Down Expand Up @@ -402,13 +402,7 @@ <h2> Contents </h2>
</div>
<nav aria-label="Page">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-python">Using python</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-python-another-option-with-magic">Using python - another option with magic</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-python-another-option-with-a">Using python - another option with a</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#vsing-markdow-opcion-1">Vsing markdow - Opcion 1</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-markdow-opcion-2-la-prueba-definitiva">Using markdow - Opcion 2 - La prueba definitiva</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-markdow-opcion-3-external-linl">Using markdow - Opcion 3 - External linl</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#ejemplo-final">Ejemplo final</a></li>
</ul>
</nav>
</div>
Expand All @@ -422,101 +416,13 @@ <h2> Contents </h2>

<section id="pruebas-de-como-poner-videos">
<h1>Pruebas de como poner videos<a class="headerlink" href="#pruebas-de-como-poner-videos" title="Permalink to this heading">#</a></h1>
<section id="using-python">
<h2>Using python<a class="headerlink" href="#using-python" title="Permalink to this heading">#</a></h2>
<div class="cell docutils container">
<div class="cell_input docutils container">
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">IPython.display</span> <span class="kn">import</span> <span class="n">HTML</span>

<span class="c1"># Youtube</span>
<span class="n">HTML</span><span class="p">(</span><span class="s1">&#39;&lt;iframe src=&quot;https://drive.google.com/file/d/1vjOB1VEXqmfyDm5y30uRMSIeJGU_EShI/preview&quot; width=&quot;800&quot; height=&quot;480&quot; allow=&quot;autoplay&quot;&gt;&lt;/iframe&gt;&#39;</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_html"><iframe src="https://drive.google.com/file/d/1vjOB1VEXqmfyDm5y30uRMSIeJGU_EShI/preview" width="800" height="480" allow="autoplay"></iframe></div></div>
</div>
</section>
<section id="using-python-another-option-with-magic">
<h2>Using python - another option with magic<a class="headerlink" href="#using-python-another-option-with-magic" title="Permalink to this heading">#</a></h2>
<div class="cell docutils container">
<div class="cell_input docutils container">
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="o">%%HTML</span>
<span class="p">&lt;</span><span class="nt">center</span><span class="p">&gt;</span>
<span class="p">&lt;</span><span class="nt">iframe</span> <span class="na">src</span><span class="o">=</span><span class="s">&quot;https://drive.google.com/file/d/1vjOB1VEXqmfyDm5y30uRMSIeJGU_EShI/preview&quot;</span> <span class="na">width</span><span class="o">=</span><span class="s">&quot;800&quot;</span> <span class="na">height</span><span class="o">=</span><span class="s">&quot;480&quot;</span> <span class="na">allow</span><span class="o">=</span><span class="s">&quot;autoplay&quot;</span><span class="p">&gt;&lt;/</span><span class="nt">iframe</span><span class="p">&gt;</span>
<span class="p">&lt;/</span><span class="nt">center</span><span class="p">&gt;</span>
</pre></div>
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_html"><center>
<iframe src="https://drive.google.com/file/d/1vjOB1VEXqmfyDm5y30uRMSIeJGU_EShI/preview" width="800" height="480" allow="autoplay"></iframe>
</center>
</div></div>
</div>
</section>
<section id="using-python-another-option-with-a">
<h2>Using python - another option with a<a class="headerlink" href="#using-python-another-option-with-a" title="Permalink to this heading">#</a></h2>
<div class="cell docutils container">
<div class="cell_input docutils container">
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">IPython.display</span> <span class="kn">import</span> <span class="n">display</span>
<span class="kn">from</span> <span class="nn">IPython.display</span> <span class="kn">import</span> <span class="n">YouTubeVideo</span>
<span class="n">vid</span> <span class="o">=</span> <span class="n">YouTubeVideo</span><span class="p">(</span><span class="s2">&quot;foo&quot;</span><span class="p">)</span>
<span class="n">display</span><span class="p">(</span><span class="n">vid</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="cell_output docutils container">
<div class="output text_html">
<iframe
width="400"
height="300"
src="https://www.youtube.com/embed/foo"
frameborder="0"
allowfullscreen
></iframe>
</div></div>
</div>
<iframe src="https://www.youtube.com/embed/-TE64w4hi2o?si=fsl8viQlDz2QIsxk&amp"
width="560"
height="315"
frameborder="0"
allowfullscreen>
</iframe></section>
<section id="vsing-markdow-opcion-1">
<h2>Vsing markdow - Opcion 1<a class="headerlink" href="#vsing-markdow-opcion-1" title="Permalink to this heading">#</a></h2>
<p>El codigo es:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="o">&lt;</span><span class="n">a</span> <span class="n">href</span><span class="o">=</span><span class="s2">&quot;https://www.youtube.com/embed/-TE64w4hi2o?si=fsl8viQlDz2QIsxk&amp;amp;controls=1&quot;</span><span class="o">&gt;</span>
<span class="o">&lt;</span><span class="n">p</span> <span class="n">style</span><span class="o">=</span><span class="s2">&quot;text-align:center&quot;</span><span class="o">&gt;&lt;</span><span class="n">img</span> <span class="n">src</span><span class="o">=</span><span class="s2">&quot;https://raw.githubusercontent.com/euroargodev/argoonlineschool/master/images/logoAoS.png&quot;</span> <span class="n">alt</span><span class="o">=</span><span class="s2">&quot;HTML tutorial&quot;</span> <span class="n">width</span><span class="o">=</span><span class="s2">&quot;400px&quot;</span><span class="o">&gt;&lt;/</span><span class="n">p</span><span class="o">&gt;</span>
<span class="o">&lt;/</span><span class="n">a</span><span class="o">&gt;</span>
</pre></div>
</div>
<a href="https://www.youtube.com/embed/-TE64w4hi2o?si=fsl8viQlDz2QIsxk&amp;controls=1">
<p style="text-align:center"><img src="https://raw.githubusercontent.com/euroargodev/argoonlineschool/master/images/logoAoS.png" alt="HTML tutorial" width="400px"></p>
</a></section>
<section id="using-markdow-opcion-2-la-prueba-definitiva">
<h2>Using markdow - Opcion 2 - La prueba definitiva<a class="headerlink" href="#using-markdow-opcion-2-la-prueba-definitiva" title="Permalink to this heading">#</a></h2>
<p>El codigo sería</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="o">&lt;</span><span class="n">iframe</span> <span class="n">width</span><span class="o">=</span><span class="s2">&quot;320&quot;</span> <span class="n">height</span><span class="o">=</span><span class="s2">&quot;180&quot;</span> <span class="n">src</span><span class="o">=</span><span class="s2">&quot;https://www.youtube-nocookie.com/embed/FEa2diI2qgA&quot;</span> <span class="n">title</span><span class="o">=</span><span class="s2">&quot;YouTube video player&quot;</span> <span class="n">frameborder</span><span class="o">=</span><span class="s2">&quot;0&quot;</span> <span class="n">allow</span><span class="o">=</span><span class="s2">&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture&quot;</span> <span class="n">allowfullscreen</span><span class="o">=</span><span class="s2">&quot;1&quot;</span><span class="o">&gt;&lt;/</span><span class="n">iframe</span><span class="o">&gt;</span>
</pre></div>
</div>
<p>In this video we ….</p>
<center>
<iframe width="560" height="315" src="https://www.youtube.com/embed/88XFuf6w2v0?si=Jir22e7h-fL9aBg1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</center></section>
<section id="using-markdow-opcion-3-external-linl">
<h2>Using markdow - Opcion 3 - External linl<a class="headerlink" href="#using-markdow-opcion-3-external-linl" title="Permalink to this heading">#</a></h2>
<p>El codigo seria</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>[![AoS](https://raw.githubusercontent.com/euroargodev/argoonlineschool/master/images/logoAoS.png)](https://www.youtube.com/watch?v=FEa2diI2qgA &quot;Título alternativo&quot;)
</pre></div>
</div>
<p><a class="reference external" href="https://www.youtube.com/embed/-TE64w4hi2o?si=fsl8viQlDz2QIsxk&amp;controls=1"><img alt="AoS" src="https://raw.githubusercontent.com/euroargodev/argoonlineschool/master/images/logoAoS.png" /></a></p>
</center>
</section>
<section id="ejemplo-final">
<h2>Ejemplo final<a class="headerlink" href="#ejemplo-final" title="Permalink to this heading">#</a></h2>
<p>Este video …</p>
<center>
<iframe width="560" height="315" src="https://www.youtube.com/embed/88XFuf6w2v0?si=Jir22e7h-fL9aBg1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</center></section>
</section>

<script type="text/x-thebe-config">
Expand Down Expand Up @@ -586,13 +492,7 @@ <h2>Ejemplo final<a class="headerlink" href="#ejemplo-final" title="Permalink to
</div>
<nav class="bd-toc-nav page-toc">
<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-python">Using python</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-python-another-option-with-magic">Using python - another option with magic</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-python-another-option-with-a">Using python - another option with a</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#vsing-markdow-opcion-1">Vsing markdow - Opcion 1</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-markdow-opcion-2-la-prueba-definitiva">Using markdow - Opcion 2 - La prueba definitiva</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#using-markdow-opcion-3-external-linl">Using markdow - Opcion 3 - External linl</a></li>
<li class="toc-h2 nav-item toc-entry"><a class="reference internal nav-link" href="#ejemplo-final">Ejemplo final</a></li>
</ul>
</nav></div>

Expand Down
Loading

0 comments on commit df987e9

Please sign in to comment.