-
Notifications
You must be signed in to change notification settings - Fork 994
/
resume-data.tsx
241 lines (240 loc) · 6.84 KB
/
resume-data.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
import {
ClevertechLogo,
ConsultlyLogo,
JojoMobileLogo,
MonitoLogo,
NSNLogo,
ParabolLogo,
} from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
export const RESUME_DATA = {
name: "Bartosz Jarocki",
initials: "BJ",
location: "Wrocław, Poland, CET",
locationLink: "https://www.google.com/maps/place/Wrocław",
about:
"Detail-oriented Full Stack Engineer dedicated to building high-quality products.",
summary: (
<>
Frontend-focused Full Stack Engineer specializing in high-performance
React applications, scalable Node.js services, and real-time collaboration
systems. Experienced in technical architecture design and remote team
leadership.
</>
),
avatarUrl: "https://avatars.githubusercontent.com/u/1017620?v=4",
personalWebsiteUrl: "https://jarocki.me",
contact: {
email: "[email protected]",
tel: "+48530213401",
social: [
{
name: "GitHub",
url: "https://github.com/BartoszJarocki",
icon: GitHubIcon,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/bjarocki/",
icon: LinkedInIcon,
},
{
name: "X",
url: "https://x.com/BartoszJarocki",
icon: XIcon,
},
],
},
education: [
{
school: "Wrocław University of Technology",
degree: "Bachelor's Degree in Control systems engineering and Robotics",
start: "2007",
end: "2010",
},
],
work: [
{
company: "Film.io",
link: "https://film.io",
badges: ["Remote", "React", "Next.js", "TypeScript", "Node.js"],
title: "Software Architect",
logo: ConsultlyLogo,
start: "2024",
end: null,
description: (
<>
Leading technical architecture of a blockchain-based film funding
platform.
<ul className="list-inside list-disc">
<li>
Architecting migration from CRA to Next.js for improved
performance, SEO, and DX
</li>
<li>
Established release process enabling faster deployments and
reliable rollbacks
</li>
<li>
Implementing system-wide monitoring and security improvements
</li>
</ul>
</>
),
},
{
company: "Parabol",
link: "https://parabol.co",
badges: [
"Remote",
"React",
"TypeScript",
"Node.js",
"GraphQL",
"Tailwind CSS",
],
title: "Senior Full Stack Developer",
logo: ParabolLogo,
start: "2021",
end: "2024",
description: (
<>
Senior developer and squad leader for an enterprise agile meeting
platform.
<ul className="list-inside list-disc">
<li>
Built design system with Tailwind CSS, improving development speed
and time to market
</li>
<li>
Implemented engineering practices: PR automation, code review
guidelines, and workflows
</li>
<li>
Open source contributions to Relay DevTools and React i18n tooling
</li>
</ul>
</>
),
},
{
company: "Clevertech",
link: "https://clevertech.biz",
badges: ["Remote", "React", "TypeScript", "Node.js", "Android", "Kotlin"],
title: "Lead Android Developer → Full Stack Developer",
logo: ClevertechLogo,
start: "2015",
end: "2021",
description: (
<>
Successfully transitioned from mobile to full-stack development while
leading distributed teams.
<ul className="list-inside list-disc">
<li>
Led frontend team at Evercast, building real-time platform
supporting 30+ users per room with HD streaming and collaboration
tools
</li>
<li>
Developed offline-first Android app for DKMS, improving donor
registration process
</li>
<li>
Led development teams across multiple successful client projects
</li>
</ul>
</>
),
},
{
company: "Jojo Mobile",
link: "https://bsgroup.eu/",
badges: ["On Site", "Android", "Java", "Kotlin"],
title: "Android Developer → Lead Android Developer",
logo: JojoMobileLogo,
start: "2012",
end: "2015",
description: (
<>
First Android developer, grew and led a team of 15+ engineers while
establishing engineering culture.
<ul className="list-inside list-disc">
<li>
Developed apps for major Polish companies including LOT, Polskie
Radio, and Agora
</li>
<li>Built and mentored high-performing mobile development team</li>
</ul>
</>
),
},
{
company: "Nokia Siemens Networks",
link: "https://www.nokia.com",
badges: ["On Site", "C/C++", "LTE", "Agile"],
title: "C/C++ Developer",
logo: NSNLogo,
start: "2010",
end: "2012",
description:
"Developed software for LTE base stations at enterprise scale, gaining strong fundamentals in software architecture, testing practices, and cross-team collaboration.",
},
],
skills: [
"React/Next.js/Remix",
"TypeScript",
"Tailwind CSS",
"Design Systems",
"WebRTC",
"WebSockets",
"Node.js",
"GraphQL",
"Relay",
"System Architecture",
"Remote Team Leadership",
],
projects: [
{
title: "Monito",
techStack: ["TypeScript", "Next.js", "Browser Extension", "PostgreSQL"],
description:
"Browser extension for debugging web applications. Includes taking screenshots, screen recording, E2E tests generation and generating bug reports",
logo: MonitoLogo,
link: {
label: "monito.dev",
href: "https://monito.dev/",
},
},
{
title: "Consultly",
techStack: [
"TypeScript",
"Next.js",
"Vite",
"GraphQL",
"WebRTC",
"Tailwind CSS",
"PostgreSQL",
"Redis",
],
description:
"Platform for online consultations with real-time video meetings and scheduling",
logo: ConsultlyLogo,
link: {
label: "consultly.com",
href: "https://consultly.com/",
},
},
{
title: "Minimalist CV",
techStack: ["TypeScript", "Next.js", "Tailwind CSS"],
description:
"An open source minimalist, print friendly CV template with a focus on readability and clean design. >9k stars on GitHub",
logo: MonitoLogo,
link: {
label: "Minimalist CV",
href: "https://github.com/BartoszJarocki/cv",
},
},
],
} as const;