From 0f2ae5e0173b7d450e80ba9231b6150c0d9d5285 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 13 Jul 2019 14:38:09 -0400 Subject: [PATCH] Changed project rendering to use landing pages --- _config.yml | 6 ++ _data/projects.json | 18 ---- _includes/projects.html | 13 --- _layouts/home.html | 4 +- _layouts/project.html | 39 +++++++ _my_projects/1-ThriftyField.md | 12 +++ _my_projects/2-DevDNS.md | 12 +++ _my_projects/3-DeepSpace.md | 12 +++ _my_projects/drBot.md | 11 ++ _posts/WIP-2019-07-08-TikTok.md | 13 --- _site/feed.xml | 2 +- _site/index.html | 6 +- _site/my-projects/DeepSpace.html | 156 ++++++++++++++++++++++++++++ _site/my-projects/DevDNS.html | 156 ++++++++++++++++++++++++++++ _site/my-projects/ThriftyField.html | 156 ++++++++++++++++++++++++++++ _site/my-projects/drBot.html | 155 +++++++++++++++++++++++++++ 16 files changed, 721 insertions(+), 50 deletions(-) delete mode 100644 _data/projects.json delete mode 100644 _includes/projects.html create mode 100644 _layouts/project.html create mode 100644 _my_projects/1-ThriftyField.md create mode 100644 _my_projects/2-DevDNS.md create mode 100644 _my_projects/3-DeepSpace.md create mode 100644 _my_projects/drBot.md delete mode 100644 _posts/WIP-2019-07-08-TikTok.md create mode 100644 _site/my-projects/DeepSpace.html create mode 100644 _site/my-projects/DevDNS.html create mode 100644 _site/my-projects/ThriftyField.html create mode 100644 _site/my-projects/drBot.html diff --git a/_config.yml b/_config.yml index bb22ad6..6fcb069 100644 --- a/_config.yml +++ b/_config.yml @@ -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: diff --git a/_data/projects.json b/_data/projects.json deleted file mode 100644 index 7f5716c..0000000 --- a/_data/projects.json +++ /dev/null @@ -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 - } -] \ No newline at end of file diff --git a/_includes/projects.html b/_includes/projects.html deleted file mode 100644 index 121b207..0000000 --- a/_includes/projects.html +++ /dev/null @@ -1,13 +0,0 @@ -
- {% for page in site.pages limit:site.tiles-count %} {% if page.source == 'projects' and page.show_tile != false %} - - {% endif %} {% endfor %} -
\ No newline at end of file diff --git a/_layouts/home.html b/_layouts/home.html index b71f3e3..d80b3eb 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -40,8 +40,8 @@ diff --git a/_layouts/project.html b/_layouts/project.html new file mode 100644 index 0000000..90ba9c0 --- /dev/null +++ b/_layouts/project.html @@ -0,0 +1,39 @@ + + + +{% include head.html %} + + + + {% include header.html %} + + + + + +
+ + +
+
+

{{ content }}

+
+
+ +
+ + {% include footer.html %} + + + + \ No newline at end of file diff --git a/_my_projects/1-ThriftyField.md b/_my_projects/1-ThriftyField.md new file mode 100644 index 0000000..04277a9 --- /dev/null +++ b/_my_projects/1-ThriftyField.md @@ -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) diff --git a/_my_projects/2-DevDNS.md b/_my_projects/2-DevDNS.md new file mode 100644 index 0000000..61a4b59 --- /dev/null +++ b/_my_projects/2-DevDNS.md @@ -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) \ No newline at end of file diff --git a/_my_projects/3-DeepSpace.md b/_my_projects/3-DeepSpace.md new file mode 100644 index 0000000..a2f78b2 --- /dev/null +++ b/_my_projects/3-DeepSpace.md @@ -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) \ No newline at end of file diff --git a/_my_projects/drBot.md b/_my_projects/drBot.md new file mode 100644 index 0000000..226d5a9 --- /dev/null +++ b/_my_projects/drBot.md @@ -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/) \ No newline at end of file diff --git a/_posts/WIP-2019-07-08-TikTok.md b/_posts/WIP-2019-07-08-TikTok.md deleted file mode 100644 index 071cb9f..0000000 --- a/_posts/WIP-2019-07-08-TikTok.md +++ /dev/null @@ -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) \ No newline at end of file diff --git a/_site/feed.xml b/_site/feed.xml index 61efb93..590b7e3 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -1,4 +1,4 @@ -Jekyll2019-07-09T10:39:02-04:00http://0.0.0.0:4000/feed.xmlEvan PrattenComputer wizard, student, <a href="https://github.com/frc5024">@frc5024</a> programming team lead, and radio enthusiast.Scraping FRC team’s GitHub accounts to gather large amounts of data2019-07-06T11:08:00-04:002019-07-06T11:08:00-04:00http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub<p>I was curious about the most used languages for FRC, so I build a Python script to find out what they where.</p> +Jekyll2019-07-13T14:37:15-04:00http://0.0.0.0:4000/feed.xmlEvan PrattenComputer wizard, student, <a href="https://github.com/frc5024">@frc5024</a> programming team lead, and radio enthusiast.Scraping FRC team’s GitHub accounts to gather large amounts of data2019-07-06T11:08:00-04:002019-07-06T11:08:00-04:00http://0.0.0.0:4000/frc/2019/07/06/ScrapingFRCGithub<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> diff --git a/_site/index.html b/_site/index.html index e9e1695..01a9824 100644 --- a/_site/index.html +++ b/_site/index.html @@ -106,11 +106,11 @@ diff --git a/_site/my-projects/DeepSpace.html b/_site/my-projects/DeepSpace.html new file mode 100644 index 0000000..bdfaced --- /dev/null +++ b/_site/my-projects/DeepSpace.html @@ -0,0 +1,156 @@ + + + + + Evan Pratten + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + +
+
+

The codebase behind Raider Robotics’ 2019 competition season robot. Developed by the 5024 Programming team, lead by myself and Sam Lownie.

+ + + +

+
+
+ +
+ + + + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_site/my-projects/DevDNS.html b/_site/my-projects/DevDNS.html new file mode 100644 index 0000000..61192ef --- /dev/null +++ b/_site/my-projects/DevDNS.html @@ -0,0 +1,156 @@ + + + + + Evan Pratten + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + +
+
+

DevDNS is a devRant bot for resolving DNS queries send via devRant’s comments system.

+ + + +

+
+
+ +
+ + + + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_site/my-projects/ThriftyField.html b/_site/my-projects/ThriftyField.html new file mode 100644 index 0000000..6d75f3f --- /dev/null +++ b/_site/my-projects/ThriftyField.html @@ -0,0 +1,156 @@ + + + + + Evan Pratten + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + +
+
+

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.

+ + + +

+
+
+ +
+ + + + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_site/my-projects/drBot.html b/_site/my-projects/drBot.html new file mode 100644 index 0000000..15d10dd --- /dev/null +++ b/_site/my-projects/drBot.html @@ -0,0 +1,155 @@ + + + + + Evan Pratten + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + +
+
+

A Python3 library for easily building devRant bots. Anyone can build a bot by simply extending a class, and logging in.

+ + + +

+
+
+ +
+ + + + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file