Mauricio Verano Merino Personal website of Mauricio Verano Merino - Assistant Professor in Computer Science, founder of the Sports Intelligence Lab. https://maveme.github.io/ Fri, 13 Mar 2026 09:27:11 +0000 Fri, 13 Mar 2026 09:27:11 +0000 Jekyll v3.10.0 How to Download or Use This Theme <h3 id="use-this-theme-as-you-main-site">Use this theme as you main site</h3> <ul> <li>Download or fork the master branch of this theme repo into your GitHub account.</li> <li>Rename the repo into something like <code class="language-plaintext highlighter-rouge">your_username.github.io</code>.</li> <li>Edit <code class="language-plaintext highlighter-rouge">_config.yml</code> file to your preferences.</li> <li>Edit <code class="language-plaintext highlighter-rouge">about.md</code> file for your About page.</li> <li>Inside <code class="language-plaintext highlighter-rouge">_posts</code> folder, there are sample of blog entries. Learn from it and start yours.</li> <li>Now, visit <code class="language-plaintext highlighter-rouge">http://your_username.github.io</code> and you should see your blog running.</li> </ul> <h3 id="use-this-theme-as-a-project-page">Use this theme as a project page</h3> <p>If you want to use this theme as a project page blog, you don’t need to rename the theme repo into <code class="language-plaintext highlighter-rouge">your_username.github.io</code>.</p> <p>All you need to do, open <code class="language-plaintext highlighter-rouge">_config.yml</code> file, change <code class="language-plaintext highlighter-rouge">baseurl</code> to your project name which contains this theme, e.g. <code class="language-plaintext highlighter-rouge">baseurl: "/myproject"</code>.</p> <h4 id="cheers">Cheers!</h4> Fri, 10 Jun 2016 00:00:00 +0000 https://maveme.github.io/2016/how-to-download-or-use-this-theme/ https://maveme.github.io/2016/how-to-download-or-use-this-theme/ If you have a Guest post.. <p>If you think that you’re going to have a guest post… take a look on this post sample. Just add <code class="language-plaintext highlighter-rouge">author: GuestName</code> to the YAML front matter. Then, the <strong>GuestName</strong> will be appear on the next of post date. Oh, the guest name will be automatically uppercase.</p> Thu, 09 Jun 2016 00:00:00 +0000 https://maveme.github.io/2016/if-you-have-a-guest-post/ https://maveme.github.io/2016/if-you-have-a-guest-post/ Markdown Cheatsheet Demo <h2 id="typography-elements-in-one">Typography Elements in One</h2> <p>Let’s start with a informative paragraph. <strong>This text is bolded.</strong> But not this one! <em>How about italic text?</em> Cool right? Ok, let’s <strong><em>combine</em></strong> them together. Yeah, that’s right! I have code to highlight, so <code class="language-plaintext highlighter-rouge">ThisIsMyCode()</code>. What a nice! Good people will hyperlink away, so <a href="#">here we go</a> or <a href="http://www.example.com">http://www.example.com</a>.</p> <div class="divider"></div> <h2 id="headings-h1-to-h6">Headings H1 to H6</h2> <h1 id="h1-heading">H1 Heading</h1> <h2 id="h2-heading">H2 Heading</h2> <h3 id="h3-heading">H3 Heading</h3> <h4 id="h4-heading">H4 Heading</h4> <h5 id="h5-heading">H5 Heading</h5> <h6 id="h6-heading">H6 Heading</h6> <div class="divider"></div> <h2 id="footnote">Footnote</h2> <p>Let’s say you have text that you want to refer with a footnote, you can do that too! This is an example for the footnote number one [<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup>]. You can even add more footnotes, with link! [<sup id="fnref:2" role="doc-noteref"><a href="#fn:2" class="footnote" rel="footnote">2</a></sup>]</p> <div class="divider"></div> <h2 id="blockquote">Blockquote</h2> <blockquote> <p>Start by doing what’s necessary; then do what’s possible; and suddenly you are doing the impossible. –Francis of Assisi</p> </blockquote> <p><strong>NOTE:</strong> This theme does NOT support nested blockquotes.</p> <div class="divider"></div> <h2 id="list-items">List Items</h2> <ol> <li>First order list item</li> <li>Second item</li> </ol> <ul> <li>Unordered list can use asterisks</li> <li>Or minuses</li> <li>Or pluses</li> </ul> <div class="divider"></div> <h2 id="code-blocks">Code Blocks</h2> <div class="language-javascript highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">var</span> <span class="nx">modularpattern</span> <span class="o">=</span> <span class="p">(</span><span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="c1">// your module code goes here</span> <span class="kd">var</span> <span class="nx">sum</span> <span class="o">=</span> <span class="mi">0</span> <span class="p">;</span> <span class="k">return</span> <span class="p">{</span> <span class="na">add</span><span class="p">:</span><span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="nx">sum</span> <span class="o">=</span> <span class="nx">sum</span> <span class="o">+</span> <span class="mi">1</span><span class="p">;</span> <span class="k">return</span> <span class="nx">sum</span><span class="p">;</span> <span class="p">},</span> <span class="na">reset</span><span class="p">:</span><span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="nx">sum</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="p">}</span> <span class="p">}</span> <span class="p">}());</span> <span class="nx">alert</span><span class="p">(</span><span class="nx">modularpattern</span><span class="p">.</span><span class="nx">add</span><span class="p">());</span> <span class="c1">// alerts: 1</span> <span class="nx">alert</span><span class="p">(</span><span class="nx">modularpattern</span><span class="p">.</span><span class="nx">add</span><span class="p">());</span> <span class="c1">// alerts: 2</span> <span class="nx">alert</span><span class="p">(</span><span class="nx">modularpattern</span><span class="p">.</span><span class="nx">reset</span><span class="p">());</span> <span class="c1">// alerts: 0</span> </code></pre></div></div> <div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">s</span> <span class="o">=</span> <span class="s">"Python syntax highlighting"</span> <span class="k">print</span> <span class="n">s</span> </code></pre></div></div> <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>No language indicated, so no syntax highlighting. But let's throw in a &lt;b&gt;tag&lt;/b&gt;. </code></pre></div></div> <div class="divider"></div> <h2 id="table">Table</h2> <h3 id="table-1-with-alignment">Table 1: With Alignment</h3> <table> <thead> <tr> <th>Tables</th> <th style="text-align: center">Are</th> <th style="text-align: right">Cool</th> </tr> </thead> <tbody> <tr> <td>col 3 is</td> <td style="text-align: center">right-aligned</td> <td style="text-align: right">$1600</td> </tr> <tr> <td>col 2 is</td> <td style="text-align: center">centered</td> <td style="text-align: right">$12</td> </tr> <tr> <td>zebra stripes</td> <td style="text-align: center">are neat</td> <td style="text-align: right">$1</td> </tr> </tbody> </table> <h3 id="table-2-with-typography-elements">Table 2: With Typography Elements</h3> <table> <thead> <tr> <th>Markdown</th> <th>Less</th> <th>Pretty</th> </tr> </thead> <tbody> <tr> <td><em>Still</em></td> <td><code class="language-plaintext highlighter-rouge">renders</code></td> <td><strong>nicely</strong></td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> </tbody> </table> <div class="divider"></div> <h2 id="horizontal-line">Horizontal Line</h2> <p>The HTML <code class="language-plaintext highlighter-rouge">&lt;hr&gt;</code> element is for creating a “thematic break” between paragraph-level elements. In markdown, you can create a <code class="language-plaintext highlighter-rouge">&lt;hr&gt;</code> with any of the following:</p> <ul> <li><code class="language-plaintext highlighter-rouge">___</code>: three consecutive underscores</li> <li><code class="language-plaintext highlighter-rouge">---</code>: three consecutive dashes</li> <li><code class="language-plaintext highlighter-rouge">***</code>: three consecutive asterisks</li> </ul> <p>renders to:</p> <hr /> <hr /> <hr /> <div class="divider"></div> <h2 id="media">Media</h2> <h3 id="youtube-embedded-iframe">YouTube Embedded Iframe</h3> <div class="video-container"><iframe src="https://www.youtube.com/embed/n1a7o44WxNo" frameborder="0" allowfullscreen=""></iframe></div> <h3 id="image">Image</h3> <p><img src="http://octodex.github.com/images/minion.png" alt="Minion" /></p> <hr /> <p>Footnote:</p> <div class="footnotes" role="doc-endnotes"> <ol> <li id="fn:1" role="doc-endnote"> <p>1: Footnote number one yeah baby! <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p> </li> <li id="fn:2" role="doc-endnote"> <p>2: A footnote you can link to - <a href="#">click here!</a> <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p> </li> </ol> </div> Wed, 30 Dec 2015 00:00:00 +0000 https://maveme.github.io/2015/markdown-cheatsheet-demo/ https://maveme.github.io/2015/markdown-cheatsheet-demo/ The quick, brown fox jumps over a lazy dog <p>The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz.</p> <p><strong>Brick quiz whangs jumpy veldt fox. Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. Sex-charged fop blew my junk TV quiz. How quickly daft jumping zebras vex.</strong></p> <p>Two driven jocks help fax my big quiz. Quick, Baz, get my woven flax jodhpurs! “Now fax quiz Jack! “ my brave ghost pled. Five quacking zephyrs jolt my wax bed. Flummoxed by job, kvetching W. zaps Iraq. Cozy sphinx waves quart jug of bad milk.</p> <p>A very bad quack might jinx zippy fowls. Few quips galvanized the mock jury box. Quick brown dogs jump over the lazy fox. The jay, pig, fox, zebra, and my wolves quack! Blowzy red vixens fight for a quick jump.</p> <p><em>Joaquin Phoenix was gazed by MTV for luck. A wizard’s job is to vex chumps quickly in fog. Watch “Jeopardy! “, Alex Trebek’s fun TV quiz game. Woven silk pyjamas exchanged for blue quartz. Brawny gods just flocked up to quiz and vex him.</em></p> <p>Adjusting quiver and bow, Zompyc[1] killed the fox. My faxed joke won a pager in the cable TV quiz show. Amazingly few discotheques provide jukeboxes. My girl wove six dozen plaid jackets before she quit. Six big devils from Japan quickly forgot how to waltz.</p> <p>Big July earthquakes confound zany experimental vow. Foxy parsons quiz and cajole the lovably dim wiki-girl. Have a pick: twenty six letters - no forcing a jumbled quiz! Crazy Fredericka bought many very exquisite opal jewels.</p> <p><em><strong>Sixty zippers were quickly picked from the woven jute bag. A quick movement of the enemy will jeopardize six gunboats. All questions asked by five watch experts amazed the judge. Jack quietly moved up front and seized the big ball of wax.</strong></em></p> <p>The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz. Brick quiz whangs jumpy veldt fox.</p> <p>Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. Sex-charged fop blew my junk TV quiz. How quickly daft jumping zebras vex. Two driven jocks help fax my big quiz. Quick, Baz, get my woven flax jodhpurs!</p> <p>“Now fax quiz Jack! “ my brave ghost pled. Five quacking zephyrs jolt my wax bed. Flummoxed by job, kvetching W. zaps Iraq. Cozy sphinx waves quart jug of bad milk. A very bad quack might jinx zippy fowls. Few quips galvanized the mock jury box. Quick brown dogs jump over the lazy fox. The jay, pig, fox, zebra, and my wolves quack! Blowzy red vixens fight for a quick jump. Joaquin Phoenix was gazed by MTV</p> Mon, 12 Oct 2015 00:00:00 +0000 https://maveme.github.io/2015/the-quick-brown-fox-jumps-over-a-lazy-dog/ https://maveme.github.io/2015/the-quick-brown-fox-jumps-over-a-lazy-dog/ What is Lorem Ipsum? <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> <h3 id="where-does-it-come-from">Where does it come from?</h3> <p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of “de Finibus Bonorum et Malorum” (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, “Lorem ipsum dolor sit amet..”, comes from a line in section 1.10.32.</p> <p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from “de Finibus Bonorum et Malorum” by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p> <h3 id="why-do-we-use-it">Why do we use it?</h3> <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ‘Content here, content here’, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for ‘lorem ipsum’ will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p> <h3 id="where-can-i-get-some">Where can I get some?</h3> <p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn’t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p> <blockquote> <p>This content was copied from http://www.lipsum.com/ as an example of post article.</p> </blockquote> Fri, 20 Mar 2015 00:00:00 +0000 https://maveme.github.io/2015/what-is-lorem-ipsum/ https://maveme.github.io/2015/what-is-lorem-ipsum/