Compare commits

...

2 Commits

Author SHA1 Message Date
35c59fa876
better location 2024-07-24 19:35:48 +02:00
3f48cc2fb6
add dbg entry 2024-07-24 19:31:41 +02:00
3 changed files with 23 additions and 20 deletions

35
cv.json
View File

@ -8,9 +8,23 @@
"upwork": "idimitrov", "upwork": "idimitrov",
"experience": [ "experience": [
{ {
"company": "idimitrov.dev", "company": "Deutsche Börse AG",
"position": "Software Developer / Owner", "position": "Software Developer",
"location": "Worldwide", "location": "Prague, Czechia",
"from": "Feb 2024",
"to": "9999",
"description": "Deutsche Börse AG is a German multinational corporation that offers a marketplace for organizing the trading of shares and other securities. My role as a software developer working in the Prague branch is to take part in the implementation and integration of new features like the support for OTC IRS in C7 CAS in Release 2.284 as well as the Repo market support in C7 CAS.",
"links": [
{
"text": "Release notes",
"href": "https://www.eurex.com/ec-en/support/initiatives/c7-client-administration-service/C7-CAS-Releases-2900566?frag=3919554"
}
]
},
{
"company": "IDimitrov Ltd.",
"position": "Director/Owner",
"location": "Planet Earth",
"from": "2023", "from": "2023",
"to": "9999", "to": "9999",
"description": "This is my software consulting and development business. It offers web development services to businesses around the world. Please head over to my resume website or my Upwork profile to learn more.", "description": "This is my software consulting and development business. It offers web development services to businesses around the world. Please head over to my resume website or my Upwork profile to learn more.",
@ -26,21 +40,6 @@
], ],
"feedback": "100% Job Success" "feedback": "100% Job Success"
}, },
{
"company": "Stepsy",
"position": "Freelance Full Stack Software Developer",
"location": "Estonia",
"from": "29 Jul 2023",
"to": "5 Nov 2023",
"description": "As a software developer working with stepsy.co, I was responsible for implementing their brand new wiki web app stepsy.wiki. Working on this greenfield project allowed me to make fundamental technical decisions that had a positive impact on further development.",
"links": [
{
"text": "Case Study",
"href": "https://www.idimitrov.dev/c/cases/stepsy.wiki.md"
}
],
"feedback": "Great experience working with Ivan! Ready to implement your vision, also advises on how it should be done."
},
{ {
"company": "RA Creative", "company": "RA Creative",
"position": "Full Stack Software Developer", "position": "Full Stack Software Developer",

View File

@ -1,6 +1,6 @@
main = $(pname).tsx main = $(pname).tsx
default: all default: dev
all: all:
bun $(main) bun $(main)

View File

@ -34,7 +34,11 @@ export default function Experience({
<Text style={tw("text-amber-500")}>{position}</Text> <Text style={tw("text-amber-500")}>{position}</Text>
<Text>at</Text> <Text>at</Text>
<Text style={tw("text-blue-500")}> <Text style={tw("text-blue-500")}>
{company}, {location} {company}
</Text>
<Text>in</Text>
<Text style={tw("text-sky-500")}>
{location}
</Text> </Text>
<Text>from</Text> <Text>from</Text>
<Text style={tw("text-lime-500")}>{from.toDateString()}</Text> <Text style={tw("text-lime-500")}>{from.toDateString()}</Text>