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.
 
 
 

118 lines
6.2 KiB

  1. import { PersonalData } from "./PersonalDataTypes";
  2. // Icons: https://icons.getbootstrap.com/
  3. export const personalData: PersonalData = {
  4. updatedDate: '2023-07-26',
  5. name: "David Hrdina Němeček",
  6. brief: "Software developer. Engineering lead.",
  7. contacts: [
  8. {icon: 'browser-firefox', text: 'www.dejvino.cz'},
  9. {icon: 'envelope-at', text: 'explosive@dejvino.cz'},
  10. {icon: 'git', text: 'https://git.dejvino.cz'},
  11. {icon: 'github', text: 'https://github.com/Dejvino'},
  12. {icon: 'file-earmark-person', text: 'https://cv.dejvino.cz'},
  13. {icon: 'file-earmark-pdf', text: 'https://cv.dejvino.cz/pdf'},
  14. {icon: 'telephone', text: '+420 775 26 26 32'},
  15. {icon: 'geo-alt', text: 'Brno, Czechia'}
  16. ],
  17. jobs: {
  18. current: [{
  19. position: 'Senior Software Development Manager (UI Platform)',
  20. company: 'Oracle|NetSuite',
  21. timerange: '2022 - present',
  22. 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.
  23. Leader of a UI testing architecture group responsible for defining a testing strategy across the UI Platform.`,
  24. tags: ['TypeScript', 'Preact', 'NodeJs', 'Oracle JET', 'Java', 'Git']
  25. }],
  26. previous: [
  27. {
  28. position: 'Software Development Manager (UI Platform)',
  29. company: 'Oracle|NetSuite',
  30. timerange: '2020 - 2022',
  31. description: `Engineering lead for a UI Platform team who developed components for a UI toolkit used by the rest of the organization.
  32. Technical product owner while bootstrapping a team.`,
  33. tags: ['TypeScript', 'Preact', 'NodeJs', 'Oracle JET', 'Java', 'Git']
  34. },
  35. {
  36. position: 'Software Development Manager (ERP, Tax)',
  37. company: 'Oracle|NetSuite',
  38. timerange: '2017 - 2020',
  39. 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.',
  40. tags: ['Java', 'Oracle SQL', 'JavaScript', 'Perforce', 'Git', 'Software Architecture']
  41. },
  42. {
  43. position: 'Senior Software Engineer (ERP, Tax)',
  44. company: 'Oracle|NetSuite',
  45. timerange: '2013 - 2017',
  46. description: `Development of Tax calculation and reporting modules in a cloud ERP system.
  47. Large-scale refactoring of legacy code. Introduction of a pluggable architecture.`,
  48. tags: ['Java', 'Oracle SQL', 'JavaScript', 'Perforce', 'Legacy code refactoring']
  49. },
  50. {
  51. position: 'Software Engineer',
  52. company: 'Q2 Interactive',
  53. timerange: '2009 - 2013',
  54. description: `Development and project leadership of multiple web applications and services:
  55. - CRM system (PHP backend server, JavaScript frontend, Android client app),
  56. - Accounting web app (PHP, JavaScript),
  57. - e-commerce sites (Magento),
  58. - Linux server maintenance.`,
  59. tags: ['PHP', 'Java', 'JavaScript', 'MySQL', 'Server hosting', 'Linux', 'Android', 'Subversion (SVN)']
  60. }
  61. ]
  62. },
  63. projects: {
  64. current: [
  65. {
  66. position: `Open Source Contributor`,
  67. 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).
  68. E.g. SimpleMobileTools Android suite.`,
  69. tags: ['Kotlin', 'Android', 'Python', 'Open Source', 'Git']
  70. },
  71. ],
  72. previous: [
  73. {
  74. position: `Personal projects`,
  75. 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).
  76. These include video games, utilities, 3D models, retrofitting devices with embedded microcontrollers etc.`,
  77. tags: ['Java', 'Python', 'TypeScript', 'Embedded', 'OpenSCAD', 'Linux', 'Open Source', 'Self-hosting']
  78. },
  79. ]
  80. },
  81. education: {
  82. previous: [
  83. {
  84. position: `Master's degree, Parallel and Distributed Systems`,
  85. company: `Faculty of Informatics, Masaryk University Brno`,
  86. timerange: '2011 - 2013',
  87. description: `**Master's thesis:** *Efficient computation and visualization of correlations in medical signals.*
  88. The first part consisted of high-performance computation of correlations on large volumes of analog data using supercomputers.
  89. The second part covered the visualization of the computed results which allowed interactive exploration and processing of the data by a researcher.`,
  90. tags: ['C/C++', 'Supercomputers', 'OpenMPI', 'Python', 'Visualization', 'Data science']
  91. },
  92. {
  93. position: `Bachelor's degree, Parallel and Distributed Systems`,
  94. company: `Faculty of Informatics, Masaryk University Brno`,
  95. timerange: '2008 - 2011',
  96. description: `**Bachelor's thesis:** *Parallel implementation of force-field decompression algorithm.*
  97. The solution executed on a supercomputer cluster to perform real-time simulation of molecular forces. This in turn provided haptic feedback to a 3D pointing device.`,
  98. tags: ['C/C++', 'Supercomputers', 'OpenMPI', 'Data science']
  99. }
  100. ]
  101. },
  102. skills: {
  103. primary: ['Kotlin', 'Java', 'TypeScript', 'Linux'],
  104. secondary: ['Go', 'JavaScript', 'Oracle SQL', 'Git', 'React', 'Preact', 'Python'],
  105. languages: ['Czech (native)', 'English (proficient)', 'German (elementary)'],
  106. //others: ['Driver\'s license (B)']
  107. },
  108. interests: ['Guitars', 'Heavy Metal', 'Mazda MX-5', 'DIY electronics', 'Linux', 'Open source'],
  109. };