PaulMickyDCosta_CV.py
1/**
2 * Copyright (c) Copyright (c) PAUL MICKY D COSTA
3 * Licensed under the MIT license: https://opensource.org/license/mit
4 */
5
6"""
7PAUL MICKY D COSTA
8Resume | Seeking Internship or Part-Time Role
9Title: Software Engineer and Data Scientist
10"""
11
12class Information:
13 NAME = "PAUL MICKY D COSTA"
14 TITLE = "Software Engineer and Data Scientist"
15 EMAIL = "paulmickydcosta2023@gmail.com"
16 PHONE = "+45 50 37 12 25"
17 ADDRESS = "37 Avenue Berlioz, 93270 Sevran, France"
18 WEBSITE = "https://paulmickydcosta.com"
19 BIRTHDATE = "06/02/1999"
20 LINKEDIN = "https://linkedin.com/in/paul-micky-d-costa-b7287a330"
21
22class Languages:
23 ENGLISH = "Proficient"
24 DANISH = "Proficient (written)"
25 BANGLA = "Native"
26 FRENCH = "Beginner"
27 HINDI = "Beginner"
28
29class Education:
30 def esilvcolesuprieuredingnieurslonarddevinci():
31 return {
32 "institution": "ESILV - École Supérieure d'Ingénieurs Léonard de Vinci",
33 "degree": "MSc in Computer Science & Data Science",
34 "year": "2025–2026",
35 "location": "France"
36 }
37
38 def internationalbusinessacademyiba():
39 return {
40 "institution": "International Business Academy (IBA)",
41 "degree": "Top-Up Degree in Informatics",
42 "year": "2024–Present",
43 "location": "Kolding, Denmark"
44 }
45
46 def independentuniversitybangladesh():
47 return {
48 "institution": "Independent University, Bangladesh",
49 "degree": "BSc in Computer Science Engineering (Major), International Business (Minor)",
50 "year": "2018–2023",
51 "location": "Dhaka, Bangladesh"
52 }
53
54 def alevels():
55 return {
56 "qualification": "A'Levels",
57 "subjects": ["Math", "Physics"],
58 "year": "2016–2017",
59 "location": "British council"
60 }
61
62 def olevels():
63 return {
64 "qualification": "O'Levels",
65 "subjects": ["Math", "Physics", "Chemistry", "English", "Bangla"],
66 "year": "2014",
67 "location": "British council"
68 }
69
70class Experience:
71 def techtriozsolutions():
72 return {
73 "company": "Tech Trioz Solutions",
74 "role": "Front-End Developer",
75 "period": "Feb 2023 – May 2023",
76 "highlights": [
77 "Designed UI/UX using Figma",
78 "Developed apps with Vue3 on Linux",
79 "Used GitHub for version control",
80 "Created project docs (Gantt charts, flowcharts, reports)",
81 "Built 'Shahajjo' online marketplace",
82 "Developed Employee Tracker for Grameenphone",
83 "Enhanced UI for Bangladesh Stock Market app"
84 ]
85 }
86
87class Projects:
88 def daxjobtimerecordtrackerfordenmark():
89 return {
90 "title": "DAX – Job Time Record Tracker for Denmark",
91 "description": """
92DAX is a comprehensive income tracking application designed for individuals working in Denmark. It helps users manage work hours, track income from multiple jobs, and maintain financial records in compliance with Danish tax laws.
93"""
94 }
95
96class Skills:
97 PROGRAMMINGLANGUAGES = [
98 "Python",
99 "JavaScript",
100 "SQL",
101 "PHP",
102 "HTML5",
103 "CSS"
104 ]
105
106 FRAMEWORKSLIBRARIES = [
107 "Vue3",
108 "Flutter",
109 "React",
110 "Node Modules",
111 "Pygame"
112 ]
113
114 TOOLS = [
115 "VS Code",
116 "Git",
117 "GitHub",
118 "Figma",
119 "Photoshop",
120 "Canva",
121 "Adobe Illustrator",
122 "Midjourney",
123 "ElevenLabs",
124 "Leonardo AI",
125 "Suno AI"
126 ]
127
128 DATABASES = [
129 "MySQL",
130 "MongoDB",
131 "Supabase"
132 ]
133
134 ENVIRONMENTS = [
135 "Linux",
136 "Kali Linux",
137 "Linux Mint",
138 "Ubuntu",
139 "Windows"
140 ]
141
142 PLATFORMS = [
143 "Jupyter Notebook",
144 "Cursor",
145 "WordPress",
146 "Elementor"
147 ]
148
149 TECHAREAS = [
150 "Full-Stack Development",
151 "Web & Mobile App Development",
152 "UI/UX Design",
153 "Game Development",
154 "AI Animation",
155 "Machine Learning",
156 "Data Visualization",
157 "Software Development"
158 ]
159
160 CREATIVE = [
161 "Writing Prompts",
162 "Creative Writing",
163 "Graphic Design",
164 "Video Editing"
165 ]
166
167class Interests:
168 HOBBIES = [
169 "Exploring neighborhoods",
170 "Playing football with local Danish students",
171 "Singing and playing guitar",
172 "Cooking healthy meals",
173 "Painting with acrylics",
174 "PC gaming",
175 "Spending time with family",
176 "Daily workouts",
177 "Writing music lyrics with AI"
178 ]
179
180class SoftSkills:
181 COLLABORATION = True
182 PROBLEM_SOLVING = True
183 ADAPTABILITY = True
184 ATTENTION_TO_DETAIL = True
185 CONTINUOUS_LEARNING = True
186