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.
 
 
 

105 lines
5.7 KiB

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