1
ewpratten.com/_site/all_posts.html
2019-06-16 14:17:24 -04:00

291 lines
12 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>
<title>Evan Pratten</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!--[if lte IE 8]><script src="/assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="/assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="/assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="/assets/css/ie8.css" /><![endif]-->
</head>
<body>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header" >
<a href="http://localhost:4000//" class="logo"><strong>Evan Pratten</strong> <span>retrylife</span></a>
<nav>
<!-- <a href="#menu">Menu</a> -->
</nav>
</header>
<!-- Menu -->
<!-- <nav id="menu">
<ul class="links">
<li><a href="http://localhost:4000//">Home</a></li>
<li><a href="http://localhost:4000/all_posts.html">All posts</a></li>
</ul>
<ul class="actions vertical">
<li><a href="#" class="button special fit">Get Started</a></li>
<li><a href="#" class="button fit">Log In</a></li>
</ul>
</nav> -->
<!-- Main -->
<div id="main" class="alt">
<!-- One -->
<section id="one">
<div class="inner">
<header class="major">
<h1>GitHub's CSS is boring. So I refreshed the design</h1>
</header>
<p>2019-06-12 09:09:00 -0400</p>
<p><p>I have been using GitHub since 2017, and have been getting tired of GitHubs theme. I didnt 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>
<div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">@-moz-document</span> <span class="n">url-prefix</span><span class="p">(</span><span class="s1">"https://github.com/"</span><span class="p">)</span> <span class="p">{</span>
<span class="nc">.Header</span> <span class="p">{</span>
<span class="nl">background-color</span><span class="p">:</span> <span class="m">#1a3652</span><span class="p">;</span>
<span class="p">}</span>
<span class="nc">.repohead.experiment-repo-nav</span> <span class="p">{</span>
<span class="nl">background-color</span><span class="p">:</span> <span class="m">#fff</span><span class="p">;</span>
<span class="p">}</span>
<span class="nc">.reponav-item.selected</span> <span class="p">{</span>
<span class="nl">border-color</span><span class="p">:</span> <span class="m">#fff</span> <span class="m">#fff</span> <span class="m">#4a79a8</span><span class="p">;</span>
<span class="p">}</span>
<span class="nc">.btn.hover</span><span class="o">,</span>
<span class="nc">.btn</span><span class="nd">:hover</span><span class="o">,</span>
<span class="nc">.btn</span><span class="o">,</span>
<span class="nc">.btn</span> <span class="p">{</span>
<span class="nl">background-color</span><span class="p">:</span> <span class="m">#fafafa</span><span class="p">;</span>
<span class="nl">background-image</span><span class="p">:</span> <span class="n">linear-gradient</span><span class="p">(</span><span class="m">-180deg</span><span class="p">,</span> <span class="m">#fafafa</span><span class="p">,</span> <span class="m">#fafafa</span> <span class="m">90%</span><span class="p">);</span>
<span class="p">}</span>
<span class="nc">.btn-primary.hover</span><span class="o">,</span>
<span class="nc">.btn-primary</span><span class="nd">:hover</span><span class="o">,</span>
<span class="nc">.btn-primary</span><span class="o">,</span>
<span class="nc">.btn-primary</span> <span class="p">{</span>
<span class="nl">background-color</span><span class="p">:</span> <span class="m">#1aaa55</span><span class="p">;</span>
<span class="nl">background-image</span><span class="p">:</span> <span class="n">linear-gradient</span><span class="p">(</span><span class="m">-180deg</span><span class="p">,</span> <span class="m">#1aaa55</span><span class="p">,</span> <span class="m">#1aaa55</span> <span class="m">90%</span><span class="p">);</span>
<span class="p">}</span>
<span class="nc">.overall-summary</span> <span class="p">{}</span>
<span class="p">}</span>
</code></pre></div></div>
<h2 id="use-it-yourself">Use it yourself</h2>
<p>I put this theme on userstyles.org. You can download and install it by going to <a href="https://userstyles.org/styles/172679/ewpratten-s-githubtheme">my userstyles page</a>.</p>
</p>
<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>2019-05-27 05:22:00 -0400</p>
<p><p>Computer vision on an FRC robot has some problems.</p>
<ul>
<li>RoboRIO is not powerfull enough</li>
<li>NetworkTables is not fast enough</li>
<li>A TCP connection is great until you lose connection</li>
<li>mDNS discovery is not reliable on the field</li>
<li>UDP can skip frames</li>
</ul>
<h2 id="needs">Needs</h2>
<p>These are the things I need to have.</p>
<ul>
<li>Send data from any device</li>
<li>Recive data on RoboRIO at any time</li>
<li>Data rate faster than period time</li>
</ul>
<h2 id="wants">Wants</h2>
<p>These are the things I would like to have.</p>
<ul>
<li>Easy discovery</li>
<li>Threaded</li>
<li>Simple interface for new programmers</li>
<li>Fallback in case of UDP issues</li>
<li>FMS network firewall compliant</li>
</ul>
<p>I am currently working on a protocol for solving this problem, nad will post an update here once it has been tested. Feel free to let me know your thoughts and ideas.</p>
</p>
<header class="major">
<h1>The language hunt</h1>
</header>
<p>2019-04-30 14:32:00 -0400</p>
<p><p>Our programming team is looking to switch languages in the 2020 season. Here is the what, why, and how.</p>
<h2 id="our-history">Our history</h2>
<p>We started out as a java team back in 2014 because java was (and still is) the language being taught in our programming classes. Honestly, our code sucked, as many rookie teams do. There where no fancy features, or sensor-assisted autonomous. Direct input into talons was our way to roll.</p>
<p>A few years later, we had a change in team organization and switched to C++. Up until the 2019 / 2020 season, this was our language and we where getting pretty good at using it.</p>
<h2 id="the-problem">The Problem</h2>
<p>We, as a team are looking to bring our programming and robots to the next level in 2020. Because of this, we ran into a problem. While C++ is an amazing language for embedded and robotics programming, some of its “features” where starting to act as a bottleneck to our design. Less time was being spent on polishing our new vision system or autonomous climb, and more on that crazy linker error that came out of nowhere.</p>
<p>Its time for a change, but what do we change to?</p>
<h2 id="part-2">Part 2</h2>
<p>We are currently doing our evaluation of new programming languages, and an update will be posted to this blog in the near future.</p>
</p>
<header class="major">
<h1>Using a python script to create devRant posts based on the style and content of another user</h1>
</header>
<p>2018-06-27 14:32:00 -0400</p>
<p><p>Ok… The title is slightly wrong. There are actually 2 scripts.. Sorry about that.</p>
<p>This is a guide on installing and using the <a href="https://github.com/Ewpratten/BecomeRanter">BecomeRanter</a> script.</p>
<h2 id="getting-dependancies">Getting dependancies</h2>
<p>The scripts use Googles tensorflow library to do its “magic”. So first, we should install Tensorflows dependencies.</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>sudo apt install python3 python3-pip #change this command to fit your distro
pip3 install numpy
</code></pre></div></div>
<p>Then install Tensorflow</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>pip3 install tensorflow #for cpu processing
pip3 install tensorflow-gpu #for gpu processing
</code></pre></div></div>
<p>Next up, install the rest of the stuff:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>pip3 install textgenrnn pandas keras
</code></pre></div></div>
<h2 id="clone-the-repo">Clone the repo</h2>
<p>This is pretty simple. just make sure you have <code class="highlighter-rouge">git</code> installed and run</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>git clone https://github.com/Ewpratten/BecomeRanter.git
</code></pre></div></div>
<h2 id="generate-some-rants-with-a-hdf5-file">Generate some rants with a .hdf5 file</h2>
<p>As of the time of writing this, I have pre-generated some files for the two most popular ranters. These files can be found in <code class="highlighter-rouge">BecomeRanter/Checkpoint\ Files</code>.</p>
<p>Higher epoch numbers mean that they have had more time to train. The files with lower numbers are generally funnier.</p>
<p>To change the .hdf5 file you would like to use, open the file called <code class="highlighter-rouge">createsomerants.py</code> and change the variable called <code class="highlighter-rouge">input_file</code> to the path of your file. By default, the script generates from the <code class="highlighter-rouge">Linuxxx-epoch-90.hdf5</code> file.</p>
<p>Next, save that file and run the following in your terminal:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>python3 createsomerants.py &gt;&gt; output.txt
</code></pre></div></div>
<p>It will not print the results out to the screen and put them in the file instead.</p>
<p>To stop the script, press CTRL + C</p>
<h2 id="create-your-own-hdf5-file">Create your own .hdf5 file</h2>
<p>If you want to make your own hdf5 file, you just have to use the other script in the repo.</p>
<p>By default, you can just put all your text to train on in the <code class="highlighter-rouge">input.txt</code> file.</p>
<p>If you want to use a different file, or change the number of epochs, those variables can be found at the top of the <code class="highlighter-rouge">createhfd5frominput.py</code> file.</p>
<p>To start training, run:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>python3 createhfd5frominput.py
</code></pre></div></div>
<p>A new hdf5 file will be generated in the same folder as the script</p>
</p>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="https://twitter.com/ewpratten" class="icon alt fa-twitter" target="_blank"><span class="label">Twitter</span></a></li>
<li><a href="https://gitlab.com/u/ewpratten" class="icon alt fa-gitlab" target="_blank"><span class="label">GitLab</span></a></li>
<li><a href="https://github.com/ewpratten" class="icon alt fa-github" target="_blank"><span class="label">GitHub</span></a></li>
<li><a href="/feed.xml" class="icon alt fa-rss" target="_blank"><span class="label">RSS</span></a></li>
</ul>
<ul class="copyright">
<li>&copy; Evan Pratten retrylife</li>
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
</ul>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="http://localhost:4000/%20assets/js/jquery.min.js"></script>
<script src="http://localhost:4000/%20assets/js/jquery.scrolly.min.js"></script>
<script src="http://localhost:4000/%20assets/js/jquery.scrollex.min.js"></script>
<script src="http://localhost:4000/%20assets/js/skel.min.js"></script>
<script src="http://localhost:4000/%20assets/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/%20assets/js/main.js"></script>
</body>
</html>