-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAC.json
More file actions
1066 lines (1066 loc) · 35.2 KB
/
Copy pathMAC.json
File metadata and controls
1066 lines (1066 loc) · 35.2 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://raw.githubusercontent.com/getmanfred/mac/v0.5/schema/schema.json",
"settings": {
"language": "EN",
"MACVersion": "0.5"
},
"aboutMe": {
"profile": {
"name": "Iván",
"surnames": "Alonso",
"title": "Software Artisan and Imaginaut",
"description": "The automated summary that LinkedIn created for me said: \"Experienced Project Manager with a demonstrated history of working in the internet industry\", so it must be true.\n\nSenior professional with 20 years of experience in software development in different fields: consulting, e-commerce, start-ups, academic research, R+D and videogames, a third of them in hands-on project management roles. Nowadays more interested in being an individual contributor again.\n\nCurrently writing my Ph.D. thesis in the fields of game design and procedural content generation. ",
"avatar": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/98886669-18ff-468d-9543-af87085e99f1_photo_2022-02-22-16.jpeg",
"alt": "photo_2022-02-22 16.52.14.jpeg"
},
"location": {
"notes": "Autocompleted using Google Maps API (id: ChIJgTwKgJcpQg0RaSKMYcHeNsQ)",
"country": "España",
"region": "Comunidad de Madrid",
"municipality": "Madrid"
}
},
"interestingFacts": [
{
"topic": "First computer",
"fact": "486DX2 66MHz"
},
{
"topic": "Favorite editor",
"fact": "Sublime Text"
}
],
"relevantLinks": [
{
"type": "linkedin",
"URL": "https://www.linkedin.com/in/ivanalonso/"
},
{
"type": "github",
"URL": "https://github.com/neverbot"
},
{
"type": "twitter",
"URL": "https://twitter.com/neverbot"
},
{
"type": "other",
"URL": "https://neverbot.com"
}
]
},
"experience": {
"jobs": [
{
"organization": {
"name": "GameLearn",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/3c4e66bf-458a-4e3b-b8bd-9d5e0dba2d91_re7sq.jpg",
"alt": "GameLearn"
},
"URL": "https://www.game-learn.com"
},
"roles": [
{
"name": "Senior Engineering Manager / Software Artisan",
"startDate": "2019-06-01",
"challenges": [
{
"description": "Senior engineering manager, creating a new platform for game-based e-learning products, in a role pivoting between backend architect, team leader and DX (Developer experience) specialist."
}
],
"competences": [
{
"name": "AWS",
"type": "technology"
},
{
"name": "Express",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "MongoDB",
"type": "technology"
},
{
"name": "NodeJS",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Crowdfarming",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/6e1bb113-c9ed-4edb-a32e-7577b1f45c04_logo.png",
"alt": "logo.png"
},
"URL": "https://crowdfarming.com"
},
"roles": [
{
"name": "Agile Evangelist / Software Artisan",
"startDate": "2017-09-01",
"finishDate": "2018-12-31",
"challenges": [
{
"description": "Being part of a startup (again!), [www.crowdfarming.com](http://www.crowdfarming.com), trying to revolutionize the traditional food supply chain, helping the farmers and the consumers to achieve more sustainable and predictable agricultural practices, with fewer intermediaries and better products."
}
],
"competences": [
{
"name": "Azure",
"type": "technology"
},
{
"name": "Express",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "MongoDB",
"type": "technology"
},
{
"name": "NodeJS",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Freelance"
},
"roles": [
{
"name": "Software Artisan",
"startDate": "2016-11-01",
"finishDate": "2017-09-30",
"challenges": [
{
"description": "Main fields: Full stack web-developer, Backend developer (mainly PHP/Laravel). Javascript developer (not only particular frameworks, vanilla javascript development). Game designer. Game developer.\n\nI've worked with more languages/technologies/frameworks that could be written here, so drop me a line if you are interested in a freelance remote developer and we can take a look to the project to see if there is a good fit."
}
],
"competences": [
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "Laravel",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "sngular",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/167208f3-0d88-46e6-8a87-c685eb13707c_avbt15pn7hfglxx9rzgp.jpg",
"alt": "sngular"
},
"URL": "http://sngular.com"
},
"roles": [
{
"name": "Project Manager / Software Artisan",
"startDate": "2015-07-01",
"finishDate": "2016-10-31",
"challenges": [
{
"description": "After BillionLabs was acqui-hired by Sngular, we formed the e-commerce and agile projects team inside the company, with the name \"Sngular Ventures\"."
}
],
"competences": [
{
"name": "AWS",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "Laravel",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
},
{
"name": "Vagrant",
"type": "technology"
},
{
"name": "jQuery",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Billionlabs",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/23/01/26/3d703512-377f-4ca9-9698-de0ac3209b10_1519864944895.jpg",
"alt": "1519864944895.jpg"
}
},
"roles": [
{
"name": "Project Manager / Software Artisan",
"startDate": "2014-07-01",
"finishDate": "2016-10-31",
"challenges": [
{
"description": "Helping start-ups and e-commerce companies to make the magic happen. Technical project management, requirement analysis and software development of various projects, making the company grow until acquisition by the Sngular Group.\n\n* 2015/16: pixie.es: programming learning site, teaching programming to kids with videogames and visual code blocks; using multiple game engines and Google Blockly. Currently part of the Telefónica/Wayra \"Gran Vía Open Future\\_\" program.\n* 2016: sngular.team: internal CMS developed from scratch with job portal, personal blogs, company news, etc.\n* 2016: multiple e-commerce sites (enviocoronas.com, nac.es).\n* 2015: lolamarket.com: multi-market grocery delivery service with personal shoppers.\n* 2014: ticdomestic.com: vertical employment portal."
}
],
"competences": [
{
"name": "AWS",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "Laravel",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
},
{
"name": "Vagrant",
"type": "technology"
},
{
"name": "jQuery",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Fluzo Studio",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/f0e71651-dac8-4064-84e8-2e99593ce73c_6c7c080526f46bfbce6b.png",
"alt": "Fluzo Studio"
},
"URL": "http://fluzostudios.com"
},
"roles": [
{
"name": "Game Developer / Game Designer",
"startDate": "2013-05-01",
"finishDate": "2013-07-31",
"challenges": [
{
"description": "Artificial Intelligence / Behaviour designer and developer in the pre-production demo of The Promise ([http://www.fluzostudios.com/WebEn/the-promise/](http://www.fluzostudios.com/WebEn/the-promise/))."
}
],
"competences": [
{
"name": "C#",
"type": "technology"
},
{
"name": "Unity3D",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "UNED",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/7cedd4dd-07f5-4b7f-84c9-e8cb22a9528e_eg0l53eohnmap5sxzght.png",
"alt": "UNED"
},
"URL": "http://www.uned.es"
},
"roles": [
{
"name": "Gamification Researcher / Agile evangelist / Software Artisan",
"startDate": "2013-02-01",
"finishDate": "2014-06-30",
"challenges": [
{
"description": "Helped the Psychology faculty to migrate from an almost non-technical environment, introducing new technologies, best practices and agile methodologies.\n\nResearch & development of serious games to be used in social experiments and surveys. Improvement of the current software and results until getting new research contracts with the ARTIS Research & Risk Modeling institution (artisresearch.com). Collaborating with UNED Madrid, Oxford University and UAB (Universidad Autónoma de Barcelona).\n\nDevelopment of a fully functional game engine ([https://github.com/okinawa-dev/okinawa.js/](https://github.com/okinawa-dev/okinawa.js/)) for javascript & HTML5 web-games. Development of highly dynamic surveys with meteor.js, being used with kids in schools."
}
],
"competences": [
{
"name": "HTML",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "Meteor",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "BBVA",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/62eedd50-743d-4318-bd8e-e74efe86c001_lnw8etyn9vjlxe71dp53.png",
"alt": "BBVA"
},
"URL": "http://www.bbva.com"
},
"roles": [
{
"name": "Project Manager / Scrum Master / Agile evangelist",
"startDate": "2012-01-01",
"finishDate": "2012-09-30",
"challenges": [
{
"description": "Scrum Master in BBVA, helping with the full migration of the retail banking platform to a new technology stack, and introducing the scrum methodology at the core of the bank digital transformation process. Management of five different teams (up to 30 front and backend developers)."
}
],
"competences": [
{
"name": "Jira",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Acceso",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/23/01/26/765698ea-c0a0-4ab8-9c77-76680b8e0596_index.png",
"alt": "index.png"
},
"URL": "https://www.acceso360.com/"
},
"roles": [
{
"name": "Project Manager",
"startDate": "2011-09-01",
"finishDate": "2012-01-31",
"challenges": [
{
"description": "Project manager of a small team hired to improve the client platform used to obtain corporate reputation metrics and perform market research, using the scrum methodology."
}
],
"competences": [
{
"name": "Doctrine",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "PRISA",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/fa1d282b-70ba-4798-a215-7bcf7ad9be07_odyfdhsjvvvmxzveneto.png",
"alt": "PRISA"
},
"URL": "http://www.prisa.com"
},
"roles": [
{
"name": "Project Manager / Software Developer",
"startDate": "2011-05-01",
"finishDate": "2011-09-30",
"challenges": [
{
"description": "Project Manager in Planeo (Grupo Prisa), producing and developing the viral platform used during the launch of planeo.es. Extreme programming methodology (XP) for two months, followed up by maintenance and monitoring during the successful viral stage of the platform, and its internationalization to Portugal."
}
],
"competences": [
{
"name": "AWS",
"type": "technology"
},
{
"name": "Amazon SQS",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "sngular",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/f6e03256-1d4a-487f-9b9d-166826000653_avbt15pn7hfglxx9rzgp.jpg",
"alt": "sngular"
},
"URL": "http://sngular.com"
},
"roles": [
{
"name": "Project Manager / Scrum Master",
"startDate": "2010-08-01",
"finishDate": "2012-10-31",
"challenges": [
{
"description": "Being part of the company for a second time, coming back to a project management position. Collaborating with different clients, introducing agile methodologies and improving results in various industries: banking, e-commerce and R+D.\n\n* 2012: Scrum Master in BBVA, managing five different teams (up to 30 front and backend developers).\n* 2011/12: Project Manager in Acceso, improving the client platform used to obtain corporate reputation metrics and perform market research.\n* 2011: Project Manager in Planeo (Grupo Prisa), producing the viral platform used during the launch of planeo.es.\n* 2010/11: Project Manager of several mobility projects developed by different external providers in BBVA, using agile methodologies."
}
],
"competences": [
{
"name": "AWS",
"type": "technology"
},
{
"name": "Amazon SQS",
"type": "technology"
},
{
"name": "Jira",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "BBVA",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/22bf9088-a6d6-4f8c-a144-fa90ecdc1a15_lnw8etyn9vjlxe71dp53.png",
"alt": "BBVA"
},
"URL": "http://www.bbva.com"
},
"roles": [
{
"name": "Agile Project Manager",
"startDate": "2010-04-01",
"finishDate": "2011-05-31",
"challenges": [
{
"description": "Remote Channels and Mobility Area: Project Manager of several mobility projects developed by different external providers in BBVA, using agile methodologies."
}
]
}
]
},
{
"organization": {
"name": "CeSViMa",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/ad547581-481a-4c6a-953b-97d105a75af2_wkxgs.png",
"alt": "CeSViMa"
},
"URL": "http://www.cesvima.upm.es"
},
"roles": [
{
"name": "Predoctoral Researcher",
"startDate": "2010-01-01",
"finishDate": "2010-04-30",
"challenges": [
{
"description": "R+D+i (Research + Development + Innovation) in the supercomputing and biotechnology fields (Madrid supercomputing center, CeSViMa), in the Cajal-BlueBrain european project: Software development, feasibility studies, implementation of new work, management and documentation methodologies."
}
]
}
]
},
{
"organization": {
"name": "Universidad Politécnica de Madrid",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/9e976565-3a25-43e4-9ce3-c9ea4e1b917d_gxxxs.jpg",
"alt": "Universidad Politécnica de Madrid"
},
"URL": "http://www.upm.es"
},
"roles": [
{
"name": "Software Architect",
"startDate": "2010-01-01",
"finishDate": "2010-04-30",
"challenges": [
{
"description": "R+D+i (Research + Development + Innovation) in the supercomputing and biotechnology fields (Madrid supercomputing center, CeSViMa), in the Cajal-BlueBrain european project: Software development, feasibility studies, implementation of new work, management and documentation methodologies."
}
],
"competences": [
{
"name": "Python",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "MediaNet Software",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/589bb528-b3d5-4452-82df-adf90cd1491c_dd03c08189fbe0d02476.png",
"alt": "MediaNet Software"
},
"URL": "http://www.medianetsoftware.com"
},
"roles": [
{
"name": "Technical Leader",
"startDate": "2007-10-01",
"finishDate": "2009-03-31",
"challenges": [
{
"description": "Software solutions for multiple clients introducing agile methodologies, including mobility projects (iPhone), plugins (Autocad and Excel), web projects and desktop applications, dividing the responsibilities between the technical and managing sides of the projects. Key duties:\n\n* Project proposals and time plannings.\n* Customer relationship management.\n* Team management.\n* Technology trainer.\n* Screening processes.\n* Software development."
}
],
"competences": [
{
"name": ".NET",
"type": "technology"
},
{
"name": "Apple iOS",
"type": "technology"
},
{
"name": "C#",
"type": "technology"
},
{
"name": "C++",
"type": "technology"
},
{
"name": "Objective-C",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Goal Systems",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/abac0681-5d6f-47af-ab3b-36b2c19f1c7a_bl4sx.png",
"alt": "Goal Systems"
},
"URL": "http://www.goalsystems.com"
},
"roles": [
{
"name": "Code Optimization Developer",
"startDate": "2007-01-01",
"finishDate": "2007-10-31",
"challenges": [
{
"description": "Solution-searching optimizations in the operations research field. Improvements in code algorithms, memory and cpu usage, etc."
}
],
"competences": [
{
"name": "C++",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Recreativos Franco",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/6a89bbbb-ba79-4cbf-a193-fc211397be79_pdhq3.jpg",
"alt": "Recreativos Franco"
},
"URL": "http://www.rfranco.com"
},
"roles": [
{
"name": "Game Developer",
"startDate": "2006-02-01",
"finishDate": "2007-01-31",
"challenges": [
{
"description": "Development of a touchscreen videogame platform for international casinos."
}
],
"competences": [
{
"name": "C++",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "Universitat Pompeu Fabra",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/1420232f-357e-4bd7-9547-ce7ada2e66c5_mnvdi.png",
"alt": "Universitat Pompeu Fabra"
},
"URL": "http://upf.edu"
},
"roles": [
{
"name": "Web Developer and Designer",
"startDate": "2004-02-01",
"finishDate": "2004-04-30",
"challenges": [
{
"description": "Web development. Information visualization and user interaction."
}
],
"competences": [
{
"name": "CSS",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
},
{
"name": "PHP",
"type": "technology"
}
]
}
]
},
{
"organization": {
"name": "House of Maldorne",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/23/08/02/e660261e-070d-487f-82ac-f0f471dc0628_icon.png",
"alt": "icon.png"
},
"URL": "https://maldorne.org"
},
"roles": [
{
"name": "(nonprofit) Lead Game Designer",
"startDate": "2003-01-01",
"challenges": [
{
"description": "Lead Game Designer in the nonprofit retro online game Ciudad Capital, part of the House of Maldorne organization.\n\n* World Building\n* Writing technical documentation\n* Training of new game designers\n* Development, testing and evolution of new mechanics\n* End of degree project based on the world building tools developed\n* Ph. D. Thesis (being written) based on the procedural content generation tools developed"
}
]
}
]
},
{
"organization": {
"name": "Universidad Carlos III de Madrid",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/1e958942-7955-4372-9131-a39fcb8a0cc7_q5hb0.jpg",
"alt": "Universidad Carlos III de Madrid"
},
"URL": "http://www.uc3m.es"
},
"roles": [
{
"name": "System Administrator",
"startDate": "2002-02-01",
"finishDate": "2003-01-31",
"challenges": [
{
"description": "System administration, HelpDesk, Web Design and Development."
}
]
}
]
}
],
"projects": [
{
"details": {
"name": "Hexagon",
"description": "A project to make old MudOS-alike mud libraries work with a modern DGD mud driver.",
"URL": "https://github.com/maldorne/hexagon",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/dd04db13-fab9-4f2a-b3a8-ad41f89c1068_hexagon_logo.png",
"alt": "hexagon_logo.png"
}
},
"type": "openSource",
"roles": [
{
"name": "Developer",
"startDate": "2014-08-01"
}
]
},
{
"details": {
"name": "okinawa.js",
"description": "javascript 2D game engine over html5-canvas",
"URL": "https://github.com/neverbot/okinawa.js",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/24/ef17b9ca-2951-4d41-a5d8-6c14dd5e3f0a_okinawa_logo.png",
"alt": "okinawa_logo.png"
}
},
"type": "openSource",
"roles": [
{
"name": "Developer",
"startDate": "2014-02-01",
"competences": [
{
"name": "HTML",
"type": "technology"
},
{
"name": "JavaScript",
"type": "technology"
}
]
}
]
},
{
"details": {
"name": "Koma Project",
"description": "Development of a 3D videogame for the Art Futura 2004 festival. Project awarded with the Mention for Best Technology of the festival."
},
"type": "sideProject",
"roles": [
{
"name": "Developer",
"startDate": "2004-05-01",
"competences": [
{
"name": "C++",
"type": "technology"
},
{
"name": "Lua",
"type": "technology"
},
{
"name": "OpenGL",
"type": "technology"
}
],
"finishDate": "2004-09-01"
}
]
}
]
},
"knowledge": {
"languages": [
{
"name": "EN",
"fullName": "Inglés",
"level": "Full professional proficiency"
},
{
"name": "ES",
"fullName": "Español",
"level": "Native or bilingual proficiency"
}
],
"hardSkills": [
{
"skill": {
"name": "AWS",
"type": "technology"
}
},
{
"skill": {
"name": "Docker",
"type": "technology"
}
},
{
"skill": {
"name": "Express",
"type": "technology"
}
},
{
"skill": {
"name": "JavaScript",
"type": "technology"
}
},
{
"skill": {
"name": "Laravel",
"type": "technology"
}
},
{
"skill": {
"name": "MongoDB",
"type": "technology"
}
},
{
"skill": {
"name": "PHP",
"type": "technology"
}
},
{
"skill": {
"name": "TypeScript",
"type": "technology"
}
}
],
"studies": [
{
"studyType": "officialDegree",
"degreeAchieved": true,
"name": "Engineer's degree (BSc and MSc), Ingeniería Superior Informática",
"startDate": "1997-09-01",
"institution": {
"name": "Universidad Politécnica de Madrid",
"description": "Five years degree in Information Technology. End of degree project in the game design and game development fields, graduated with honors.",
"URL": "http://www.upm.es",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/28/1d2ab7ed-6f1b-46f0-b3bb-0271738e60d8_politecnica-madrid-l.png",
"alt": "politecnica-madrid-logo.png"
}
},
"finishDate": "2005-09-30"
},
{
"studyType": "unaccredited",
"degreeAchieved": true,
"name": "Int. Artificial Intelligence",
"startDate": "2011-01-01",
"institution": {
"name": "Stanford University",
"description": "Online advanced track by Peter Norvig and Sebastian Thrun at Stanford University, 86.2% grade.\n\nTaught on an online platform which became the genesis of Udacity and the origin of mooc education.",
"URL": "http://stanford.edu",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/28/110421c5-0d72-47de-aa79-48d4203bfa9d_stanford-university-.png",
"alt": "Stanford-University-logo.png"
}
},
"finishDate": "2012-01-01"
},
{
"studyType": "officialDegree",
"degreeAchieved": true,
"name": "Master of Engineering (MEng), Advanced Artificial Intelligence (unfinished)",
"startDate": "2012-01-01",
"institution": {
"name": "UNED",
"URL": "http://www.uned.es",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/28/ff335203-67ec-4348-b49e-a2f1014ca353_logo-uned.jpg",
"alt": "logo-UNED.jpg"
}
},
"finishDate": "2013-01-01"
},
{
"studyType": "officialDegree",
"degreeAchieved": true,
"name": "Master's degree in Videogame Design and Development",
"startDate": "2003-01-01",
"institution": {
"name": "Universitat Pompeu i Fabra",
"description": "End of degree project awarded with the Mention for Best Technology of the ArtFutura 2004 festival.",
"URL": "http://www.upf.edu",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/28/6f21a5c1-ef0b-4662-9fc3-ec04e6a6e42e_50ed58bf-66df-ef68-e.png",
"alt": "50ed58bf-66df-ef68-e34e-ac1b3983c2f7.png"
}
},
"finishDate": "2004-01-01"
},
{
"studyType": "officialDegree",
"degreeAchieved": true,
"name": "Ph.D. Student",
"startDate": "2015-10-01",
"institution": {
"name": "Universidad Politécnica de Madrid",
"description": "Currently writing (in my little free time) my Ph.D. thesis in the fields of game design and procedural content generation. ",
"URL": "http://www.upm.es",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/22/03/28/6f5c6e66-6d63-403e-b3ba-7959d4c1290b_politecnica-madrid-l.png",
"alt": "politecnica-madrid-logo.png"
}
},
"finishDate": "2018-10-01"
},
{
"studyType": "officialDegree",
"degreeAchieved": false,
"name": "Ph.D. Student",
"startDate": "2023-10-01",
"institution": {
"name": "Universidad Complutense de Madrid",
"description": "Currently writing (in my little free time) my Ph.D. thesis in the fields of game design and procedural content generation. ",
"URL": "https://www.ucm.es",
"image": {
"link": "https://media-asgard.s3.eu-west-1.amazonaws.com/23/11/13/45b78265-f469-43d2-baf4-21c7b28164e2_ucm.png",
"alt": "UCM.png"
}
}
}
],
"softSkills": [
{
"skill": {
"name": "Attention to detail",
"type": "practice"
}
},
{
"skill": {
"name": "Continuous learning",
"type": "practice"
}
},
{
"skill": {
"name": "Critical view",
"type": "practice"
}
}
]
},
"careerPreferences": {
"contact": {
"publicProfiles": [
{
"URL": "https://www.linkedin.com/in/ivanalonso/",
"type": "linkedin"
},
{
"URL": "https://github.com/neverbot",
"type": "github"
},
{
"URL": "https://twitter.com/neverbot",
"type": "twitter"
}
]
},
"preferences": {
"preferredCompetences": [
{