Try to fix filtering issue
This commit is contained in:
parent
2f71f04311
commit
24c8490abb
@ -3,7 +3,7 @@ description: >- # this means to ignore newlines until "baseurl:"
|
|||||||
Computer wizard, student, <a href="https://frc5024.github.io">@frc5024</a>
|
Computer wizard, student, <a href="https://frc5024.github.io">@frc5024</a>
|
||||||
programming team lead, and radio enthusiast.
|
programming team lead, and radio enthusiast.
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog
|
baseurl: "" # the subpath of your site, e.g. /blog
|
||||||
url: "https://retrylife.ca" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
|
|
||||||
about: >-
|
about: >-
|
||||||
I am a 16 year old programming student. I enjoy learning new concepts,
|
I am a 16 year old programming student. I enjoy learning new concepts,
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
<br><br>
|
<br><br>
|
||||||
<h2>Languages</h2>
|
<h2>Languages</h2>
|
||||||
|
|
||||||
<div class="progress">
|
<div class="progress" style="height:30px">
|
||||||
<div class="progress-bar" role="progressbar" style="width: 40%" aria-valuenow="15"
|
<div class="progress-bar" role="progressbar" style="width: 40%" aria-valuenow="15"
|
||||||
aria-valuemin="0" aria-valuemax="100">Python</div>
|
aria-valuemin="0" aria-valuemax="100">Python</div>
|
||||||
<div class="progress-bar bg-success" role="progressbar" style="width: 30%"
|
<div class="progress-bar bg-success" role="progressbar" style="width: 30%"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.6">Jekyll</generator><link href="http://0.0.0.0:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://0.0.0.0:4000/" rel="alternate" type="text/html" /><updated>2019-08-02T16:28:13-04:00</updated><id>http://0.0.0.0:4000/feed.xml</id><title type="html">Evan Pratten</title><subtitle>Computer wizard, student, <a href="https://frc5024.github.io">@frc5024</a> programming team lead, and radio enthusiast.</subtitle><entry><title type="html">Mind map generation with Python</title><link href="http://0.0.0.0:4000/blog/2019/07/15/mindmap" rel="alternate" type="text/html" title="Mind map generation with Python" /><published>2019-07-15T14:38:00-04:00</published><updated>2019-07-15T14:38:00-04:00</updated><id>http://0.0.0.0:4000/blog/2019/07/15/MindMap</id><content type="html" xml:base="http://0.0.0.0:4000/blog/2019/07/15/mindmap"><p>While working on an assignment with <a href="https://coggle.it">Coggle</a> today, I noticed an interesting option in the save menu. <em>Download as .mm file</em>. Having rarely worked with mind maps before, and only doing it online, it never occured to me that someone would have a file format for it. So I took a look.</p>
|
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.6">Jekyll</generator><link href="http://0.0.0.0:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://0.0.0.0:4000/" rel="alternate" type="text/html" /><updated>2019-08-02T17:05:57-04:00</updated><id>http://0.0.0.0:4000/feed.xml</id><title type="html">Evan Pratten</title><subtitle>Computer wizard, student, <a href="https://frc5024.github.io">@frc5024</a> programming team lead, and radio enthusiast.</subtitle><entry><title type="html">Mind map generation with Python</title><link href="http://0.0.0.0:4000/blog/2019/07/15/mindmap" rel="alternate" type="text/html" title="Mind map generation with Python" /><published>2019-07-15T14:38:00-04:00</published><updated>2019-07-15T14:38:00-04:00</updated><id>http://0.0.0.0:4000/blog/2019/07/15/MindMap</id><content type="html" xml:base="http://0.0.0.0:4000/blog/2019/07/15/mindmap"><p>While working on an assignment with <a href="https://coggle.it">Coggle</a> today, I noticed an interesting option in the save menu. <em>Download as .mm file</em>. Having rarely worked with mind maps before, and only doing it online, it never occured to me that someone would have a file format for it. So I took a look.</p>
|
||||||
|
|
||||||
<h2 id="what-is-a-mm-file">What is a .mm file?</h2>
|
<h2 id="what-is-a-mm-file">What is a .mm file?</h2>
|
||||||
<p>It turns out, a <code class="highlighter-rouge">.mm</code> file is just some XML describing the mind map. Here is a simple mind map:</p>
|
<p>It turns out, a <code class="highlighter-rouge">.mm</code> file is just some XML describing the mind map. Here is a simple mind map:</p>
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
<br><br>
|
<br><br>
|
||||||
<h2>Languages</h2>
|
<h2>Languages</h2>
|
||||||
|
|
||||||
<div class="progress">
|
<div class="progress" style="height:30px">
|
||||||
<div class="progress-bar" role="progressbar" style="width: 40%" aria-valuenow="15"
|
<div class="progress-bar" role="progressbar" style="width: 40%" aria-valuenow="15"
|
||||||
aria-valuemin="0" aria-valuemax="100">Python</div>
|
aria-valuemin="0" aria-valuemax="100">Python</div>
|
||||||
<div class="progress-bar bg-success" role="progressbar" style="width: 30%"
|
<div class="progress-bar bg-success" role="progressbar" style="width: 30%"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user