forked from BartoszJarocki/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume-data.tsx
114 lines (113 loc) · 3.73 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
import { VercelLogo, NextJsLogo } from "@/images/logos";
import { GitHubIcon, LinkedInIcon, XIcon } from "@/components/icons";
export const RESUME_DATA = {
name: "Jamel Eddine Lassoued",
initials: "LJ",
location: "Oita, Japan",
locationLink: "https://www.google.com/maps/place/Oita,+Japan/",
about:
"Aspiring Full Stack Engineer. Currently 4th year student at Oita University, working as a Backend Engineer with local startups.",
summary:
"I have experience in building and maintaining web applications using Node.js, TypeScript, Flask, and PostgreSQL. I am passionate about building products that are scalable, maintainable, and accessible. I am also interested in learning more about DevOps and MLOps.",
avatarUrl: `https://api.dicebear.com/7.x/bottts/svg?seed=${Math.random()}`,
personalWebsiteUrl: "https://sardonyx001.github.io/",
contact: {
email: "[email protected]",
schoolEmail: "[email protected]",
tel: "+8107091962885",
social: [
{
name: "GitHub",
url: "https://github.com/sardonyx001",
icon: GitHubIcon,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/in/jamel-lassoued/",
icon: LinkedInIcon,
},
{
name: "X",
url: "https://x.com/whyamihere001",
icon: XIcon,
},
],
},
education: [
{
school: "Oita University",
link: "https://www.oita-u.ac.jp/",
degree: "Bachelor's Degree in Computer Science and Intelligent Systems\n",
start: "2023",
end: "Graduating in 2025",
},
{
school: "National Institute of Technology, Sasebo College",
link: "https://www.sasebo.ac.jp/",
degree: "Associate's Degree in Control systems engineering",
start: "2020",
end: "2023",
},
],
work: [
{
company: "MobileCreate",
link: "https://www.mcinc.jp/",
badges: ["Remote", "Typescript", "Next.js", "PostgreSQL"],
title: "Full Stack Developer",
logo: NextJsLogo,
start: "Nov. 2023",
end: "now",
description:
"I am working as a Backend Developer with Sigma-i, a startup based in Japan. I am responsible for building and maintaining the backend of one of the company's main products, a web application that helps users manage data entry and retrieval and generate reports.",
},
{
company: "Sigma-i Co., Ltd",
link: "https://www.sigmailab.com/",
badges: ["Remote", "Python", "Flask", "MySQL", "Redis"],
title: "Back End Developer",
logo: NextJsLogo,
start: "May. 2023",
end: "now",
description:
"I am working as a Backend Developer with Sigma-i, a startup based in Japan. I am responsible for building and maintaining the backend of one of the company's main products, a web application that helps users manage data entry and retrieval and generate reports.",
},
],
skills: [
"Python",
"Flask",
"Django",
"JavaScript/TypeScript",
"React/Next.js",
"Node.js",
"Docker",
"Golang",
"Bash",
"Perl",
"C/C++",
],
projects: [
{
title: "Project Title",
techStack: ["Side Project", "TypeScript", "Next.js"],
description:
"Labore esse qui officia dolore et incididunt irure amet proident laboris proident Lorem.",
logo: NextJsLogo,
link: {
label: "example.com",
href: "https://example.com/",
},
},
{
title: "Project Title 2",
techStack: ["Python", "Flask", "MySQL", "Redis", "Celery"],
description:
"Duis dolor adipisicing et magna fugiat occaecat culpa eiusmod nulla.",
logo: VercelLogo,
link: {
label: "example.com",
href: "https://example.com/",
},
},
],
} as const;