2023-05-25 13:29:51 +00:00
|
|
|
import { PersonalData } from "./PersonalDataTypes";
|
|
|
|
|
|
|
|
export const personalData: PersonalData = {
|
2023-05-26 18:44:44 +00:00
|
|
|
updatedDate: '2023-05-26',
|
2023-05-25 13:29:51 +00:00
|
|
|
name: "David Hrdina Němeček",
|
|
|
|
brief: "Software developer, people manager.",
|
|
|
|
|
2023-05-25 19:01:22 +00:00
|
|
|
contacts: [
|
|
|
|
{icon: 'browser-firefox', text: 'www.dejvino.cz'},
|
|
|
|
{icon: 'envelope-at', text: 'explosive@dejvino.cz'},
|
2023-05-26 03:43:18 +00:00
|
|
|
{icon: 'git', text: 'https://git.dejvino.cz'},
|
|
|
|
{icon: 'telephone', text: '+420 111 222 333'},
|
|
|
|
{icon: 'geo-alt', text: 'Brno, Czechia'}
|
2023-05-25 19:01:22 +00:00
|
|
|
],
|
2023-05-25 13:29:51 +00:00
|
|
|
jobs: {
|
|
|
|
current: {
|
|
|
|
position: 'Janitor',
|
|
|
|
company: 'Cleaners Limited',
|
|
|
|
timerange: '2022 - present',
|
|
|
|
description: 'Cleanup duty 24/7.',
|
|
|
|
},
|
|
|
|
previous: [
|
|
|
|
{
|
|
|
|
position: 'CEO',
|
|
|
|
company: 'CryptoDancers',
|
|
|
|
timerange: '2019 - 2022',
|
|
|
|
description: 'Revolutionizing the crypto world.',
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2023-05-26 03:43:18 +00:00
|
|
|
education: {
|
|
|
|
previous: [
|
|
|
|
{
|
|
|
|
position: 'Information Technology (unfinished)',
|
|
|
|
company: 'University of Benimoto',
|
|
|
|
timerange: '2010 - 2017',
|
|
|
|
description: '',
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2023-05-25 13:29:51 +00:00
|
|
|
skills: {
|
|
|
|
primary: ['Java', 'TypeScript', 'JavaScript'],
|
|
|
|
secondary: ['Kotlin', 'Go'],
|
2023-05-26 03:49:37 +00:00
|
|
|
languages: ['Czech (native)', 'English (proficient)', 'German (elementary)'],
|
2023-05-25 13:29:51 +00:00
|
|
|
others: ['Driver\'s license (B)']
|
|
|
|
},
|
|
|
|
interests: ['Guitars and Heavy Metal', 'Mazda MX-5', 'DIY electronics'],
|
|
|
|
};
|