-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolioData.js
116 lines (115 loc) · 3.63 KB
/
portfolioData.js
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
export const mainJobs = [
{
id: 1,
dateStart: "2010-11-01 09:00:00",
dateEnd: "2017-06-01 18:00:00",
jobTitle: "Java/PL SQL Developer",
client: "Estrategias Diferenciadas S.A.",
jobType: "Full-time",
img: "edsa-logo.png",
description: "Developed Java/PL SQL extensions for Mapfre insurance company",
skills: ["Java", "PL/SQL", "COBOL", "Jasper Reports", "Subversion"],
},
{
id: 2,
dateStart: "2017-06-01 09:00:00",
dateEnd: "2020-03-01 18:00:00",
jobTitle: ".NET Developer",
client: "MyMarketPlace builder",
jobType: "Full-time",
img: "mmb-logo.webp",
description:
"C#/.NET developer for the different customers of the company. Worked on the main product (My marketplace builder) and also lead several projects custom made for customers.",
skills: [
".Net Framework",
"Entity Framework",
"WSDL",
"SQL Server",
"ReactJS",
"C#",
".NET Core MVC",
".NET Core Razor",
"Visual Studio",
"Azure",
"Team Foundation Server",
],
},
{
id: 3,
dateStart: "2020-03-01 09:00:00",
dateEnd: null,
jobTitle: ".NET Developer",
client: "MultiTracks.com",
jobType: "Full-Time (Contractor)",
description: "C#/.NET developer for the website, APIs and different internal tooling",
img: "multitracks-logo.svg",
skills: [
".Net Framework",
"Dapper",
"SQL Server",
"T-SQL",
"C#",
".NET Core MVC",
"Visual Studio",
"Redis",
"Azure",
"NUnit",
"Github",
"Git",
],
},
];
export const freelanceProjects = [
{
id: 1,
dateStart: "2017-03-01 18:00:00",
dateEnd: "2017-06-01 18:00:00",
client: "Rockstar Hotels",
description:
"Project in Laravel/MySQL. Added Stripe as payment method. Several adjustments throughout the site. Markup adjustments for translation system.",
skills: ["Laravel", "MySQL", "Javascript", "CSS", "HTML"],
},
{
id: 2,
dateStart: "2017-05-01 18:00:00",
dateEnd: "2017-08-01 18:00:00",
client: "Local City Council",
description: "SIGED - Local government system for the City Council. PHP/Laravel project to update the previous Council system.",
skills: ["Laravel", "MySQL", "Javascript", "CSS", "HTML", "jQuery"],
},
{
id: 3,
dateStart: "2018-06-01 18:00:00",
dateEnd: "2019-05-01 18:00:00",
client: "YourChoice English",
description: `English classes management system:
- Professors: courses, documentation, management for the classes, teachers schedule system.
- Students login and assignment of hours of classes, documents, etc, with calendar handling system.
- Integration with Paypal for recurring payment of students.
- WebRTC solution implementation for the virtual classrooms.`,
skills: ["ReactJS", "WebRTC", "Javascript", "CSS", "HTML", ".NET"],
},
{
id: 4,
dateStart: "2018-06-01 18:00:00",
dateEnd: "2019-05-01 18:00:00",
client: "PHP - Wordpress Template Development",
description: `Various projects:
- Magdafrank (Local Museum theme)
- Ecommerce platform, woocommerce custom theme implementation: Scooby shop
- Axel (Argentinian famous artist) artistic profile web theme
- Martin Passeri (Argentinian surfer)
`,
skills: ["ReactJS", "WebRTC", "Javascript", "CSS", "HTML", ".NET", "SQL Server", "Entity Framework"],
},
{
id: 5,
dateStart: "2019-06-01 18:00:00",
dateEnd: "2020-06-01 18:00:00",
client: "Experimenta Azul",
description: `Local Tourism app.
- Developed the whole stack: React Native App with the Backoffice/Admin site and API in .net Core.
- Responsible for the deployment of the API and Backend, and also for the app stores management.`,
skills: ["React Native", ".Net Core", "Azure", "Cloud VPS", "HTML", ".NET", "SQL Server", "Entity Framework", ".Net Core MVC"],
},
];