junikimm717
4 years ago
7 changed files with 146 additions and 27 deletions
-
4README.md
-
4main.py
-
35templates/achievements.html
-
8templates/base.html
-
44templates/index.html
-
74templates/projects.html
-
4templates/school.html
@ -1,3 +1,5 @@ |
|||||
# Personal Website |
# Personal Website |
||||
|
|
||||
Made with flask and Bootstrap CSS. |
|
||||
|
Personal Website. Located at ![Link](https://junickim.me) |
||||
|
|
||||
|
Made with Flask and Bootstrap CSS. |
@ -0,0 +1,74 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
|
||||
|
{% block content %} |
||||
|
<div class="container-fluid"> |
||||
|
<div class="row"> |
||||
|
<h1> Projects </h1> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<p> |
||||
|
Although modest, below is a collection of notable projects that |
||||
|
I have done: |
||||
|
</p> |
||||
|
</div> |
||||
|
<h2> Websites </h2> |
||||
|
<div class="row"> |
||||
|
<div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px"> |
||||
|
<a href="https://github.com/junikimm717/OLA11-Final-Project" target="new"> |
||||
|
<h2 class="text-light"> |
||||
|
Latin Final Project |
||||
|
</h2> |
||||
|
</a> |
||||
|
<p> |
||||
|
This was my first venture into making a website with a real |
||||
|
database. After seeing SQLite crash and burn, I switched over |
||||
|
to using MongoDB as my DBMS. |
||||
|
|
||||
|
In addition to this, I also implemented my own rudimentary |
||||
|
package manager in bash to obtain nouns and verbs from a |
||||
|
mirror. |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px"> |
||||
|
<a href="https://github.com/junikimm717/OMSB9-Final-Project" target="new"> |
||||
|
<h2 class="text-light"> |
||||
|
OMSB9 Final Project |
||||
|
</h2> |
||||
|
</a> |
||||
|
<p> |
||||
|
I created a set of scripts to locally run a PHP program and |
||||
|
parse the logs that it generated to run statistical tests on. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
<h2> Scripts </h2> |
||||
|
<div class="row"> |
||||
|
<div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px"> |
||||
|
<a href="https://github.com/junikimm717/yacoh" target="new"> |
||||
|
<h2 class="text-light"> |
||||
|
Yet Another Competitive Programming Helper |
||||
|
</h2> |
||||
|
</a> |
||||
|
<p> |
||||
|
Yet Another Competitive Programming Helper is a series of |
||||
|
scripts designed to aid one in initializing a testing |
||||
|
environment for competitive programming contests, as well as a |
||||
|
server for <a |
||||
|
href="https://github.com/jmerle/competitive-companion"> |
||||
|
Competitive Companion </a>. |
||||
|
</p> |
||||
|
</div> |
||||
|
<div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px"> |
||||
|
<a href="https://github.com/junikimm717/mktex" target="new"> |
||||
|
<h2 class="text-light"> |
||||
|
MkTex |
||||
|
</h2> |
||||
|
</a> |
||||
|
<p> |
||||
|
This is a series of scripts designed to automate the generating |
||||
|
of LATEX or Markdown templates for the schoolwork that I have. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
{% endblock %} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue