This repository was archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtimeline.js
126 lines (125 loc) · 5.18 KB
/
timeline.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
117
118
119
120
121
122
123
124
125
126
const timeline = [
{
event: "Co-founder and CTO at Malt",
date: "201(2|4)- In progress",
location: "Europe",
description: `Malt is simply THE marketplace for freelancers looking to find clients and simplify their lives.<br>\n
As I write these lines (published in 2022), Malt is 500 people working from Paris, Lyon, Munich, Madrid, Berlin, Brussels, Amsterdam and remotely, 800,000 registered, 300,000 freelancers.<br>\n
And it all started in 2012 with 3 people! <br>\n
On this blog, you will find a good part of what I learned in this great adventure.`,
images: [
{
src: "/logos/malt.png",
alt: "Malt logo",
class: "w-10 h-10 mx-3",
},
],
},
{
event: "Freelancer",
date: "2010-201(4|6)",
location: "Paris-Lyon",
description:
"Finally Free ! <br> This will be my first steps in entrepreneurship and will give me the opportunity to create 3 companies over the period: Lateral-thoughts, Localizeyourapp and Malt.<br>This is another big theme of this blog: entrepreneurship, freelancing and web development.",
images: [
{
src: "/logos/lateral-thoughts.svg",
alt: "Logo Lateral-thoughts",
class: "h-8 mx-3",
},
{
src: "/logos/malt.png",
alt: "Logo Malt",
class: "w-10 h-10 mx-5 my-auto",
},
{
src: "/logos/localizeyourapp.jpg",
alt: "Logo Localizeyourapp",
class: "h-10 mx-6",
},
{
src: "/logos/enedis.jpg",
alt: "Logo Enedis",
class: "w-10 h-10 mx-4 my-auto",
},
{
src: "/logos/egencia.jpg",
alt: "Logo Egencia",
class: "w-10 h-10 mx-4 my-auto",
},
{
src: "/logos/seb.jpg",
alt: "Logo Seb",
class: "w-10 h-10 mx-4 my-auto",
},
{
src: "/logos/directassurance.jpg",
alt: "Logo Direct Assurance",
class: "w-10 h-10 mx-4 my-auto",
},
],
},
{
event: "Software edition - Finance",
date: "2006-2010",
location: "Paris",
description: `I had the right intuition when I chose the field of finance just at the time of the subprime crisis! \\o/\n
<br>\n
But this is where I discover that I love making product and thinking long term. <br>\n
And this will influence me for the rest of my career, by the people I will meet, by the working methods, the international,\n
and a little bit also unfortunately, things I didn't want to reproduce myself in terms of management..<br>\n
This corresponds to the very first posts of this blog (some of them are not online anymore) !`,
images: [
{
src: "/logos/sungard-vector-logo.png",
alt: "Logo sungard",
class: "h-10 mx-3",
},
],
},
{
event: "Consulting and IT firms",
date: "2002-2006",
location: "Paris",
description: `The time has come for suit, corporate clients and the world of IT firms, a world of its own.<br>\n
It will however be very formative with a great diversity of experiences and lots of great first encounters and learning.<br>\n
But also a certainty, if I did service again in the future, it would not be in these conditions (hello freelancing!)`,
images: [
{
src: "/logos/sg.jpg",
alt: "Logo Société Générale",
class: "w-10 h-10 mx-5 my-auto",
},
{
src: "/logos/bouygyes.jpg",
alt: "Logo Bouygues Telecom",
class: "w-10 h-10 mx-5 my-auto",
},
{
src: "/logos/orange.jpg",
alt: "Logo Orange",
class: "w-10 h-10 mx-5 my-auto",
},
],
},
{
event: "First job in a startup",
date: "2001",
location: "Paris",
description:
"Here we can see the instinct, just before the explosion of the internet bubble.<br>\n" +
" 2001 for the anecdote, it is: the explosion of the Internet bubble, the end of the transition to Euro, the World Trade center... <br>\n" +
" The job market was far from being good after that.",
images: [],
},
{
event: "birth",
date: "20th century",
location: "France, earth planet",
description:
"I don't have the exact date anymore, it's not important ;)<br>\n" +
" And you know what, I'm still nostalgic for 80s/90s movies.",
images: [],
},
];
export default timeline;