generated from BartoszJarocki/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume-data.tsx
161 lines (160 loc) · 4.78 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
import {
InfoSupportLogo,
ProvincieUtrechtLogo,
Deck1Logo,
EnzoSystemsLogo,
UtilusLogo,
} from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
export const RESUME_DATA = {
name: "Jasper de Bie",
initials: "J.B.",
location: "Amsterdam, Netherlands",
locationLink: "https://www.google.com/maps/place/amsterdam",
about: "Full Stack Engineer and agile advocate",
summary:
"Full stack software engineer with a passion for agile and the creative freedom it promotes. I'm a real teamplayer who's always out to improve the way we work and the products we build. Besides my passion for software engineering, I'm also socially engaged and always looking for ways to improve the world around me.",
avatarUrl:
"https://media.licdn.com/dms/image/v2/D4E03AQGl_ET0IfMEcw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1714058272699?e=1729123200&v=beta&t=-xOYHoPr-ZxBbg-YKqxCjN3OG7cy7FLwufp4oH52ssQ",
personalWebsiteUrl: "https://www.jasperdebie.dev/",
contact: {
// email: "",
// tel: "",
social: [
{
name: "GitHub",
url: "https://github.com/Piratepie",
icon: GitHubIcon,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/jasper-de-bie/",
icon: LinkedInIcon,
},
// {
// name: "X",
// url: "https://x.com/BartoszJarocki",
// icon: XIcon,
// },
],
},
education: [
{
school: "Universiteit van Amsterdam",
degree: "Master's degree, Software Engineering",
start: "2024",
end: "2026",
},
{
school: "HU University of Applied Sciences Utrecht",
degree: "Bachelor's degree, HBO-ICT (Software Development)",
start: "2020",
end: "2024",
},
{
school: "Keizer Karel College",
degree: "Atheneum",
start: "2011",
end: "2018",
},
],
work: [
{
company: "Utilus",
link: "https://www.utilus.nl/",
badges: ["Part-time"],
title: "Frontend Developer",
logo: UtilusLogo,
start: "2024",
end: "Present",
description:
"Working on ProximaRed, managing the development of Next.js applications and supporting the backend team where needed.",
},
{
company: "Info Support",
link: "https://infosupport.com/",
badges: ["Thesis internship"],
title: "Software Engineer",
logo: InfoSupportLogo,
start: "2024",
end: "2024",
description:
"Writing a thesis on the implementation of Mobile Augmented Reality to better the travel experience in public transport.",
},
{
company: "Provincie Utrecht",
link: "https://www.provincie-utrecht.nl/",
badges: ["Internship"],
title: "Software Engineer",
logo: ProvincieUtrechtLogo,
start: "2023",
end: "2024",
description:
"Creating a holographic Digital Twin to help reduce the envirmental impact of the logitics surrounding construction sites. Technologies: GIS, Blender, Unity, Holographs",
},
{
company: "Deck1",
link: "https://www.deck1.dev/",
badges: ["Internship"],
title: "Flutter Developer",
logo: Deck1Logo,
start: "2023",
end: "2023",
description:
"Created a multiplatform app for a client helping them manage logistics surrounding offshore windfarms. Technologies: Flutter, GraphQL",
},
{
company: "Enzosystems",
link: "https://enzosystems.com/",
badges: ["Part-time", "Internship"],
title: "Junior web developer",
logo: EnzoSystemsLogo,
start: "2022",
end: "2023",
description:
"Helped develop a web application for clients to manage their kiosks. Technologies: React, Node.js",
},
],
skills: [
"JS/TS",
"React/Next.js",
"Node.js",
"Python",
"Kotlin",
"Android",
"AR/VR",
"Java",
"Spring Boot",
"Dart",
"Flutter",
],
projects: [
{
title: "Deck1 DispatchApp",
techStack: ["Flutter", "GraphQL"],
description:
"A mobile app to help manage logistics surrounding offshore windfarms.",
logo: Deck1Logo,
link: {
label: "GitHub repo",
href: "https://github.com/DECK1xUCN/DispatchApp/tree/main",
},
},
{
title: "Digital Twin Provincie Utrecht",
techStack: ["Unity", "Holographic", "GIS", "Blender"],
description: "A holographic digital twin for the Provincie Utrecht.",
logo: ProvincieUtrechtLogo,
},
{
title: "Multipurpose Discord bot",
techStack: ["Typescript", "MongoDB"],
description: "A multipurpose Discord bot.",
logo: null,
link: {
label: "GitHub repo",
href: "https://github.com/Piratepie/gta-factions-bot",
},
},
],
} as const;