You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.8 KiB
74 lines
2.8 KiB
{% 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 %}
|