diff --git a/src/PersonalData.ts b/src/PersonalData.ts index 40c7b75..ee296b7 100644 --- a/src/PersonalData.ts +++ b/src/PersonalData.ts @@ -1,15 +1,18 @@ import { PersonalData } from "./PersonalDataTypes"; +// Icons: https://icons.getbootstrap.com/ + export const personalData: PersonalData = { - updatedDate: '2023-06-01', + updatedDate: '2023-07-26', name: "David Hrdina Němeček", - brief: "Software developer. Engineering lead & manager.", + brief: "Software developer. Engineering lead.", contacts: [ {icon: 'browser-firefox', text: 'www.dejvino.cz'}, {icon: 'envelope-at', text: 'explosive@dejvino.cz'}, {icon: 'git', text: 'https://git.dejvino.cz'}, + {icon: 'github', text: 'https://github.com/Dejvino'}, {icon: 'file-earmark-person', text: 'https://cv.dejvino.cz'}, {icon: 'file-earmark-pdf', text: 'https://cv.dejvino.cz/pdf'}, {icon: 'telephone', text: '+420 775 26 26 32'}, @@ -17,28 +20,28 @@ export const personalData: PersonalData = { ], jobs: { - current: { + current: [{ position: 'Senior Software Development Manager (UI Platform)', company: 'Oracle|NetSuite', timerange: '2022 - present', - description: `Engineering lead for multiple UI Platform teams. Development of core UI frameworks, components and tools used by the rest of the organization. - Leading a UI testing architecture group, supplemental product owner for this group.`, + description: `Engineering lead for multiple UI Platform teams who designed, developed and released a UI framework and tooling used by the rest of the organization. + Leader of a UI testing architecture group responsible for advising on a testing strategy across the UI Platform.`, tags: ['TypeScript', 'Preact', 'NodeJs', 'Oracle JET', 'Java', 'Git'] - }, + }], previous: [ { position: 'Software Development Manager (UI Platform)', company: 'Oracle|NetSuite', timerange: '2020 - 2022', - description: `Engineering lead for a UI Platform team. Development of UI components that formed a UI toolkit used by the rest of the organization. - Supplementing a product owner while bootstrapping a team.`, + description: `Engineering lead for a UI Platform team who developed components for a UI toolkit used by the rest of the organization. + Technical product owner while bootstrapping a team.`, tags: ['TypeScript', 'Preact', 'NodeJs', 'Oracle JET', 'Java', 'Git'] }, { position: 'Software Development Manager (ERP, Tax)', company: 'Oracle|NetSuite', timerange: '2017 - 2020', - description: 'Developer lead for ERP: Tax. Design and implementation of a pluggable Tax calculation engine. Coordination of multiple squads supporting both the legacy and the next-gen systems concurrently.', + description: 'Lead developer for ERP: Tax. Design and implementation of a pluggable Tax calculation engine. Coordination of multiple squads supporting both the legacy and the next-gen systems concurrently.', tags: ['Java', 'Oracle SQL', 'JavaScript', 'Perforce', 'Git', 'Software Architecture'] }, { @@ -53,7 +56,7 @@ export const personalData: PersonalData = { position: 'Software Engineer', company: 'Q2 Interactive', timerange: '2009 - 2013', - description: `Development and project leadership of multiple web applications: + description: `Development and project leadership of multiple web applications and services: - CRM system (PHP backend server, JavaScript frontend, Android client app), - Accounting web app (PHP, JavaScript), - e-commerce sites (Magento), @@ -64,12 +67,22 @@ export const personalData: PersonalData = { }, projects: { - current: { - position: `Personal projects`, - description: `Various hardware and software projects. Usually open sourced and published on [projects.dejvino.com](https://projects.dejvino.com) or [git.dejvino.cz](https://git.dejvino.cz). - These include video games, utilities, 3D models, retrofitting devices with embedded microcontrollers etc.`, - tags: ['Java', 'Python', 'C/C++', 'Embedded Software', 'OpenSCAD', 'TypeScript', 'Linux', 'Open Source', 'Git', 'Self-hosting'] - } + current: [ + { + position: `Open Source Contributor`, + description: `Code contributor to open source projects, shared on [github.com/Dejvino](https://github.com/Dejvino) and [git.dejvino.cz](https://git.dejvino.cz/dejvino). + E.g. SimpleMobileTools Android suite.`, + tags: ['Kotlin', 'Android', 'Python', 'Open Source', 'Git'] + }, + ], + previous: [ + { + position: `Personal projects`, + description: `Various hardware and software projects. Usually open sourced and published on [projects.dejvino.com](https://projects.dejvino.com) and [git.dejvino.cz](https://git.dejvino.cz/dejvino). + These include video games, utilities, 3D models, retrofitting devices with embedded microcontrollers etc.`, + tags: ['Java', 'Python', 'C/C++', 'Embedded Software', 'OpenSCAD', 'TypeScript', 'Linux', 'Open Source', 'Git', 'Self-hosting'] + }, + ] }, education: { @@ -95,8 +108,8 @@ export const personalData: PersonalData = { }, skills: { - primary: ['Java', 'TypeScript', 'JavaScript', 'Linux', 'Leadership'], - secondary: ['SQL', 'Kotlin', 'C/C++', 'NodeJs', 'Git', 'Preact', 'Embedded Software'], + primary: ['Kotlin', 'Java', 'TypeScript', 'Linux'], + secondary: ['Go', 'JavaScript', 'Oracle SQL', 'Git', 'React', 'Preact', 'Python'], languages: ['Czech (native)', 'English (proficient)', 'German (elementary)'], //others: ['Driver\'s license (B)'] }, diff --git a/src/PersonalDataTypes.ts b/src/PersonalDataTypes.ts index cd0a855..96564dc 100644 --- a/src/PersonalDataTypes.ts +++ b/src/PersonalDataTypes.ts @@ -12,13 +12,14 @@ export type Job = { } export type Jobs = { - current?: Job, + current?: Job[], previous?: Job[] } export type Education = Jobs; -export type Projects = Jobs; +export type Project = Job + export type Skills = { primary: string[], diff --git a/src/app/components/job/JobsAccordion.tsx b/src/app/components/job/JobsAccordion.tsx index 9a6879c..3a51717 100644 --- a/src/app/components/job/JobsAccordion.tsx +++ b/src/app/components/job/JobsAccordion.tsx @@ -43,8 +43,8 @@ export default function JobsAccordion(props: JobListProps) { const {jobs} = props const config = {...defaultProps, ...props} return ( - - {jobs.current && } + + {jobs.current?.map((job, index) => )} {jobs.previous?.map((job, index) => )} ) diff --git a/src/app/components/job/JobsCards.tsx b/src/app/components/job/JobsCards.tsx index 043d053..9a5185c 100644 --- a/src/app/components/job/JobsCards.tsx +++ b/src/app/components/job/JobsCards.tsx @@ -29,9 +29,11 @@ export default function JobsCards(props: JobListProps) { {jobs.current && ( - - + {jobs.current.map((job, index) => ( + + + ))} )}