diff --git a/_data/techs.yml b/_data/techs.yml index f9728d0..1628180 100644 --- a/_data/techs.yml +++ b/_data/techs.yml @@ -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: diff --git a/_data/work.yml b/_data/work.yml index cbcb91b..5de8cf6 100644 --- a/_data/work.yml +++ b/_data/work.yml @@ -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 online COVID-19 classifier. With + Malung, you can detect COVID-19 in lung scans using machine learning, and + manage patient data on the cloud.

Doubled as the backend / DevOps lead + 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 site’s UI with Figma, focusing on responsive design. #*----------------------------------------------------------------------------*# diff --git a/experiences.html b/experiences.html index 6402293..9d8436d 100644 --- a/experiences.html +++ b/experiences.html @@ -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 --- diff --git a/res/.DS_Store b/res/.DS_Store index 7e79c09..4271d53 100644 Binary files a/res/.DS_Store and b/res/.DS_Store differ diff --git a/res/projects/malung.png b/res/projects/malung.png new file mode 100644 index 0000000..5ba49b5 Binary files /dev/null and b/res/projects/malung.png differ diff --git a/resume.html b/resume.html index 2c473b3..380d89c 100644 --- a/resume.html +++ b/resume.html @@ -3,7 +3,7 @@ Resume of Maxim Voldman Hutz - + diff --git a/styles/experience.css b/styles/experience.css index 0511c44..20799be 100644 --- a/styles/experience.css +++ b/styles/experience.css @@ -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; } diff --git a/styles/global.css b/styles/global.css index 319bf88..43bdf0f 100644 --- a/styles/global.css +++ b/styles/global.css @@ -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) } diff --git a/styles/tech.scss b/styles/tech.scss index c1ad712..79f033f 100644 --- a/styles/tech.scss +++ b/styles/tech.scss @@ -18,7 +18,7 @@ {% assign data = tech[1] %} .chip.{{id}} { - background-color: {{data.back}}; + background: {{data.back}}; color: {{data.fore}}; } {% endfor %} \ No newline at end of file