Skip to content

Commit

Permalink
gpa -> grade and added bling experience
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesGitH committed Nov 1, 2024
1 parent a539e23 commit 0cac335
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pdf/compiler/parse-cv-entries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const parseCVEntry = (entry: ExperienceEntry | EducationEntry | ProjectEntry) =>
let { year , start, place, name, description, location} = {location:'', year: '', start: '', place: '', name: '', description: '', ...entry, };
//in case of education we also have a degree
if ((entry as EducationEntry).degree) {
let { degree, gpa } = entry as EducationEntry;
name = (name ? `${degree} in ${name}` : degree) + (gpa ? ` (gpa: ${gpa})` : '');
let { degree, gpa: grade } = entry as EducationEntry;
name = (name ? `${degree} in ${name}` : degree) + (grade ? ` (grade: ${grade})` : '');
}
if ((entry as ProjectEntry).pdfName) {
const {pdfName, link, pdfDescription } = (entry as ProjectEntry);
Expand Down
10 changes: 5 additions & 5 deletions src/lib/data/education.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export interface EducationEntry {
year: number;
start?: string;
degree: string;
gpa: number | string;
grade: number | string;
place: string;
description: string;
name?: string;
Expand All @@ -15,7 +15,7 @@ const allEducation:EducationEntry[] = [
{
year: 2017,
degree: 'Abitur',
gpa:2.0,
grade:2.0,
place: 'Werner von Siemens Gymnasium Berlin',
location:'Berlin, DE',

Expand All @@ -25,7 +25,7 @@ const allEducation:EducationEntry[] = [
{
year: 2020,
degree: 'B.Sc.',
gpa:2.6,
grade:2.6,
place: 'Freie Universität Berlin',
location:'Berlin, DE',
name:'Computer Science',
Expand All @@ -36,11 +36,11 @@ const allEducation:EducationEntry[] = [
{
year: 2023,
degree: 'M.Sc.',
gpa:'expecting ~1.4',
grade:'expecting ~1.4',
place: 'Freie Universität Berlin',
location:'Berlin, DE',
name:'Computer Science',
description:'I\'ve not got my certificate yet, but i\'ve already finished all my classes and my masters thesis called "Improved linear Cryptanalysis on Quantum Computers" with a 1.0, therefor I expect to graduate with a 1.4 very soon.',
description:'After finishing my master thesis "Improved linear Cryptanalysis on Quantum Computers" with a 1.0, I graduated with a 1.3 at the end of \'23.',
degreePdfFileUrl: '/pdfs/hh_zeugnis_master.pdf',
thesisPdfFileUrl: '/pdfs/hh_thesis_master.pdf',
},
Expand Down
11 changes: 11 additions & 0 deletions src/lib/data/experience.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,17 @@ const options: ExperienceEntry[] = [
'Designed and built an internal application for managing the company\'s projects, using primarily Flutter.'
]
},
{
start: 2024,
year: '....',
place: 'Bling.de',
location: 'Berlin, DE',
name: 'Frontend Engineer',
description:
[
'Help building the best app for families in Europe, Pocket money, banking, chores, and more, all in one place. Frontend primarily build with Flutter.'
]
},
//TODO: sobald carii gegründet wird
// {
// start: 2023,
Expand Down

0 comments on commit 0cac335

Please sign in to comment.