Skip to content

Commit

Permalink
Merge pull request #3 from oofsauce/improved_assets
Browse files Browse the repository at this point in the history
Improved assets
  • Loading branch information
alanpq authored Apr 18, 2022
2 parents 0ca1777 + af22417 commit a0f8ea4
Show file tree
Hide file tree
Showing 42 changed files with 888 additions and 675 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,4 @@
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk


projects/*
**/*.rs.bk
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ path = "src/main.rs"
actix-web = "3"
actix-files = "0.4.0"
log = "0.4.11"
handlebars = { version = "3.5.1", features = ["dir_source"] }
simple_logger = "2.1.0"
handlebars = { version = "4", features = ["dir_source"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sass-rs = "0.2.1"
rsass = "0.23.4"
lazy_static = "1.4.0"
notify = "4.0.15"
yaml-rust = "0.4.5"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.48
FROM rust:slim-buster

WORKDIR /website
RUN chmod -R +rwx .
Expand Down
4 changes: 4 additions & 0 deletions awards/1_treeprot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
id: tree
title: CoderDojo Coolest Projects Competition
date: "2013"
body: Made a <a href="/projects/tree">game</a>, which won 1st place in the 'Games/Web Apps' category. The competition had 60 projects total across all categories that year.
4 changes: 4 additions & 0 deletions awards/2_aipo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
id: aipo
title: All Ireland Programming Olympiad (AIPO)
date: "2014"
body: 2nd place in the Junior Category at DCU
4 changes: 4 additions & 0 deletions awards/3_irlcpc1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
id: irlcpc1
title: Irish Collegiate Programming Contest (IrlCPC)
date: 2015 & 2014
body: Awarded 3rd place both times with my team of 3 in the Junior Category
4 changes: 4 additions & 0 deletions awards/4_btyse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
id: btyse
title: BT Young Scientist Exhibition
date: 01/2016
body: Created a <a href="/projects/hastyhop">Unity game</a> that won 3rd place in the 'Individual Junior Technology' category, as well as a special award from Broadcom MASTERS International, where I was brought to Phoenix, Arizona as an opportunity to meet other like minded students and observe the Intel International Science and Engineering Fair.
9 changes: 9 additions & 0 deletions awards/5_irlcpc2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
id: irlcpc2
title: Irish Collegiate Programming Contest (IrlCPC)
date: 03/2021
body: 1st place in a group of 3, out of a total of 31 teams. The competition lasted a total of 4 hours, where we solved the problems using Python for convenience.
links:
- href: http://acm.ucc.ie/irlcpc2020.html
name: Link to IrlCPC
- href: https://twitter.com/uccacm/status/1373392053258829824
name: Tweet with scoreboard
4 changes: 4 additions & 0 deletions awards/6_ieeextreme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
id: ieeextreme
title: IEEExtreme Programming Competition 15.0
date: 10/2021
body: Placed top 700 out of 5561 teams. The competition lasted a full 24 hours, with my 2 teammates and I participating for around 8 hours.
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ services:
- "8081:9090"
environment:
- "DEV=true"
- "PATH_ROOT=/website"
- "RUST_LOG=debug"
- "RUST_BACKTRACE=full"
volumes:
- .:/website
# volumes:
# - .:/website
# - type: bind
# source: ./.cargo/
# target: /root/.cargo/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
id: ascii-trace
category: main
title: ascii-trace
github: https://github.com/oofsauce/ascii-trace
description: "ASCII ray tracer written in Rust."
Expand Down
1 change: 1 addition & 0 deletions src/projects/101_website.yml → projects/101_website.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
id: website
category: main
title: website
github: https://github.com/oofsauce/website
url: https://alanp.me/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
id: hastyhop
category: archive
title: Hasty Hop
description: "Unity Game made for the BTYSTE."
body: "<p>Written in C#, released on the Apple App store in 2015, was available for ~3 years.</p>"
1 change: 1 addition & 0 deletions src/projects/104_tree.yml → projects/104_tree.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
id: tree
category: archive
title: Tree Protectors
description: "A small game made in 2013."
body: "<p>Written in GameMaker's scripting language GML, this game was made for the CoderDojo Coolest Projects Competition.</p>"
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
id: pitch-test
category: main
title: Interval Quiz
description: "Small project to learn the Web Audio API"
body: "<p>Served via a barebones express server, and all static files compiled with <a href='https://gulpjs.com/'>Gulp</a></p>"
Expand Down
7 changes: 7 additions & 0 deletions projects/categories.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
categories:
-
name: main
hidden: true
-
name: archive
blurb: really really old projects
1 change: 1 addition & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tab_spaces = 4
Loading

0 comments on commit a0f8ea4

Please sign in to comment.