diff --git a/_data/downloads.json b/_data/downloads.json new file mode 100644 index 0000000..18dd7d9 --- /dev/null +++ b/_data/downloads.json @@ -0,0 +1,14 @@ +[ + { + "title": "My client-side Minecraft modpack", + "subtitle": "For Minecraft 1.16.2 with Fabric. Can cross-play to other mc versions using runtime network protocol translation", + "date": "2020-09-17", + "src": "https://ewpratten.keybase.pub/minecraft-modpacks/1.16-client-side-modpack-v1.zip" + }, + { + "title": "CMD.bmp", + "subtitle": "A batch script embedded in a bitmap for bypassing CMD.exe restrictions on school-issued computers", + "date": "2018-03-17", + "src": "https://ewpratten.keybase.pub/CommandPrompt.bmp?dl=1" + } +] \ No newline at end of file diff --git a/_data/projects.json b/_data/projects.json index 6740e5d..2c46374 100644 --- a/_data/projects.json +++ b/_data/projects.json @@ -118,6 +118,26 @@ "img_src": "/assets/images/projects/ultralight.jp2" } }, + { + "title": "Not Enough Reviews", + "description": "Not Enough Reviews (NER) is a GitHub frontend webapp I built to let me browse discussions and changes in a visual style I like. This project was inspired by old text-based software mailing lists, and made more modern with a nice touch of CSS.", + "text_buttons": [ + { + "text": "Open App", + "url": "https://ner.retrylife.ca", + "color": "primary" + } + ], + "icon_buttons": [ + { + "icon": "fab fa-github", + "url": "https://github.com/Ewpratten/ner" + } + ], + "hero": { + "img_src": "/assets/images/projects/ner-search.jp2" + } + }, { "title": "SmallTools", "description": "SmallTools is a collection of programs and tools that are too small to get their own GitHub repository. I mainly use these as a learning tool for trying out new languages, libraries, and ideas.", diff --git a/_includes/nav.html b/_includes/nav.html index 9b7c34f..2d51c41 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -10,8 +10,8 @@ diff --git a/assets/images/projects/ner-search.jp2 b/assets/images/projects/ner-search.jp2 new file mode 100644 index 0000000..23e25d1 Binary files /dev/null and b/assets/images/projects/ner-search.jp2 differ diff --git a/assets/images/projects/ner-search.png b/assets/images/projects/ner-search.png new file mode 100644 index 0000000..85c5a3b Binary files /dev/null and b/assets/images/projects/ner-search.png differ diff --git a/papers.md b/downloads.md similarity index 60% rename from papers.md rename to downloads.md index 3efd0ab..f8fcb0e 100644 --- a/papers.md +++ b/downloads.md @@ -1,37 +1,40 @@ --- -title: My Papers +title: Downloads layout: page header_red: true backing_img: /assets/images/innovation__monochromatic.svg backing_scalar: "height:90%;" --- +## Files + +Here are links to various downloadable files + +
+ + {% for file in site.data.downloads %} + + +
+
{{file.title}}
+ {{file.date}} +
+

{{file.subtitle}}

+
+ + {% endfor %} +
+--- + + +## Papers + I have recently started publishing some small papers I have written. As of now, these are mostly from presentations I have given, or are from my school notes.
- {% assign i = 0 %} {% for paper in site.papers %} - {% if i == 0 %} - -
-
-
{{paper.title}}
-

{{paper.subtitle}}

-

- {% for author in paper.authors %} - {{author}} - {% endfor %}

-
- {{paper.date}} -
-
- - - {% else %} - -
{{paper.title}}
@@ -44,7 +47,5 @@ I have recently started publishing some small papers I have written. As of now, {% endfor %}

- {% endif %} - {% assign i = i | plus:1 %} {% endfor %}
\ No newline at end of file