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: azure:
name: Azure name: Azure
fore: '#EEEEEE' fore: '#EEEEEE'
back: '#0962B0' back: 'linear-gradient(-45deg, #2892DF, #3CCBF4)'
link: https://azure.microsoft.com/en-us/ link: https://azure.microsoft.com/en-us/
mariadb: mariadb:

View File

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

View File

@@ -1,6 +1,6 @@
--- ---
title: Experiences 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 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> <head>
<title>Resume of Maxim Voldman Hutz</title> <title>Resume of Maxim Voldman Hutz</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <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. --> <!-- Header metadata. -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

View File

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

View File

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

View File

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