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.

71 lines
2.7 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="container-fluid">
  4. <div class="row">
  5. <h1> Projects </h1>
  6. </div>
  7. <div class="row">
  8. <p>
  9. Although modest, below is a collection of notable projects that
  10. I have done:
  11. </p>
  12. </div>
  13. <h2> Websites </h2>
  14. <div class="row">
  15. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  16. <a href="https://github.com/junikimm717/OLA11-Final-Project" target="new">
  17. <h2 class="text-light">
  18. Latin Final Project
  19. </h2>
  20. </a>
  21. <p>
  22. The project contains a MongoDB client (intended to be run
  23. server-side) which allows fast retrieval of nouns and
  24. verbs that need to be declined/conjugated. It also has a
  25. package manager written in bash to retrieve vocabulary from a
  26. mirror.
  27. </p>
  28. </div>
  29. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  30. <a href="https://github.com/junikimm717/OMSB9-Final-Project" target="new">
  31. <h2 class="text-light">
  32. Methodology of Science: Biology Final Project
  33. </h2>
  34. </a>
  35. <p>
  36. I created a set of scripts to locally run a PHP program and
  37. parse the logs that it generated to run statistical tests on.
  38. </p>
  39. </div>
  40. </div>
  41. <h2> Scripts </h2>
  42. <div class="row">
  43. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  44. <a href="https://git.junickim.me/junikimm717/rems" target="new">
  45. <h2 class="text-light">
  46. Rems
  47. </h2>
  48. </a>
  49. <p>
  50. Rems is a python script that is designed to help one classify
  51. reminders and tasks in levels of urgency. Weekly reminders can
  52. also be created which allow the various states of urgency to
  53. cycle through each day of the week. Functionality to quickly
  54. remove past reminders is also present.
  55. </p>
  56. </div>
  57. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  58. <a href="https://github.com/junikimm717/mktex" target="new">
  59. <h2 class="text-light">
  60. MkTex
  61. </h2>
  62. </a>
  63. <p>
  64. This is a script designed to automate the generating of LATEX
  65. or Markdown templates for school assignments.
  66. </p>
  67. </div>
  68. </div>
  69. </div>
  70. {% endblock %}