Dejvino's Curriculum Vitae
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
1.5 KiB

  1. import { PersonalData } from "./PersonalDataTypes";
  2. export const personalData: PersonalData = {
  3. updatedDate: '2023-05-26',
  4. name: "David Hrdina Němeček",
  5. brief: "Software developer, people manager.",
  6. contacts: [
  7. {icon: 'browser-firefox', text: 'www.dejvino.cz'},
  8. {icon: 'envelope-at', text: 'explosive@dejvino.cz'},
  9. {icon: 'git', text: 'https://git.dejvino.cz'},
  10. {icon: 'telephone', text: '+420 111 222 333'},
  11. {icon: 'geo-alt', text: 'Brno, Czechia'}
  12. ],
  13. jobs: {
  14. current: {
  15. position: 'Janitor',
  16. company: 'Cleaners Limited',
  17. timerange: '2022 - present',
  18. description: 'Cleanup duty 24/7.',
  19. },
  20. previous: [
  21. {
  22. position: 'CEO',
  23. company: 'CryptoDancers',
  24. timerange: '2019 - 2022',
  25. description: 'Revolutionizing the crypto world.',
  26. }
  27. ]
  28. },
  29. education: {
  30. previous: [
  31. {
  32. position: 'Information Technology (unfinished)',
  33. company: 'University of Benimoto',
  34. timerange: '2010 - 2017',
  35. description: '',
  36. }
  37. ]
  38. },
  39. skills: {
  40. primary: ['Java', 'TypeScript', 'JavaScript'],
  41. secondary: ['Kotlin', 'Go'],
  42. languages: ['Czech (native)', 'English (proficient)', 'German (elementary)'],
  43. others: ['Driver\'s license (B)']
  44. },
  45. interests: ['Guitars and Heavy Metal', 'Mazda MX-5', 'DIY electronics'],
  46. };