From faad855e7e3ec2849feb3a9b22054e0f2a250d46 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 19 Apr 2020 09:55:00 -0400 Subject: [PATCH] Add events listing --- _data/events.json | 184 +++++++++++++++++++++++++++++++++++++++++++ _includes/nav.html | 1 + _layouts/events.html | 47 +++++++++++ about.md | 6 +- events.md | 3 + 5 files changed, 237 insertions(+), 4 deletions(-) create mode 100644 _data/events.json create mode 100644 _layouts/events.html create mode 100644 events.md diff --git a/_data/events.json b/_data/events.json new file mode 100644 index 0000000..bd226af --- /dev/null +++ b/_data/events.json @@ -0,0 +1,184 @@ +[ + { + "name": "Ludum Dare 46", + "upcoming":false, + "date": { + "start": "2020-04-17", + "end": "2020-04-20" + }, + "team": { + "yes": true, + "url":"https://github.com/rsninja722/LudumDare46" + }, + "url":"https://ldjam.com/events/ludum-dare/46", + "info":"Participant" + }, + { + "name": "FRC Humber Collage District Event", + "upcoming":false, + "date": { + "start": "2020-03-06", + "end": "2020-03-08" + }, + "team": { + "yes": true, + "url":"http://raiderrobotics.org" + }, + "url":"https://www.thebluealliance.com/event/2020onto3", + "info":"Finalists & Award winners" + }, + { + "name": "Canadian Computing Competition 2020", + "upcoming":false, + "date": { + "start": "2020-02-20", + "end": "2020-02-20" + }, + "team": { + "yes": false, + "url":"" + }, + "url":"https://www.cemc.uwaterloo.ca/contests/computing.html", + "info":"Participant" + }, + { + "name": "Google CTF 2019", + "upcoming":false, + "date": { + "start": "2019-06-22", + "end": "2019-06-23" + }, + "team": { + "yes": false, + "url":"" + }, + "url":"https://capturetheflag.withgoogle.com", + "info":"Participant" + }, + { + "name": "FRC District Championship 2019", + "upcoming":false, + "date": { + "start": "2019-04-10", + "end": "2019-04-13" + }, + "team": { + "yes": true, + "url":"http://raiderrobotics.org" + }, + "url":"https://www.thebluealliance.com/event/2019oncmp1", + "info":"Quarter-finalists & Award winners" + }, + { + "name": "FRC Western University District Event", + "upcoming":false, + "date": { + "start": "2019-04-05", + "end": "2019-04-06" + }, + "team": { + "yes": true, + "url":"http://raiderrobotics.org" + }, + "url":"https://www.thebluealliance.com/event/2019onlon", + "info":"Semi-finalists & Award winners" + }, + { + "name": "ECOO Programming Contest 2019", + "upcoming":false, + "date": { + "start": "2019-03-26", + "end": "2019-03-26" + }, + "team": { + "yes": false, + "url":"" + }, + "url":"https://ecoocs.org/", + "info":"Participant" + }, + { + "name": "FRC Ryerson University District Event", + "upcoming":false, + "date": { + "start": "2019-03-14", + "end": "2019-03-16" + }, + "team": { + "yes": true, + "url":"http://raiderrobotics.org" + }, + "url":"https://www.thebluealliance.com/event/2019onto1", + "info":"Quarter-finalists & Award winners" + }, + { + "name": "Canadian Computing Competition 2019", + "upcoming":false, + "date": { + "start": "2019-02-20", + "end": "2019-02-20" + }, + "team": { + "yes": false, + "url":"" + }, + "url":"https://www.cemc.uwaterloo.ca/contests/computing.html", + "info":"Participant" + }, + { + "name": "Google Foobar", + "upcoming":false, + "date": { + "start": "2018-09-09", + "end": "2018-09-11" + }, + "team": { + "yes": false, + "url":"" + }, + "url":"https://foobar.withgoogle.com/", + "info":"Completed all challenges" + }, + { + "name": "ECOO Programming Contest 2018", + "upcoming":false, + "date": { + "start": "2018-04-28", + "end": "2018-04-28" + }, + "team": { + "yes": false, + "url":"" + }, + "url":"https://ecoocs.org/", + "info":"Participant" + }, + { + "name": "FRC University of Waterloo District Event", + "upcoming":false, + "date": { + "start": "2018-03-22", + "end": "2018-03-24" + }, + "team": { + "yes": true, + "url":"http://raiderrobotics.org" + }, + "url":"https://www.thebluealliance.com/event/2018onwat", + "info":"Quarter-finalists & Award winners" + }, + { + "name": "FRC Georgian College District Event", + "upcoming":false, + "date": { + "start": "2018-03-02", + "end": "2018-03-04" + }, + "team": { + "yes": true, + "url":"http://raiderrobotics.org" + }, + "url":"https://www.thebluealliance.com/event/2018onbar", + "info":"Quarter-finalists & Award winners" + } +] \ No newline at end of file diff --git a/_includes/nav.html b/_includes/nav.html index ce2497b..c87d4c8 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -10,6 +10,7 @@ -## My social +## My socials I exist in various places around the internet. Mainly: - [Twitter](https://twitter.com/{{site.twitter_username}}) @@ -51,11 +51,9 @@ Currently, I use the following hardware: - Lenovo T480 - 16GB of RAM - 500GB Crucial SSD - - 1080p display - Ubuntu 18.04 minimal - Google Pixel 3a XL - Stock android - - HP 27es monitor ## My crypto addresses diff --git a/events.md b/events.md new file mode 100644 index 0000000..53d5c0d --- /dev/null +++ b/events.md @@ -0,0 +1,3 @@ +--- +layout: events +--- \ No newline at end of file