Redesign again
This commit is contained in:
parent
a817b4272d
commit
4d73b8c586
Binary file not shown.
@ -13,6 +13,10 @@ zip_code:
|
||||
country:
|
||||
phone:
|
||||
|
||||
about: >-
|
||||
I am a 16 year old programming student. I enjoy learning new concepts, building projects out of random ideas and obscure technologies, and working with new tools.
|
||||
My projects range from building tools to help me with school work, and robotics, to radios and video production.
|
||||
|
||||
# Google analytics
|
||||
analytic_track: UA-74118570-2
|
||||
|
||||
|
16
_includes/posts-list.html
Normal file
16
_includes/posts-list.html
Normal file
@ -0,0 +1,16 @@
|
||||
<section id="one">
|
||||
<div class="inner" style="text-align: left">
|
||||
<!-- <h1>All Posts</h1>
|
||||
<hr> -->
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
{% if post.title != 404 %}
|
||||
<!-- <header class="major"> -->
|
||||
<li><h3><a href="{{ post.url | relative_url }}" class="link" title="{{ post.date }}">{{ post.title }}</a></h3></li>
|
||||
<!-- </header> -->
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
@ -12,30 +12,20 @@
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner" style="text-align: center">
|
||||
{% for post in site.posts %}
|
||||
{% if post.title != 404 %}
|
||||
<!-- <header class="major"> -->
|
||||
<h1><a href="{{ post.url | relative_url }}" class="link" title="{{ post.date }}">{{ post.title }}</a></h1>
|
||||
<!-- </header> -->
|
||||
|
||||
<!-- Cheaty way to display a description -->
|
||||
<!-- <p><i>{{ post.date }}</i></p> -->
|
||||
<hr>
|
||||
<!-- {% if post.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ post.image }}" alt="" /></span>{% endif %}
|
||||
{% if post.date %}<p>{{ post.date }}</p>{% endif %}
|
||||
<p>{{ post.content }}</p> -->
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<!-- Banner -->
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>{{ page.landing-title }}</h1>
|
||||
</header>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main">
|
||||
|
||||
{% include posts-list.html %}
|
||||
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
{% include head.html %}
|
||||
@ -20,9 +15,6 @@
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >{{ site.description }}</p>
|
||||
<!-- <ul class="actions">
|
||||
<li><a href="#one" class="button next scrolly">Get Started</a></li>
|
||||
</ul> -->
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -30,36 +22,37 @@
|
||||
<!-- Main -->
|
||||
<div id="main">
|
||||
|
||||
<!-- <section id="two">
|
||||
<section id="two">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Projects</h2>
|
||||
<h2>About Me</h2>
|
||||
</header>
|
||||
<p>{{site.about}}</p>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% include projects.html %}
|
||||
|
||||
<section id="two">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Posts</h2>
|
||||
<h3>Blog</h3>
|
||||
<p>Here are my three most recent posts</p>
|
||||
</header>
|
||||
</div>
|
||||
</section> -->
|
||||
|
||||
{% include tiles.html %}
|
||||
|
||||
<!-- Two -->
|
||||
<!-- <section id="two">
|
||||
<div class="inner">
|
||||
<ul class="actions">
|
||||
<li><a href="all_posts.html" class="button next">View All</a></li>
|
||||
<ul>
|
||||
{% for post in site.posts limit:3 %}
|
||||
<li><h3><a href="{{ post.url | relative_url }}" class="link" title="{{ post.date }}">{{ post.title }}</a></h3></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</section> -->
|
||||
<a href="all_posts.html" class="button next">View All</a>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<br><br>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
{% include footer.html %}
|
||||
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
{% include head.html %}
|
||||
@ -12,6 +7,18 @@
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>{{ page.title }}</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >{{ page.description }}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -19,9 +26,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>{{ page.title }}</h1>
|
||||
</header>
|
||||
{% if page.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ page.image }}" alt="" /></span>{% endif %}
|
||||
<p>{{ content }}</p>
|
||||
</div>
|
||||
|
@ -23,7 +23,7 @@
|
||||
family: ('Source Sans Pro', Helvetica, sans-serif),
|
||||
family-fixed: ('Courier New', monospace),
|
||||
weight: 300,
|
||||
weight-bold: 600,
|
||||
weight-bold: 500,
|
||||
letter-spacing: 0.025em,
|
||||
letter-spacing-alt: 0.25em
|
||||
);
|
||||
@ -38,10 +38,27 @@
|
||||
border: rgba(212,212,255,0.1),
|
||||
border-bg: rgba(212,212,255,0.035),
|
||||
highlight: #2aa198,
|
||||
accent1: #268bd2,
|
||||
accent2: #6c71c4,
|
||||
accent3: #268bd2,
|
||||
accent4: #6c71c4,
|
||||
accent5: #268bd2,
|
||||
accent6: #6c71c4
|
||||
accent1: #586e75,
|
||||
accent2: #657b83,
|
||||
accent3: #839496,
|
||||
accent4: #93a1a1,
|
||||
accent5: #657b83,
|
||||
accent6: #586e75
|
||||
);
|
||||
|
||||
// $palette: (
|
||||
// bg: #fdf6e3,
|
||||
// bg-alt: #073642,
|
||||
// fg: #073642,
|
||||
// fg-bold: #002b36,
|
||||
// fg-light: rgba(244,244,255,0.2),
|
||||
// border: rgba(212,212,255,0.1),
|
||||
// border-bg: rgba(212,212,255,0.035),
|
||||
// highlight: #2aa198,
|
||||
// accent1: #586e75,
|
||||
// accent2: #657b83,
|
||||
// accent3: #839496,
|
||||
// accent4: #93a1a1,
|
||||
// accent5: #586e75,
|
||||
// accent6: #657b83
|
||||
// );
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>404</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p ></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>404</h1>
|
||||
</header>
|
||||
|
||||
<p><p>Page not found! :(</p>
|
||||
</p>
|
||||
@ -116,13 +120,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Generic</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >The code behind 5024's 2019 robot</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Generic</h1>
|
||||
</header>
|
||||
<span class="image main"><img src="/assets/images/DeepSpace.jpg" alt="" /></span>
|
||||
<p>
|
||||
</p>
|
||||
@ -116,13 +120,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
File diff suppressed because one or more lines are too long
@ -13,3 +13,8 @@
|
||||
background-color: #ffffff;
|
||||
color:#111111;
|
||||
}
|
||||
|
||||
.featured-post{
|
||||
border-width:5px ;
|
||||
border-style: solid;
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>I gave Google's CTF a short try and learned a thing or two</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >But exams got in the way and took all the fun</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>I gave Google's CTF a short try and learned a thing or two</h1>
|
||||
</header>
|
||||
|
||||
<p><p>Honestly, I completely forgot that this was the weekend of Google’s online <a href="https://g.co/ctf">CTF Qualifications</a> for 2019 and was late, unprepared, busy, and did not have a team to work with.</p>
|
||||
|
||||
@ -125,13 +129,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -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.5">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>2019-06-28T17:53:20-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Evan Pratten</title><subtitle>Computer wizard, student, <a href="https://github.com/frc5024">@frc5024</a> programming team lead, and radio enthusiast.</subtitle><entry><title type="html">I had some fun with a router</title><link href="http://localhost:4000/projects/2019/06/27/PWNlink.html" rel="alternate" type="text/html" title="I had some fun with a router" /><published>2019-06-27T13:16:00-04:00</published><updated>2019-06-27T13:16:00-04:00</updated><id>http://localhost:4000/projects/2019/06/27/PWNlink</id><content type="html" xml:base="http://localhost:4000/projects/2019/06/27/PWNlink.html"><p>I was playing around with some D-link routers today and remembered an <a href="https://www.exploit-db.com/exploits/33520">ExploitDB Entry</a> I read a while ago. Many D-link routers have a great feature that allows remote management and configuration queries. Interestingly, this cannot be disabled, and one of the pages contains a cleartext version of the admin password (yay!).</p>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.5">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-06-29T16:41:32-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://github.com/frc5024">@frc5024</a> programming team lead, and radio enthusiast.</subtitle><entry><title type="html">I had some fun with a router</title><link href="http://0.0.0.0:4000/projects/2019/06/27/PWNlink.html" rel="alternate" type="text/html" title="I had some fun with a router" /><published>2019-06-27T13:16:00-04:00</published><updated>2019-06-27T13:16:00-04:00</updated><id>http://0.0.0.0:4000/projects/2019/06/27/PWNlink</id><content type="html" xml:base="http://0.0.0.0:4000/projects/2019/06/27/PWNlink.html"><p>I was playing around with some D-link routers today and remembered an <a href="https://www.exploit-db.com/exploits/33520">ExploitDB Entry</a> I read a while ago. Many D-link routers have a great feature that allows remote management and configuration queries. Interestingly, this cannot be disabled, and one of the pages contains a cleartext version of the admin password (yay!).</p>
|
||||
|
||||
<h2 id="how-to-get-yourself-an-admin-password">How to get yourself an admin password</h2>
|
||||
<p>On any supported router, make an HTTP request to <code class="highlighter-rouge">http://your.router.ip.addr/tools_admin.asp/</code>. This will return a pretty large XML file containing information about your router’s hardware and configuration.</p>
|
||||
@ -37,7 +37,7 @@
|
||||
|
||||
<p><strong>Don’t be dumb with this script.</strong></p>
|
||||
|
||||
<p>I have only used it on my own (or 5024’s) routers, and did not create PWNlink with any malicious intent.</p></content><author><name></name></author><category term="projects" /><summary type="html">I was playing around with some D-link routers today and remembered an ExploitDB Entry I read a while ago. Many D-link routers have a great feature that allows remote management and configuration queries. Interestingly, this cannot be disabled, and one of the pages contains a cleartext version of the admin password (yay!).</summary></entry><entry><title type="html">Hunting snakes with a shotgun</title><link href="http://localhost:4000/random/2019/06/27/Python.html" rel="alternate" type="text/html" title="Hunting snakes with a shotgun" /><published>2019-06-27T03:00:00-04:00</published><updated>2019-06-27T03:00:00-04:00</updated><id>http://localhost:4000/random/2019/06/27/Python</id><content type="html" xml:base="http://localhost:4000/random/2019/06/27/Python.html"><p>A rather large number of people know me as “the guy who does weird things with python”. I would object to this title, but it is quite accurate. So, here are some of the things I like playing with in python. None of these are actually breaking the language, just little known facts and syntax. At some point I will share about actually breaking the language. For now, enjoy the weird things I have found over the past 6 years.</p>
|
||||
<p>I have only used it on my own (or 5024’s) routers, and did not create PWNlink with any malicious intent.</p></content><author><name></name></author><category term="projects" /><summary type="html">I was playing around with some D-link routers today and remembered an ExploitDB Entry I read a while ago. Many D-link routers have a great feature that allows remote management and configuration queries. Interestingly, this cannot be disabled, and one of the pages contains a cleartext version of the admin password (yay!).</summary></entry><entry><title type="html">Hunting snakes with a shotgun</title><link href="http://0.0.0.0:4000/random/2019/06/27/Python.html" rel="alternate" type="text/html" title="Hunting snakes with a shotgun" /><published>2019-06-27T03:00:00-04:00</published><updated>2019-06-27T03:00:00-04:00</updated><id>http://0.0.0.0:4000/random/2019/06/27/Python</id><content type="html" xml:base="http://0.0.0.0:4000/random/2019/06/27/Python.html"><p>A rather large number of people know me as “the guy who does weird things with python”. I would object to this title, but it is quite accurate. So, here are some of the things I like playing with in python. None of these are actually breaking the language, just little known facts and syntax. At some point I will share about actually breaking the language. For now, enjoy the weird things I have found over the past 6 years.</p>
|
||||
|
||||
<h2 id="type-hints">Type hints</h2>
|
||||
<p>A little known feature of python is called “type hinting” (PEP 484). This is actually quite common to see in standard libraries, and has it’s own special syntax:</p>
|
||||
@ -141,7 +141,7 @@
|
||||
<p>This one is interesting. Python, like Java, is compiled into bytecode. So yes, it technically is a compiled language. To see said bytecode, take a look at any <code class="highlighter-rouge">.pyc</code> file sitting in your <code class="highlighter-rouge">__pycache__</code></p>
|
||||
|
||||
<h2 id="blog-formatting-experiments">Blog formatting experiments</h2>
|
||||
<p>I am still playing with post formats, and various types of content. This is more random than I usually prefer. Let me know your thoughts on the social media platform of your choosing.</p></content><author><name></name></author><summary type="html">A rather large number of people know me as “the guy who does weird things with python”. I would object to this title, but it is quite accurate. So, here are some of the things I like playing with in python. None of these are actually breaking the language, just little known facts and syntax. At some point I will share about actually breaking the language. For now, enjoy the weird things I have found over the past 6 years.</summary></entry><entry><title type="html">BashSmash</title><link href="http://localhost:4000/projects/2019/06/26/BashSmash.html" rel="alternate" type="text/html" title="BashSmash" /><published>2019-06-26T11:48:00-04:00</published><updated>2019-06-26T11:48:00-04:00</updated><id>http://localhost:4000/projects/2019/06/26/BashSmash</id><content type="html" xml:base="http://localhost:4000/projects/2019/06/26/BashSmash.html"><p>I was watching this great <a href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;ved=2ahUKEwiOhNze_4fjAhUiB50JHR12D8AQwqsBMAB6BAgJEAQ&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D6D1LnMj0Yt0&amp;usg=AOvVaw2nOgft0SoPZujc9js9Vxhx">Liveoverflow video</a> yesterday, and really liked the idea of building escape sequences with strings. So, I built a new tool, <a href="https://pypi.org/project/bashsmash/">BashSmash</a>.</p>
|
||||
<p>I am still playing with post formats, and various types of content. This is more random than I usually prefer. Let me know your thoughts on the social media platform of your choosing.</p></content><author><name></name></author><summary type="html">A rather large number of people know me as “the guy who does weird things with python”. I would object to this title, but it is quite accurate. So, here are some of the things I like playing with in python. None of these are actually breaking the language, just little known facts and syntax. At some point I will share about actually breaking the language. For now, enjoy the weird things I have found over the past 6 years.</summary></entry><entry><title type="html">BashSmash</title><link href="http://0.0.0.0:4000/projects/2019/06/26/BashSmash.html" rel="alternate" type="text/html" title="BashSmash" /><published>2019-06-26T11:48:00-04:00</published><updated>2019-06-26T11:48:00-04:00</updated><id>http://0.0.0.0:4000/projects/2019/06/26/BashSmash</id><content type="html" xml:base="http://0.0.0.0:4000/projects/2019/06/26/BashSmash.html"><p>I was watching this great <a href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;ved=2ahUKEwiOhNze_4fjAhUiB50JHR12D8AQwqsBMAB6BAgJEAQ&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D6D1LnMj0Yt0&amp;usg=AOvVaw2nOgft0SoPZujc9js9Vxhx">Liveoverflow video</a> yesterday, and really liked the idea of building escape sequences with strings. So, I built a new tool, <a href="https://pypi.org/project/bashsmash/">BashSmash</a>.</p>
|
||||
|
||||
<h2 id="the-goal">The goal</h2>
|
||||
<p>The goal of BashSmash is very similar to that described in Liveoverflow’s video. Do anything in bash without using any letters or numbers except <code class="highlighter-rouge">n</code> and <code class="highlighter-rouge">f</code> (he used <code class="highlighter-rouge">i</code> instead of <code class="highlighter-rouge">f</code>). This can both bypass shell injection filters, and generally mess with people.</p>
|
||||
@ -259,7 +259,7 @@ __<span class="o">()</span> <span class="o"&g
|
||||
<h2 id="why-do-you-have-a-desire-to-break-things-with-python">Why do you have a desire to break things with python</h2>
|
||||
<p>Because it is fun. Give it a try!</p>
|
||||
|
||||
<p>I will have a post here at some point about the weird things I do in my python code and why I do them.</p></content><author><name></name></author><category term="projects" /><summary type="html">I was watching this great Liveoverflow video yesterday, and really liked the idea of building escape sequences with strings. So, I built a new tool, BashSmash.</summary></entry><entry><title type="html">The language hunt: Part 2</title><link href="http://localhost:4000/frc/2019/06/24/LanguageHunt2.html" rel="alternate" type="text/html" title="The language hunt: Part 2" /><published>2019-06-24T17:36:00-04:00</published><updated>2019-06-24T17:36:00-04:00</updated><id>http://localhost:4000/frc/2019/06/24/LanguageHunt2</id><content type="html" xml:base="http://localhost:4000/frc/2019/06/24/LanguageHunt2.html"><p>This is a very short post, just to explain the result of <a href="/frc/2019/04/30/FRC-Languages.html">The language Hunt</a>.</p>
|
||||
<p>I will have a post here at some point about the weird things I do in my python code and why I do them.</p></content><author><name></name></author><category term="projects" /><summary type="html">I was watching this great Liveoverflow video yesterday, and really liked the idea of building escape sequences with strings. So, I built a new tool, BashSmash.</summary></entry><entry><title type="html">The language hunt: Part 2</title><link href="http://0.0.0.0:4000/frc/2019/06/24/LanguageHunt2.html" rel="alternate" type="text/html" title="The language hunt: Part 2" /><published>2019-06-24T17:36:00-04:00</published><updated>2019-06-24T17:36:00-04:00</updated><id>http://0.0.0.0:4000/frc/2019/06/24/LanguageHunt2</id><content type="html" xml:base="http://0.0.0.0:4000/frc/2019/06/24/LanguageHunt2.html"><p>This is a very short post, just to explain the result of <a href="/frc/2019/04/30/FRC-Languages.html">The language Hunt</a>.</p>
|
||||
|
||||
<h2 id="our-choice">Our choice</h2>
|
||||
<p>For our upcoming 2020 season and for the forseeable future, we have chosen Java as our programming language for direct hardware interfacing, and Python for networking, vision, and other smaller tasks.</p>
|
||||
@ -268,7 +268,7 @@ __<span class="o">()</span> <span class="o"&g
|
||||
<p>Not too much. Aside from learning new syntax, tools, and no longer worrying about linker errors, Java and C++ have no real difference. Most of the reason Java was chosen was based on support instead of functionality. Java is much better supported by FIRST, WPILib, and other vendors. Java is also taught in the school 5024 is based from. For a more detailed explanation of the benefits of each language, take a look at Chief Delphi. There are plenty of posts there explaining the choices of many teams and their reasoning.</p>
|
||||
|
||||
<h2 id="side-note">Side note</h2>
|
||||
<p>I am experimenting with various post formats (This being a short post). Let me know which you prefer via the social platform of your choice.</p></content><author><name></name></author><summary type="html">This is a very short post, just to explain the result of The language Hunt.</summary></entry><entry><title type="html">I gave Google’s CTF a short try and learned a thing or two</title><link href="http://localhost:4000/ctf/2019/06/23/googlectf.html" rel="alternate" type="text/html" title="I gave Google's CTF a short try and learned a thing or two" /><published>2019-06-23T18:04:00-04:00</published><updated>2019-06-23T18:04:00-04:00</updated><id>http://localhost:4000/ctf/2019/06/23/googlectf</id><content type="html" xml:base="http://localhost:4000/ctf/2019/06/23/googlectf.html"><p>Honestly, I completely forgot that this was the weekend of Google’s online <a href="https://g.co/ctf">CTF Qualifications</a> for 2019 and was late, unprepared, busy, and did not have a team to work with.</p>
|
||||
<p>I am experimenting with various post formats (This being a short post). Let me know which you prefer via the social platform of your choice.</p></content><author><name></name></author><summary type="html">This is a very short post, just to explain the result of The language Hunt.</summary></entry><entry><title type="html">I gave Google’s CTF a short try and learned a thing or two</title><link href="http://0.0.0.0:4000/ctf/2019/06/23/googlectf.html" rel="alternate" type="text/html" title="I gave Google's CTF a short try and learned a thing or two" /><published>2019-06-23T18:04:00-04:00</published><updated>2019-06-23T18:04:00-04:00</updated><id>http://0.0.0.0:4000/ctf/2019/06/23/googlectf</id><content type="html" xml:base="http://0.0.0.0:4000/ctf/2019/06/23/googlectf.html"><p>Honestly, I completely forgot that this was the weekend of Google’s online <a href="https://g.co/ctf">CTF Qualifications</a> for 2019 and was late, unprepared, busy, and did not have a team to work with.</p>
|
||||
|
||||
<h2 id="what-is-this-event">What is this event?</h2>
|
||||
<p>Google hosts a (yearly?) event where hackers from around the world team up and attempt a variety of tasks like: exploiting machines over a network, reversing firmware, pulling passwords from tcp packets, hacking crypto stuff (something I suck at), breaking compilers. and much more. Generally, this event and others like it are really fun.</p>
|
||||
@ -277,7 +277,7 @@ __<span class="o">()</span> <span class="o"&g
|
||||
<p>Many questions I worked on involved extracting a key from a binary. I employed two vastly different tools for this job. First, a standard linux tool, <code class="highlighter-rouge">strings</code>. When passed a filename, it will extract and print all human-readable strings it can find to the terminal. The flag is usually in this dump. If not, I use the second tool. <a href="https://www.nsa.gov/resources/everyone/ghidra/">Ghidra</a>, an open-source reverse engineering tool designed by the NSA. I used this tool a fair amount during my quick attempt at GCTF.</p>
|
||||
|
||||
<h2 id="will-i-do-this-again">Will I do this again?</h2>
|
||||
<p>Yes! The CTF was very fun to try, and I will definitely give it a proper shot next time.</p></content><author><name></name></author><summary type="html">Honestly, I completely forgot that this was the weekend of Google’s online CTF Qualifications for 2019 and was late, unprepared, busy, and did not have a team to work with.</summary></entry><entry><title type="html">What I have learned from 2 years of FRC programming</title><link href="http://localhost:4000/frc/2019/06/21/Robot-Experiences.html" rel="alternate" type="text/html" title="What I have learned from 2 years of FRC programming" /><published>2019-06-21T11:14:00-04:00</published><updated>2019-06-21T11:14:00-04:00</updated><id>http://localhost:4000/frc/2019/06/21/Robot-Experiences</id><content type="html" xml:base="http://localhost:4000/frc/2019/06/21/Robot-Experiences.html"><p>Over the past two years (2018 / 2019), I have been a member of my school’s <a href="https://www.firstinspires.org/robotics/frc">FRC</a> team, <a href="frc5024.github.io">Raider Robotics</a>. Specifically, a programmer.</p>
|
||||
<p>Yes! The CTF was very fun to try, and I will definitely give it a proper shot next time.</p></content><author><name></name></author><summary type="html">Honestly, I completely forgot that this was the weekend of Google’s online CTF Qualifications for 2019 and was late, unprepared, busy, and did not have a team to work with.</summary></entry><entry><title type="html">What I have learned from 2 years of FRC programming</title><link href="http://0.0.0.0:4000/frc/2019/06/21/Robot-Experiences.html" rel="alternate" type="text/html" title="What I have learned from 2 years of FRC programming" /><published>2019-06-21T11:14:00-04:00</published><updated>2019-06-21T11:14:00-04:00</updated><id>http://0.0.0.0:4000/frc/2019/06/21/Robot-Experiences</id><content type="html" xml:base="http://0.0.0.0:4000/frc/2019/06/21/Robot-Experiences.html"><p>Over the past two years (2018 / 2019), I have been a member of my school’s <a href="https://www.firstinspires.org/robotics/frc">FRC</a> team, <a href="frc5024.github.io">Raider Robotics</a>. Specifically, a programmer.</p>
|
||||
|
||||
<h2 id="my-roles">My roles</h2>
|
||||
<p>In my first year, I joined the team as a programmer and had a fun time learning about embedded programming and development with hardware. Then, in my second year, I was promoted to programming co-lead along with <a href="https://github.com/slownie">@slownie</a>. I much preferred my second season because I had a better understanding of the technology I was working with, and we got to play with some cool tools throughout the season.</p>
|
||||
@ -329,7 +329,7 @@ __<span class="o">()</span> <span class="o"&g
|
||||
<li>Have mentors do “guest presentations”</li>
|
||||
<li>Dedicate a day to robot driving lessons</li>
|
||||
<li>Use a custom library with wrappers and tools built by me to provide easy interfaces for new programmers</li>
|
||||
</ul></content><author><name></name></author><summary type="html">Over the past two years (2018 / 2019), I have been a member of my school’s FRC team, Raider Robotics. Specifically, a programmer.</summary></entry><entry><title type="html">Blogs I Read</title><link href="http://localhost:4000/random/2019/06/18/Blogs-I-Read.html" rel="alternate" type="text/html" title="Blogs I Read" /><published>2019-06-18T09:18:00-04:00</published><updated>2019-06-18T09:18:00-04:00</updated><id>http://localhost:4000/random/2019/06/18/Blogs-I-Read</id><content type="html" xml:base="http://localhost:4000/random/2019/06/18/Blogs-I-Read.html"><p>This is a copy-pastable list of rss feeds I subscribe to:</p>
|
||||
</ul></content><author><name></name></author><summary type="html">Over the past two years (2018 / 2019), I have been a member of my school’s FRC team, Raider Robotics. Specifically, a programmer.</summary></entry><entry><title type="html">Blogs I Read</title><link href="http://0.0.0.0:4000/random/2019/06/18/Blogs-I-Read.html" rel="alternate" type="text/html" title="Blogs I Read" /><published>2019-06-18T09:18:00-04:00</published><updated>2019-06-18T09:18:00-04:00</updated><id>http://0.0.0.0:4000/random/2019/06/18/Blogs-I-Read</id><content type="html" xml:base="http://0.0.0.0:4000/random/2019/06/18/Blogs-I-Read.html"><p>This is a copy-pastable list of rss feeds I subscribe to:</p>
|
||||
|
||||
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>https://www.firstinspires.org/robotics/frc/blog-rss
|
||||
https://lukesmith.xyz/rss.xml
|
||||
@ -337,7 +337,7 @@ https://daniellockyer.com/feed.xml
|
||||
http://www.windytan.com/rss.xml
|
||||
http://psy-lob-saw.blogspot.com/rss.xml
|
||||
https://retrylife.ca/feed.xml
|
||||
</code></pre></div></div></content><author><name></name></author><summary type="html">This is a copy-pastable list of rss feeds I subscribe to:</summary></entry><entry><title type="html">I made a new song!</title><link href="http://localhost:4000/music/2019/06/17/AMM2M1-release.html" rel="alternate" type="text/html" title="I made a new song!" /><published>2019-06-17T06:20:00-04:00</published><updated>2019-06-17T06:20:00-04:00</updated><id>http://localhost:4000/music/2019/06/17/AMM2M1-release</id><content type="html" xml:base="http://localhost:4000/music/2019/06/17/AMM2M1-release.html"><p>I am currently taking a class in school called <a href="https://www.facebook.com/studio225beal/">Music and computers (AMM2M)</a>, where as part of the class, whe get together into bands, and produce a song. After taking a break from music production for over a year, we have released our song for the class (we do two songs, but the second is not finished yet).</p>
|
||||
</code></pre></div></div></content><author><name></name></author><summary type="html">This is a copy-pastable list of rss feeds I subscribe to:</summary></entry><entry><title type="html">I made a new song!</title><link href="http://0.0.0.0:4000/music/2019/06/17/AMM2M1-release.html" rel="alternate" type="text/html" title="I made a new song!" /><published>2019-06-17T06:20:00-04:00</published><updated>2019-06-17T06:20:00-04:00</updated><id>http://0.0.0.0:4000/music/2019/06/17/AMM2M1-release</id><content type="html" xml:base="http://0.0.0.0:4000/music/2019/06/17/AMM2M1-release.html"><p>I am currently taking a class in school called <a href="https://www.facebook.com/studio225beal/">Music and computers (AMM2M)</a>, where as part of the class, whe get together into bands, and produce a song. After taking a break from music production for over a year, we have released our song for the class (we do two songs, but the second is not finished yet).</p>
|
||||
|
||||
<h2 id="my-contribution">My contribution</h2>
|
||||
<p>My main contribution to the project was a mix of live drumming, and most of the song’s MIDI work. The song is far from perfect, but pretty good for the time we had to produce it.</p>
|
||||
@ -348,7 +348,7 @@ https://retrylife.ca/feed.xml
|
||||
<audio controls="">
|
||||
<source src="/assets/audio/SpamPhoneCalls.mp3" type="audio/mpeg" />
|
||||
Your browser does not support audio players
|
||||
</audio></content><author><name></name></author><summary type="html">I am currently taking a class in school called Music and computers (AMM2M), where as part of the class, whe get together into bands, and produce a song. After taking a break from music production for over a year, we have released our song for the class (we do two songs, but the second is not finished yet).</summary></entry><entry><title type="html">Graphing the relation between wheels and awards for FRC</title><link href="http://localhost:4000/frc/2019/06/16/Graphing-w2a.html" rel="alternate" type="text/html" title="Graphing the relation between wheels and awards for FRC" /><published>2019-06-16T11:51:00-04:00</published><updated>2019-06-16T11:51:00-04:00</updated><id>http://localhost:4000/frc/2019/06/16/Graphing-w2a</id><content type="html" xml:base="http://localhost:4000/frc/2019/06/16/Graphing-w2a.html"><p>I was scrolling through reddit the other day, and came across <a href="https://www.reddit.com/r/FRC/comments/byzv5q/i_know_what_im_doing/">this great post</a> by u/<a href="https://www.reddit.com/user/MasterQuacks/">MasterQuacks</a>.</p>
|
||||
</audio></content><author><name></name></author><summary type="html">I am currently taking a class in school called Music and computers (AMM2M), where as part of the class, whe get together into bands, and produce a song. After taking a break from music production for over a year, we have released our song for the class (we do two songs, but the second is not finished yet).</summary></entry><entry><title type="html">Graphing the relation between wheels and awards for FRC</title><link href="http://0.0.0.0:4000/frc/2019/06/16/Graphing-w2a.html" rel="alternate" type="text/html" title="Graphing the relation between wheels and awards for FRC" /><published>2019-06-16T11:51:00-04:00</published><updated>2019-06-16T11:51:00-04:00</updated><id>http://0.0.0.0:4000/frc/2019/06/16/Graphing-w2a</id><content type="html" xml:base="http://0.0.0.0:4000/frc/2019/06/16/Graphing-w2a.html"><p>I was scrolling through reddit the other day, and came across <a href="https://www.reddit.com/r/FRC/comments/byzv5q/i_know_what_im_doing/">this great post</a> by u/<a href="https://www.reddit.com/user/MasterQuacks/">MasterQuacks</a>.</p>
|
||||
|
||||
<p><img src="/assets/images/w2ainspo.jpg" alt="My insporation" /></p>
|
||||
|
||||
@ -400,7 +400,7 @@ Your browser does not support audio players
|
||||
<h2 id="the-result">The result</h2>
|
||||
<p>Here is the resulting image. From left, to right: 5024, 254, 2224, 5406, 2056</p>
|
||||
|
||||
<p><img src="/assets/images/w2a.png" alt="Thr result" /></p></content><author><name></name></author><summary type="html">I was scrolling through reddit the other day, and came across this great post by u/MasterQuacks.</summary></entry><entry><title type="html">GitHub’s CSS is boring. So I refreshed the design</title><link href="http://localhost:4000/projects/2019/06/12/Styiling-GitHub.html" rel="alternate" type="text/html" title="GitHub's CSS is boring. So I refreshed the design" /><published>2019-06-12T09:09:00-04:00</published><updated>2019-06-12T09:09:00-04:00</updated><id>http://localhost:4000/projects/2019/06/12/Styiling-GitHub</id><content type="html" xml:base="http://localhost:4000/projects/2019/06/12/Styiling-GitHub.html"><p>I have been using GitHub since 2017, and have been getting tired of GitHub’s theme. I didn’t need a huge change, just a small refresh. So, to solve this, I whipped out <a href="https://addons.mozilla.org/en-CA/firefox/addon/styl-us/">Stylus</a> and made a nice little CSS file for it.</p>
|
||||
<p><img src="/assets/images/w2a.png" alt="Thr result" /></p></content><author><name></name></author><summary type="html">I was scrolling through reddit the other day, and came across this great post by u/MasterQuacks.</summary></entry><entry><title type="html">GitHub’s CSS is boring. So I refreshed the design</title><link href="http://0.0.0.0:4000/projects/2019/06/12/Styiling-GitHub.html" rel="alternate" type="text/html" title="GitHub's CSS is boring. So I refreshed the design" /><published>2019-06-12T09:09:00-04:00</published><updated>2019-06-12T09:09:00-04:00</updated><id>http://0.0.0.0:4000/projects/2019/06/12/Styiling-GitHub</id><content type="html" xml:base="http://0.0.0.0:4000/projects/2019/06/12/Styiling-GitHub.html"><p>I have been using GitHub since 2017, and have been getting tired of GitHub’s theme. I didn’t need a huge change, just a small refresh. So, to solve this, I whipped out <a href="https://addons.mozilla.org/en-CA/firefox/addon/styl-us/">Stylus</a> and made a nice little CSS file for it.</p>
|
||||
|
||||
<h2 id="the-css">The CSS</h2>
|
||||
<p>Here is the CSS. Feel free to play with it.</p>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>The language hunt</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p ></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>The language hunt</h1>
|
||||
</header>
|
||||
|
||||
<p><p>Our programming team is looking to switch languages in the 2020 season. Here is the what, why, and how.</p>
|
||||
|
||||
@ -130,13 +134,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Building a safe and easy system for sending computer vision data from a raspberry pi to a roborio</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p ></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Building a safe and easy system for sending computer vision data from a raspberry pi to a roborio</h1>
|
||||
</header>
|
||||
|
||||
<p><p>Computer vision on an FRC robot has some problems.</p>
|
||||
<ul>
|
||||
@ -143,13 +147,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Graphing the relation between wheels and awards for FRC</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >AKA. Why programmer + reddit + matplotlib is a bad idea.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Graphing the relation between wheels and awards for FRC</h1>
|
||||
</header>
|
||||
|
||||
<p><p>I was scrolling through reddit the other day, and came across <a href="https://www.reddit.com/r/FRC/comments/byzv5q/i_know_what_im_doing/">this great post</a> by u/<a href="https://www.reddit.com/user/MasterQuacks/">MasterQuacks</a>.</p>
|
||||
|
||||
@ -168,13 +172,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>What I have learned from 2 years of FRC programming</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Robots are pretty cool</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>What I have learned from 2 years of FRC programming</h1>
|
||||
</header>
|
||||
|
||||
<p><p>Over the past two years (2018 / 2019), I have been a member of my school’s <a href="https://www.firstinspires.org/robotics/frc">FRC</a> team, <a href="frc5024.github.io">Raider Robotics</a>. Specifically, a programmer.</p>
|
||||
|
||||
@ -168,13 +172,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>The language hunt: Part 2</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >A quick followup</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>The language hunt: Part 2</h1>
|
||||
</header>
|
||||
|
||||
<p><p>This is a very short post, just to explain the result of <a href="/frc/2019/04/30/FRC-Languages.html">The language Hunt</a>.</p>
|
||||
|
||||
@ -125,13 +129,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
214
_site/index.html
214
_site/index.html
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" class="alt" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -81,9 +76,6 @@
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Computer wizard, student, <a href="https://github.com/frc5024">@frc5024</a> programming team lead, and radio enthusiast.</p>
|
||||
<!-- <ul class="actions">
|
||||
<li><a href="#one" class="button next scrolly">Get Started</a></li>
|
||||
</ul> -->
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -91,191 +83,41 @@
|
||||
<!-- Main -->
|
||||
<div id="main">
|
||||
|
||||
<!-- <section id="two">
|
||||
<section id="two">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Projects</h2>
|
||||
<h2>About Me</h2>
|
||||
</header>
|
||||
<p>I am a 16 year old programming student. I enjoy learning new concepts, building projects out of random ideas and obscure technologies, and working with new tools. My projects range from building tools to help me with school work, and robotics, to radios and video production.</p>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="one" class="tiles">
|
||||
|
||||
<article>
|
||||
<span class="image">
|
||||
<img src="assets/images/DeepSpace.jpg" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/DeepSpace.html" class="link">Generic</a></h3>
|
||||
<p>The code behind 5024's 2019 robot</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
</section>
|
||||
|
||||
<section id="two">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Posts</h2>
|
||||
<h3>Blog</h3>
|
||||
<p>Here are my three most recent posts</p>
|
||||
</header>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><h3><a href="/projects/2019/06/27/PWNlink.html" class="link" title="2019-06-27 13:16:00 -0400">I had some fun with a router</a></h3></li>
|
||||
|
||||
<li><h3><a href="/random/2019/06/27/Python.html" class="link" title="2019-06-27 03:00:00 -0400">Hunting snakes with a shotgun</a></h3></li>
|
||||
|
||||
<li><h3><a href="/projects/2019/06/26/BashSmash.html" class="link" title="2019-06-26 11:48:00 -0400">BashSmash</a></h3></li>
|
||||
|
||||
</ul>
|
||||
<a href="all_posts.html" class="button next">View All</a>
|
||||
|
||||
</div>
|
||||
</section> -->
|
||||
|
||||
|
||||
<section id="one" class="tiles">
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/projects/2019/06/27/PWNlink.html" class="link">I had some fun with a router</a></h3>
|
||||
<p>cleartext passwords + external management = death wish</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/random/2019/06/27/Python.html" class="link">Hunting snakes with a shotgun</a></h3>
|
||||
<p>Python is a little too forgiving</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/projects/2019/06/26/BashSmash.html" class="link">BashSmash</a></h3>
|
||||
<p>A tool for driving people crazy</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/frc/2019/06/24/LanguageHunt2.html" class="link">The language hunt: Part 2</a></h3>
|
||||
<p>A quick followup</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/ctf/2019/06/23/googlectf.html" class="link">I gave Google's CTF a short try and learned a thing or two</a></h3>
|
||||
<p>But exams got in the way and took all the fun</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/frc/2019/06/21/Robot-Experiences.html" class="link">What I have learned from 2 years of FRC programming</a></h3>
|
||||
<p>Robots are pretty cool</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/random/2019/06/18/Blogs-I-Read.html" class="link">Blogs I Read</a></h3>
|
||||
<p>The constantly updating list</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/music/2019/06/17/AMM2M1-release.html" class="link">I made a new song!</a></h3>
|
||||
<p>Releasing a new song with friends at school</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/frc/2019/06/16/Graphing-w2a.html" class="link">Graphing the relation between wheels and awards for FRC</a></h3>
|
||||
<p>AKA. Why programmer + reddit + matplotlib is a bad idea.</p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
<article class="tile">
|
||||
<span class="image">
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="/projects/2019/06/12/Styiling-GitHub.html" class="link">GitHub's CSS is boring. So I refreshed the design</a></h3>
|
||||
<p></p>
|
||||
</header>
|
||||
</article>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<article>
|
||||
<section id="two">
|
||||
<div class="inner">
|
||||
<!-- <header class="major">
|
||||
<h2>Massa libero</h2>
|
||||
</header>
|
||||
<p>
|
||||
</p> -->
|
||||
<!-- <ul class="actions">
|
||||
<li><a href="all_posts.html" class="button next">View All</a></li>
|
||||
</ul> -->
|
||||
<br>
|
||||
<a href="all_posts.html" class="button next" style="left:10%; margin:auto">View All</a>
|
||||
<br><br>
|
||||
</div>
|
||||
</section>
|
||||
</article>
|
||||
|
||||
|
||||
<!-- Two -->
|
||||
<!-- <section id="two">
|
||||
<div class="inner">
|
||||
<ul class="actions">
|
||||
<li><a href="all_posts.html" class="button next">View All</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</section> -->
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer id="footer">
|
||||
@ -302,13 +144,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>I made a new song!</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Releasing a new song with friends at school</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>I made a new song!</h1>
|
||||
</header>
|
||||
|
||||
<p><p>I am currently taking a class in school called <a href="https://www.facebook.com/studio225beal/">Music and computers (AMM2M)</a>, where as part of the class, whe get together into bands, and produce a song. After taking a break from music production for over a year, we have released our song for the class (we do two songs, but the second is not finished yet).</p>
|
||||
|
||||
@ -127,13 +131,13 @@ Your browser does not support audio players
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Using a python script to create devRant posts based on the style and content of another user</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >if/else ++</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Using a python script to create devRant posts based on the style and content of another user</h1>
|
||||
</header>
|
||||
|
||||
<p><p>Ok… The title is slightly wrong. There are actually 2 scripts.. Sorry about that.</p>
|
||||
|
||||
@ -166,13 +170,13 @@ pip3 install tensorflow-gpu #for gpu processing
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>GitHub's CSS is boring. So I refreshed the design</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p ></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>GitHub's CSS is boring. So I refreshed the design</h1>
|
||||
</header>
|
||||
|
||||
<p><p>I have been using GitHub since 2017, and have been getting tired of GitHub’s theme. I didn’t need a huge change, just a small refresh. So, to solve this, I whipped out <a href="https://addons.mozilla.org/en-CA/firefox/addon/styl-us/">Stylus</a> and made a nice little CSS file for it.</p>
|
||||
|
||||
@ -154,13 +158,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>BashSmash</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >A tool for driving people crazy</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>BashSmash</h1>
|
||||
</header>
|
||||
|
||||
<p><p>I was watching this great <a href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=2ahUKEwiOhNze_4fjAhUiB50JHR12D8AQwqsBMAB6BAgJEAQ&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D6D1LnMj0Yt0&usg=AOvVaw2nOgft0SoPZujc9js9Vxhx">Liveoverflow video</a> yesterday, and really liked the idea of building escape sequences with strings. So, I built a new tool, <a href="https://pypi.org/project/bashsmash/">BashSmash</a>.</p>
|
||||
|
||||
@ -234,13 +238,13 @@ __<span class="o">()</span> <span class="o">{</span>/???/???/???n?f <span class=
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>I had some fun with a router</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >cleartext passwords + external management = death wish</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>I had some fun with a router</h1>
|
||||
</header>
|
||||
|
||||
<p><p>I was playing around with some D-link routers today and remembered an <a href="https://www.exploit-db.com/exploits/33520">ExploitDB Entry</a> I read a while ago. Many D-link routers have a great feature that allows remote management and configuration queries. Interestingly, this cannot be disabled, and one of the pages contains a cleartext version of the admin password (yay!).</p>
|
||||
|
||||
@ -155,13 +159,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Blogs I Read</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >The constantly updating list</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Blogs I Read</h1>
|
||||
</header>
|
||||
|
||||
<p><p>This is a copy-pastable list of rss feeds I subscribe to:</p>
|
||||
|
||||
@ -124,13 +128,13 @@ https://retrylife.ca/feed.xml
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -1,9 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Forty by HTML5 UP
|
||||
html5up.net | @ajlkn
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
<html>
|
||||
|
||||
<head>
|
||||
@ -27,7 +22,7 @@
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<a href="http://0.0.0.0:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
|
||||
<nav>
|
||||
<!-- <a href="#menu">Menu</a> -->
|
||||
</nav>
|
||||
@ -44,7 +39,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000//">Home</a></li>
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
@ -57,7 +52,7 @@
|
||||
|
||||
|
||||
|
||||
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
|
||||
<li><a href="http://0.0.0.0:4000/all_posts.html">All posts</a></li>
|
||||
|
||||
|
||||
|
||||
@ -73,6 +68,18 @@
|
||||
</ul>
|
||||
</nav> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Hunting snakes with a shotgun</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Python is a little too forgiving</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
@ -80,9 +87,6 @@
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>Hunting snakes with a shotgun</h1>
|
||||
</header>
|
||||
|
||||
<p><p>A rather large number of people know me as “the guy who does weird things with python”. I would object to this title, but it is quite accurate. So, here are some of the things I like playing with in python. None of these are actually breaking the language, just little known facts and syntax. At some point I will share about actually breaking the language. For now, enjoy the weird things I have found over the past 6 years.</p>
|
||||
|
||||
@ -220,13 +224,13 @@
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="http://localhost:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://localhost:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://localhost:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://localhost:4000/assets/js/main.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrolly.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/jquery.scrollex.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/skel.min.js"></script>
|
||||
<script src="http://0.0.0.0:4000/assets/js/util.js"></script>
|
||||
<!--[if lte IE 8]><script src="http://0.0.0.0:4000/assets/js/ie/respond.min.js"></script><![endif]-->
|
||||
<script src="http://0.0.0.0:4000/assets/js/main.js"></script>
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-74118570-2"></script>
|
||||
|
@ -13,3 +13,8 @@
|
||||
background-color: #ffffff;
|
||||
color:#111111;
|
||||
}
|
||||
|
||||
.featured-post{
|
||||
border-width:5px ;
|
||||
border-style: solid;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user