FEAT: Added Malung info.

This commit is contained in:
MajorDroolz
2023-01-06 03:57:38 -05:00
parent 1452840240
commit 662bc0a2ed
9 changed files with 19 additions and 27 deletions

View File

@@ -31,7 +31,7 @@ docker:
azure:
name: Azure
fore: '#EEEEEE'
back: '#0962B0'
back: 'linear-gradient(-45deg, #2892DF, #3CCBF4)'
link: https://azure.microsoft.com/en-us/
mariadb:

View File

@@ -3,27 +3,24 @@ malung:
title: Malung
subtitle: COVID-19 Classifier
stack: [ html, css, js, php, docker, mariadb, azure ]
link: /404
color: yellow
link: https://github.com/RPI-ITWS/IntroTeam18
color: malung
image: /res/projects/malung.png
ready: true
description:
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the
1500s, when an unknown printer took a galley of type and scrambled it to
make a type specimen book. It has survived not only five centuries, but also
the leap into electronic typesetting, remaining essentially unchanged.
Led a team of 3 to create Malung, an <b>online COVID-19 classifier</b>. With
Malung, you can detect COVID-19 in lung scans using machine learning, and
<b>manage patient data on the cloud</b>. <br><br> Doubled as the <b>backend / DevOps lead</b>
during development, managing the site and its database.
outcomes:
- Lorem Ipsum is simply dummy text of the printing and typesetting industry.
- Lorem Ipsum has been the industry's standard dummy text ever since the
1500s, when an unknown printer took a galley of type and scrambled it to
make a type specimen book.
- It has survived not only five centuries, but also the leap into electronic
typesetting, remaining essentially unchanged.
- Hosted site through Microsoft Azure.
- Managed database with MariaDB; Containerized on Docker instance for local development.
- Built account system with PHP, which interfaced with frontend through backend API.
- Collaboratively designed sites UI with Figma, focusing on responsive design.
#*----------------------------------------------------------------------------*#

View File

@@ -1,6 +1,6 @@
---
title: Experiences
description: A list of past and current work and projects from Maxim Voldman Hutz.
description: A list of work and projects done by Maxim Voldman Hutz.
layout: default
---

BIN
res/.DS_Store vendored

Binary file not shown.

BIN
res/projects/malung.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 550 KiB

View File

@@ -3,7 +3,7 @@
<head>
<title>Resume of Maxim Voldman Hutz</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This page holds a preview of the resume of Maxim Voldman Hutz.">
<meta name="description" content="A preview of the resume of Maxim Voldman Hutz.">
<!-- Header metadata. -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

View File

@@ -13,12 +13,6 @@
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: justify;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
-o-hyphens: auto;
hyphens: auto;
}
#content {
@@ -56,7 +50,7 @@
#image-side {
flex: 1;
gap: 30px;
gap: 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
@@ -65,7 +59,7 @@
#stack {
display: flex;
gap: 20px;
gap: 10px;
flex-flow: row wrap;
}

View File

@@ -29,6 +29,7 @@
.green { --color: var(--green) }
.blue { --color: var(--blue) }
.white { --color: white }
.malung { --color: #F76F8E }
.flex-space, .flex, br { flex-grow: 1 }
.flex.dark { background-color: var(--dark) }

View File

@@ -18,7 +18,7 @@
{% assign data = tech[1] %}
.chip.{{id}} {
background-color: {{data.back}};
background: {{data.back}};
color: {{data.fore}};
}
{% endfor %}