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

  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. This was my first venture into making a website with a real
  23. database. After seeing SQLite crash and burn, I switched over
  24. to using MongoDB as my DBMS.
  25. In addition to this, I also implemented my own rudimentary
  26. package manager in bash to obtain nouns and verbs from a
  27. mirror.
  28. </p>
  29. </div>
  30. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  31. <a href="https://github.com/junikimm717/OMSB9-Final-Project" target="new">
  32. <h2 class="text-light">
  33. OMSB9 Final Project
  34. </h2>
  35. </a>
  36. <p>
  37. I created a set of scripts to locally run a PHP program and
  38. parse the logs that it generated to run statistical tests on.
  39. </p>
  40. </div>
  41. </div>
  42. <h2> Scripts </h2>
  43. <div class="row">
  44. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  45. <a href="https://github.com/junikimm717/yacoh" target="new">
  46. <h2 class="text-light">
  47. Yet Another Competitive Programming Helper
  48. </h2>
  49. </a>
  50. <p>
  51. Yet Another Competitive Programming Helper is a series of
  52. scripts designed to aid one in initializing a testing
  53. environment for competitive programming contests, as well as a
  54. server for <a
  55. href="https://github.com/jmerle/competitive-companion">
  56. Competitive Companion </a>.
  57. </p>
  58. </div>
  59. <div class="col-md-5 m-1 text-light bg-primary" style="border-radius:25px">
  60. <a href="https://github.com/junikimm717/mktex" target="new">
  61. <h2 class="text-light">
  62. MkTex
  63. </h2>
  64. </a>
  65. <p>
  66. This is a series of scripts designed to automate the generating
  67. of LATEX or Markdown templates for the schoolwork that I have.
  68. </p>
  69. </div>
  70. </div>
  71. </div>
  72. {% endblock %}