Changed project rendering to use landing pages
This commit is contained in:
parent
e0cb89308a
commit
0f2ae5e017
@ -38,6 +38,12 @@ pinterest_url:
|
||||
slack_url:
|
||||
twitter_url: https://twitter.com/ewpratten
|
||||
|
||||
# Collections data
|
||||
collections:
|
||||
my_projects:
|
||||
output: true
|
||||
permalink: /my-projects/:title
|
||||
|
||||
# build settings
|
||||
markdown: kramdown
|
||||
kramdown:
|
||||
|
@ -1,18 +0,0 @@
|
||||
[
|
||||
|
||||
{
|
||||
"name":"ThriftyField",
|
||||
"url":"https://github.com/frc5024/ThriftyField",
|
||||
"pi3d":true
|
||||
},
|
||||
{
|
||||
"name":"DevDNS",
|
||||
"url":"https://github.com/Ewpratten/devDNS",
|
||||
"pi3d":true
|
||||
},
|
||||
{
|
||||
"name":"DeepSpace",
|
||||
"url":"https://github.com/frc5024/DeepSpace",
|
||||
"pi3d":false
|
||||
}
|
||||
]
|
@ -1,13 +0,0 @@
|
||||
<section id="one" class="tiles">
|
||||
{% for page in site.pages limit:site.tiles-count %} {% if page.source == 'projects' and page.show_tile != false %}
|
||||
<article>
|
||||
<span class="image">
|
||||
<img src="{{ page.image }}" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="{{ page.url | relative_url }}" class="link">{{ page.title }}</a></h3>
|
||||
<p>{{ page.description }}</p>
|
||||
</header>
|
||||
</article>
|
||||
{% endif %} {% endfor %}
|
||||
</section>
|
@ -40,8 +40,8 @@
|
||||
</header>
|
||||
|
||||
<ul>
|
||||
{% for project in site.data.projects %}
|
||||
<li><h3><a href="{{ project.url | relative_url }}" class="link" >{{ project.name }} {% if project.pi3d %} [PI3D] {% endif %}</a></h3></li>
|
||||
{% for project in site.my_projects limit:3%}
|
||||
<li><h3><a href="/my-projects/{{ project.slug }}" class="link" >{{ project.slug }} {{ project.tag }}</a></h3></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
|
39
_layouts/project.html
Normal file
39
_layouts/project.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
{% include head.html %}
|
||||
|
||||
<body>
|
||||
|
||||
{% include header.html %}
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>{{ page.slug }}</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Project {{page.tag}}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<p>{{ content }}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
|
||||
{% include footer.html %}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
12
_my_projects/1-ThriftyField.md
Normal file
12
_my_projects/1-ThriftyField.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
slug: ThriftyField
|
||||
tag: "[PI3D]"
|
||||
layout: project
|
||||
---
|
||||
|
||||
ThriftyField is an open source alternative to the closed source FRC Field Management System (FMS).
|
||||
The goal of ThriftyField is to provide an easy way to manage the states of many robots at once just like the real fields to, but only with a small amount of inexpensive equipment. ThriftyField can also keep track of scores entered on tablets via the web application and can generate a near real-time audience view just like an official event.
|
||||
|
||||
## Links
|
||||
- [GitHub](https://github.com/frc5024/ThriftyField)
|
||||
- [Twitter Anouncement](https://twitter.com/FRC5024/status/1149793415288315905)
|
12
_my_projects/2-DevDNS.md
Normal file
12
_my_projects/2-DevDNS.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
slug: DevDNS
|
||||
tag: "[PI3D]"
|
||||
layout: project
|
||||
---
|
||||
|
||||
DevDNS is a [devRant](https://devrant.com) bot for resolving DNS queries send via devRant's comments system.
|
||||
|
||||
## Links
|
||||
- [GitHub](https://github.com/Ewpratten/devDNS)
|
||||
- [Announcement](https://devrant.com/collabs/2163502)
|
||||
- [devRant Profile](https://devrant.com/users/devDNS)
|
12
_my_projects/3-DeepSpace.md
Normal file
12
_my_projects/3-DeepSpace.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
slug: DeepSpace
|
||||
tag: ""
|
||||
layout: project
|
||||
---
|
||||
|
||||
The codebase behind [Raider Robotics](https://www.thebluealliance.com/team/5024)' 2019 competition season robot. Developed by the [5024 Programming team](https://frc5024.github.io/), lead by myself and [Sam Lownie](https://github.com/slownie).
|
||||
|
||||
## Links
|
||||
- [GitHub](https://github.com/frc5024/DeepSpace)
|
||||
- [Documentation](https://frc5024.github.io/webdocs/#/docs/robots/HATCHfield)
|
||||
- [Robot Reveal](https://www.youtube.com/watch?v=jOMny7rGcmc)
|
11
_my_projects/drBot.md
Normal file
11
_my_projects/drBot.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
slug: drBot
|
||||
tag: "[PI3D]"
|
||||
layout: project
|
||||
---
|
||||
|
||||
A Python3 library for easily building devRant bots. Anyone can build a bot by simply extending a class, and logging in.
|
||||
|
||||
## Links
|
||||
- [GitHub](https://github.com/Ewpratten/drbot)
|
||||
- [PYPI](https://pypi.org/project/drbot/)
|
@ -1,13 +0,0 @@
|
||||
---
|
||||
layout: post
|
||||
title: "Experimenting with video content"
|
||||
description: "I am \"That nerd on social media\" "
|
||||
date: 2019-07-08 21:26:00
|
||||
categories: random
|
||||
---
|
||||
|
||||
Here is a quick post. Now that it is summer and I have more free time than I should, Im going to be experimenting with posting videos of my projects on TikTok. These are things that are too short to post on youtube, and too random to post on twitter.
|
||||
|
||||
If Byte actually got released when it was supposed to, I would be using it instead.
|
||||
|
||||
Feel free to check out my account, [@evanpratten](https://www.tiktok.com/@evanpratten)
|
@ -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://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-07-09T10:39:02-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">Scraping FRC team’s GitHub accounts to gather large amounts of data</title><link href="http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub.html" rel="alternate" type="text/html" title="Scraping FRC team's GitHub accounts to gather large amounts of data" /><published>2019-07-06T11:08:00-04:00</published><updated>2019-07-06T11:08:00-04:00</updated><id>http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub</id><content type="html" xml:base="http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub.html"><p>I was curious about the most used languages for FRC, so I build a Python script to find out what they where.</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-07-13T14:37:15-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">Scraping FRC team’s GitHub accounts to gather large amounts of data</title><link href="http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub.html" rel="alternate" type="text/html" title="Scraping FRC team's GitHub accounts to gather large amounts of data" /><published>2019-07-06T11:08:00-04:00</published><updated>2019-07-06T11:08:00-04:00</updated><id>http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub</id><content type="html" xml:base="http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub.html"><p>I was curious about the most used languages for FRC, so I build a Python script to find out what they where.</p>
|
||||
|
||||
<h2 id="some-basic-data">Some basic data</h2>
|
||||
<p>Before we get to the heavy work done by my script, let’s start with some general data.</p>
|
||||
|
@ -106,11 +106,11 @@
|
||||
|
||||
<ul>
|
||||
|
||||
<li><h3><a href="https://github.com/frc5024/ThriftyField" class="link" >ThriftyField [PI3D] </a></h3></li>
|
||||
<li><h3><a href="/my-projects/ThriftyField" class="link" >ThriftyField [PI3D]</a></h3></li>
|
||||
|
||||
<li><h3><a href="https://github.com/Ewpratten/devDNS" class="link" >DevDNS [PI3D] </a></h3></li>
|
||||
<li><h3><a href="/my-projects/DevDNS" class="link" >DevDNS [PI3D]</a></h3></li>
|
||||
|
||||
<li><h3><a href="https://github.com/frc5024/DeepSpace" class="link" >DeepSpace </a></h3></li>
|
||||
<li><h3><a href="/my-projects/DeepSpace" class="link" >DeepSpace </a></h3></li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
156
_site/my-projects/DeepSpace.html
Normal file
156
_site/my-projects/DeepSpace.html
Normal file
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<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" />
|
||||
<!-- <link rel="stylesheet" href="/assets/css/custom.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]-->
|
||||
|
||||
<!-- Syntax highlight -->
|
||||
<link rel="stylesheet" href="/assets/css/vs.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Wrapper -->
|
||||
<div id="wrapper">
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<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>
|
||||
</header>
|
||||
|
||||
<!-- Menu -->
|
||||
<!-- <nav id="menu">
|
||||
<ul class="links">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0: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> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>DeepSpace</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Project </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<p><p>The codebase behind <a href="https://www.thebluealliance.com/team/5024">Raider Robotics</a>’ 2019 competition season robot. Developed by the <a href="https://frc5024.github.io/">5024 Programming team</a>, lead by myself and <a href="https://github.com/slownie">Sam Lownie</a>.</p>
|
||||
|
||||
<h2 id="links">Links</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/frc5024/DeepSpace">GitHub</a></li>
|
||||
<li><a href="https://frc5024.github.io/webdocs/#/docs/robots/HATCHfield">Documentation</a></li>
|
||||
<li><a href="https://www.youtube.com/watch?v=jOMny7rGcmc">Robot Reveal</a></li>
|
||||
</ul>
|
||||
</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>© Evan Pratten</li>
|
||||
<li>Design based from: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<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>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-74118570-2');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
156
_site/my-projects/DevDNS.html
Normal file
156
_site/my-projects/DevDNS.html
Normal file
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<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" />
|
||||
<!-- <link rel="stylesheet" href="/assets/css/custom.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]-->
|
||||
|
||||
<!-- Syntax highlight -->
|
||||
<link rel="stylesheet" href="/assets/css/vs.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Wrapper -->
|
||||
<div id="wrapper">
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<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>
|
||||
</header>
|
||||
|
||||
<!-- Menu -->
|
||||
<!-- <nav id="menu">
|
||||
<ul class="links">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0: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> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>DevDNS</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Project [PI3D]</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<p><p>DevDNS is a <a href="https://devrant.com">devRant</a> bot for resolving DNS queries send via devRant’s comments system.</p>
|
||||
|
||||
<h2 id="links">Links</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/Ewpratten/devDNS">GitHub</a></li>
|
||||
<li><a href="https://devrant.com/collabs/2163502">Announcement</a></li>
|
||||
<li><a href="https://devrant.com/users/devDNS">devRant Profile</a></li>
|
||||
</ul>
|
||||
</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>© Evan Pratten</li>
|
||||
<li>Design based from: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<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>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-74118570-2');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
156
_site/my-projects/ThriftyField.html
Normal file
156
_site/my-projects/ThriftyField.html
Normal file
@ -0,0 +1,156 @@
|
||||
<!DOCTYPE html>
|
||||
<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" />
|
||||
<!-- <link rel="stylesheet" href="/assets/css/custom.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]-->
|
||||
|
||||
<!-- Syntax highlight -->
|
||||
<link rel="stylesheet" href="/assets/css/vs.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Wrapper -->
|
||||
<div id="wrapper">
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<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>
|
||||
</header>
|
||||
|
||||
<!-- Menu -->
|
||||
<!-- <nav id="menu">
|
||||
<ul class="links">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0: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> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>ThriftyField</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Project [PI3D]</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<p><p>ThriftyField is an open source alternative to the closed source FRC Field Management System (FMS).
|
||||
The goal of ThriftyField is to provide an easy way to manage the states of many robots at once just like the real fields to, but only with a small amount of inexpensive equipment. ThriftyField can also keep track of scores entered on tablets via the web application and can generate a near real-time audience view just like an official event.</p>
|
||||
|
||||
<h2 id="links">Links</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/frc5024/ThriftyField">GitHub</a></li>
|
||||
<li><a href="https://twitter.com/FRC5024/status/1149793415288315905">Twitter Anouncement</a></li>
|
||||
</ul>
|
||||
</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>© Evan Pratten</li>
|
||||
<li>Design based from: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<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>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-74118570-2');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
155
_site/my-projects/drBot.html
Normal file
155
_site/my-projects/drBot.html
Normal file
@ -0,0 +1,155 @@
|
||||
<!DOCTYPE html>
|
||||
<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" />
|
||||
<!-- <link rel="stylesheet" href="/assets/css/custom.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]-->
|
||||
|
||||
<!-- Syntax highlight -->
|
||||
<link rel="stylesheet" href="/assets/css/vs.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Wrapper -->
|
||||
<div id="wrapper">
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header" >
|
||||
<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>
|
||||
</header>
|
||||
|
||||
<!-- Menu -->
|
||||
<!-- <nav id="menu">
|
||||
<ul class="links">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0:4000//">Home</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="http://0.0.0.0: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> -->
|
||||
|
||||
<section id="banner" class="major" style="height:40vh">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h1>drBot</h1>
|
||||
</header>
|
||||
<div class="content">
|
||||
<p >Project [PI3D]</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Main -->
|
||||
<div id="main" class="alt">
|
||||
|
||||
<!-- One -->
|
||||
<section id="one">
|
||||
<div class="inner">
|
||||
<p><p>A Python3 library for easily building devRant bots. Anyone can build a bot by simply extending a class, and logging in.</p>
|
||||
|
||||
<h2 id="links">Links</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/Ewpratten/drbot">GitHub</a></li>
|
||||
<li><a href="https://pypi.org/project/drbot/">PYPI</a></li>
|
||||
</ul>
|
||||
</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>© Evan Pratten</li>
|
||||
<li>Design based from: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<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>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-74118570-2');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user