-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprevious_events.html
1615 lines (1396 loc) · 79.3 KB
/
previous_events.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>MalagaMakers - Startup community - Previous events</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/stylish-portfolio.css" rel="stylesheet">
<link href="css/overwrites.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<a id="menu-toggle" href="#" class="btn btn-dark btn-lg toggle"><i class="fa fa-bars"></i></a>
<nav id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a id="menu-close" href="#" class="btn btn-light btn-lg pull-right toggle"><i class="fa fa-times"></i></a>
<a href="#top">MalagaMakers</a>
</li>
<li>
<a href="index.html#top">Home</a>
</li>
<li>
<a href="index.html#whatis">About</a>
</li>
<li>
<a href="index.html#events">Events</a>
</li>
<li>
<a href="index.html#team">Team</a>
</li>
<li>
<a href="index.html#sponsors">Sponsors</a>
</li>
<li>
<a href="index.html#join">Join</a>
</li>
<li>
<a href="previous_events.html">Previous events</a>
</li>
</ul>
</nav>
<section id="header" class="services">
<div class="container">
<div class="row text-center">
<div class="col-lg-10 col-lg-offset-1">
<h2>Previous events</h2>
<hr class="small">
</div>
<!-- /.col-lg-10 -->
</div>
</div>
</section>
<!-- Template for moving last "upcoming event" in index.html into here:
<section id="YYYYMMDD">
<div class="container"> -->
<!-- *** Paste here `<div class="row">` from last event *** -->
<!-- </div>
</section> -->
<section id="20180621">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2018-06-21">21<sup>th</sup> June 2018</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Malaga<wbr>Makers AFTER7 - June'18 - "Legal tips to create and promote a Startup in Spain" Talk</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome</li>
<li>19:10 - Talk:
<strong>Legal tips to create and promote a Startup in Spain</strong>
by <em>Antonio Cardador</em>
(Lawyer).
<br>
What steps should one follow to create a start-up in Spain? How to protect the project along with the shareholders' interests? How funding can be efficiently funnelled? Throughout the talk, Antonio will explain the laws that affect starting founders in Spain. He will give some tips on choosing the kind of company that fits you best. At the end he will allot time for Q&A.
</li>
<li>20:15 - <em>Lightning Talks</em>
- 5 min., no Spam, GO!</li>
<li>20:30 - <em>FREE BEERS and Networking </em>.
Beers kindly provided by our sponsor:
<a href="https://tlr-coworking.com/tlr-alameda/">
The Living Room</a>.</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://tlr-coworking.com/tlr-alameda/">
The Living Room</a> -
<a href="https://www.google.com/maps/place/The+Living+Room+Coworking/@36.7171999,-4.4229048,15z/data=!4m2!3m1!1s0x0:0x2838f41445745099?sa=X&ved=0ahUKEwjMnfzq1r_bAhVJuBQKHT6lBnsQ_BIIlgEwDg">
Alameda Principal 21, 3rd Floor, 29001 Málaga, Spain</a>
</p>
</div>
</div>
<h4>About
<a href="https://es.linkedin.com/in/antonio-%C3%A1ngel-cardador-rodr%C3%ADguez-31280a2a">
Antonio Cardador</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://es.linkedin.com/in/antonio-%C3%A1ngel-cardador-rodr%C3%ADguez-31280a2a">
<img class="img-testimonials img-responsive"
src="img/speakers/antonio-cardador.jpg" alt="Portrait of Antonio Cardador">
</a>
</div>
</div>
<div class="col-md-7">
<p>
Antonio Cardador is a Spanish lawyer specialized in IT, Start-ups, new ways of entrepeneurship and Civil Law. Antonio is one of the top Real Estate lawyers in Malaga, he is an Associate Professor at the University of Malaga, has done pro-bono work for the PAH non-profit organization and founded the law-firm "Cardador & Marin" in Fuengirola where he currently is named partner.
</p>
<p>
He is on Twitter <a href="https://twitter.com/cardador">
@cardador</a>
</p>
</div>
</div>
<h4>How to attend</h4>
<p>Meetup link of this event:
<a href="https://www.meetup.com/MalagaMakers/events/251123346/">
RSVP</a></p>
</div>
</div> <!-- /.row -->
</div><!-- container -->
</section>
<section id="20180315">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2018-03-15">15<sup>th</sup> March 2018</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Malaga<wbr>Makers AFTER7 - March'18 - Skype Engineer Talk</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome</li>
<li>19:10 - Talk:
<strong>Skype: The startup revival</strong>
by <em>Miguel Caballero</em>
(Sr. Engineer at Microsoft).
<br>
We usually find lots of information about scaling
from small startup to big corporations, but what
about the reverse journey? When you are a big
corporation and you want to get back the agility
and speed you used to have. The Skype team recently
went through that same process in a quest to find
their roots. Miguel Caballero Pinto, Senior
Software Developer at Skype, will tell us the key
learnings from evolving their entire organization
to become a startup again.
</li>
<li>20:00 - <em>Lightning Talks</em>
- 5 min., non profit, GO!</li>
<li>20:15 - <em>FREE drinks and networking </em>,
beers sponsored by
<a href="https://www.codespaceacademy.com/">
CodeSpace Academy</a>
and wine by
<a href="https://www.spaindigitaljobs.com/">
Spain Digital Jobs</a>.</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://www.codespaceacademy.com/">
CodeSpace Academy Málaga</a> -
<a href="https://www.google.com/maps?f=q&hl=en&q=Calle+Compositor+Lehmberg+Ruiz,+13,+M%C3%A1laga,+es">
Calle Compositor Lehmberg Ruiz 13, 29007 Málaga</a>
</p>
</div>
</div>
<h4>About
<a href="https://www.linkedin.com/in/miguelcaballero/">
Miguel Caballero</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/miguelcaballero/">
<img class="img-testimonials img-responsive"
src="img/speakers/miguel-caballero.jpg" alt="Portrait of Miguel Caballero">
</a>
</div>
</div>
<div class="col-md-7">
<p>
Miguel Caballero Pinto, originally from Malaga,
has worked at Microsoft for the last 8 years in many
different projects and roles, which gives him a broad
vision of the giant corporation. He worked as developer
evangelist in Microsoft Iberica, software engineer
in test at Microsoft Office in Microsoft Ireland and
software engineer at Visual Studio in Microsoft
Corporation.
</p>
<p>
Currently, he is working at Skype in the team
responsible for customer and engagement growth.
He is on Twitter <a href="https://twitter.com/mcaballeropinto">
@mcaballeropinto</a>
</p>
</div>
</div>
<h4>How to attend</h4>
<p>Meetup.com link of this event:
<a href="https://www.meetup.com/MalagaMakers/events/248231026/">
RSVP</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20180222">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2018-02-22">22th February 2018</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Malaga<wbr>Makers AFTER7 - Marketing & Company Culture</h3>
<h4>About <a href="https://www.linkedin.com/in/christo-ivanov-053b737b/">Christo Ivanov</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/christo-ivanov-053b737b/"><img class="img-testimonials img-responsive" src="img/speakers/christo-ivanov.jpg" alt="Portrait of Christo Ivanov"></a>
</div>
</div>
<div class="col-md-7">
<p>
Christo is a co-founder and a managing partner
at <a href="https://www.rindus.de/">rindus</a>.
With more than 20 years of experience in software
development and more than 10 years of experience
in growing and leading software development teams,
Christo has a strong focus on strategical
and people management as well as innovations.
Christo, together with his partner Rolf
and their team, have built rindus around
the idea that people are in the centre of technology.
</p>
</div>
</div>
<h4>About <a href="https://www.linkedin.com/in/bricechalopet/">Brice Chalopet</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/bricechalopet/"><img class="img-testimonials img-responsive" src="img/speakers/brice-chalopet.jpg" alt="Portrait of Brice Chalopet"></a>
</div>
</div>
<div class="col-md-7">
<p>
After working for 15 years in digital (SAAS, ecommerce,
publishing, advertising) and most recently spending
6 years at Facebook, Brice recently moved to Málaga.
His key expertises are drafting and executing commercial
strategies, consulting clients on complex digital
solutions, driving projects cross-functionally
and growing people.
</p>
<p>
He now consults companies (Flying Tiger, Freepik,
Workkola, Relondo, Mentes Expertas, etc.) and
mentors startups (Andalucia Open Future, Bolt)
on how to use Facebook’s solutions to grow their
business.
He is on Twitter <a href="https://twitter.com/bricechalopet">@bricechapolet</a></p>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://www.metropolitandesignlab.es/contact/">Metropolitan Design Lab</a> - <a href="https://www.google.com/maps/place/Calle+Alh%C3%B3ndiga,+6,+29005+M%C3%A1laga/@36.7186005,-4.4234573,21z/data=!4m5!3m4!1s0xd72f79681bca911:0x4b40bfc8d0b6ab45!8m2!3d36.7186306!4d-4.4234861">c/ Alhóndiga 6, 2º C & D. 29005 - Malaga city</a>
</p>
</div>
</div>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome</li>
<li>19:10 - Talk title:<br>
<strong>Facebook ads advice from ex-Facebook guy; 3 things to learn, to forget and to change to get great results</strong><br>
by <em>Brice Chalopet</em>.</li>
<li>19:40 - Talk title:<br>
<strong>Company Culture - Beyond the Buzzword</strong><br>
by <em>Christo Ivanov</em></li>
<li>20:20 - Lightning Talks - 5 min., non profit, GO!</li>
<li>20:30 - Networking with FREE beers thanks to our sponsor <a href="https://www.spaindigitaljobs.com/">Spain Digital Jobs</a></li>
</ul>
</div>
</div>
<h4>How to attend</h4>
<p>Meetup.com link of this event: <a href="https://www.meetup.com/MalagaMakers/events/247054873/">RSVP</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20171109">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2017-11-09">09th November 2017</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Malaga<wbr>Makers Geek<wbr>Beers - Programming with Scala, Why?</h3>
<h4>Session</h4>
<p>What is Scala and what is special about Scala?
Why is it getting so popular programming in Scala?
What does Scala give us?
Cristina will give us the answer to these and more questions,
while also showcasing some illustrative Scala examples.
</p>
<h4>About <a href="https://www.linkedin.com/in/cristina-heredia-g%C3%B3mez-4905b5147/">Cristina Heredia</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/cristina-heredia-g%C3%B3mez-4905b5147/"><img class="img-testimonials img-responsive" src="img/speakers/cristina-heredia.jpg" alt="Portrait of Cristina Heredia"></a>
</div>
</div>
<div class="col-md-7">
<p>Cristina Heredia is a creative and curious fellow geek from Granada who will give us the rundown on Scala.
She is also an organizer of the <a href="https://geekandtechgirls.github.io/" target="_blank">Geek&TechGirls organization</a>,
which is a commmunity in Granada that tries to bring free software and girls and women together.
</p>
<p>Despite her youth, Cristina is an specialist in AI who obtained the Talentum Startups Telefónica Grant.
From that, she developed a computer vision system to detect moles changes and help diagnose skin cancer.
Now, she works at <i>Conecta 13</i> while studying a Data Science Master degree at the University of Granada.
Personally, Cristina is committed to the inclusion of women in STEM careers.
She also posts in the blog <i><a href="https://elbauldelprogramador.com/" target="_blank">El Baúl del Programador</a></i>,
she implemented a Spanish text processing tool and she is involved in several open source projects.
</p>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://www.codespaceacademy.com/" target="_blank">CodeSpace Academy Málaga</a> - <a href="https://www.google.com/maps?f=q&hl=en&q=Calle+Compositor+Lehmberg+Ruiz,+13,+M%C3%A1laga,+es">Calle Compositor Lehmberg Ruiz 13, 29007 Málaga</a>
</p>
</div>
</div>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome & intro by Malaga<wbr>Makers</li>
<li>19:10 - Talk: <em>Programming with Scala, Why?</em> by Cristina Heredia</li>
<li>20:10 - Lightning talks - 5 Minutes, non profit - GO!</li>
<li>20:30 - FREE beers and WINE - Networking</li>
</ul>
</div>
</div>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/244282476/">RSVP</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20170420">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2017-04-20">20th April 2017</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Malaga<wbr>Makers Geek<wbr>Beers - Internet of Things</h3>
<h4>Session</h4>
<p>Kevin Kalish talks about his experiences in the Asia Pacific region, implementing “Industrial Internet” solutions. Kevin talks about lessons learnt in the field and explains the necessary steps for a successful implementation of new business models.
</p>
<h4>About <a href="https://www.linkedin.com/in/kevin-kalish-3041a44">Kevin Kalish</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/kevin-kalish-3041a44"><img class="img-testimonials img-responsive" src="img/speakers/kevin-kalish.jpg" alt="Portrait of Kevin Kalish"></a>
</div>
</div>
<div class="col-md-7">
<p>As Business Lead for IoT & Advanced Analytics, Kevin Kalish was responsible for IoT at SAS Institute Australia, until permanently moving to Malaga at the end of 2016.</p>
<p>Kevin worked with customers from diverse industries: Oil&Gas, Mining, Transportation, Aviation and Manufacturing. Prior to this role, Kevin held various technical architecture roles at SAS, Oracle, NICE Systems & Citibank</p>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://growworking.com/grow-working-malaga/">Grow Working</a> - <a href="https://goo.gl/maps/xPcguuo4Nrj">Carril de la Cordobesa 29, local, 29003 Málaga</a>
</p>
</div>
</div>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome & intro to Malaga<wbr>Makers</li>
<li>19:15 - Talk: IoT – Introduction to analytics, business models and architectures</li>
<li>19:55 - Q&A with Kevin Kalish</li>
<li>20:15 - Lightning talks - 5 Minutes, non profit - GO!</li>
<li>20:30 - FREE beers - Networking</li>
</ul>
</div>
</div>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/238673879/">RSVP</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20160128">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2016-01-28">28th January 2016</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Frontend Makers - Making usability, design & frontend work together</h3>
<div class="row">
<div class="col-md-7">
<p>
Malaga Makers is creating a new series of events targeted mainly to all the people working in the different parts of the apps and webapps frontend, <strong>Frontend Makers</strong>.
</p>
<p>
The talks will be targeted mainly to designers, experts in user experience and frontend developers interested on learning new skills, though everyone will be welcomed.
</p>
<p>
As always we will be having free beers and wine for the networking!
</p>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://www.google.com/maps/place/Calle+Bodegueros,+21,+29006+M%C3%A1laga,+Spain/@36.7053557,-4.4504868,17z/data=!3m1!4b1!4m2!3m1!1s0xd72f77b45adf92b:0x753c7f428d3137fa?hl=en">Edificio Luxfor, Bloque 1</a><br>
C. Bodegueros, 21 29006 Málaga
</p>
</div>
</div>
<h4>About <a href="https://es.linkedin.com/in/rafa-d-latorre-lópez-villalta-48438728">Rafa Latorre</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://es.linkedin.com/in/rafa-d-latorre-lópez-villalta-48438728"><img class="img-testimonials img-responsive" src="img/rafa_bn.jpg" alt="Portrait of Rafa Latorre"></a>
</div>
</div>
<div class="col-md-7">
<p>
Rafa Latorre is UX chief and lead frontend developer at <a href="http://www.tolq.com/">Tolq.com</a> with more than 9 years of experience tackling user interface challenges.
</p>
</div>
</div>
<h4>Session</h4>
<div class="row">
<div class="col-md-7">
<p>
Three main roles are involved in the creation of the frontend of a good application: the usability expert, the visual designer and the frontend developer.
</p>
<p>
Those different roles can be taken care by one or more people but way too often the needs and requirements of each one of them clash with horrible consequences leading to arguments, poor specs, frustrations and slow development.
</p>
<p>
In this talk we will go through a story based on true events involving said roles that ended in a huge waste of time and a really disappointing design. After that we will go through the insights gained from the experience and the steps to make those roles play well along.
</p>
</div>
</div>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/227608792/">RSVP</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20160121">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>21st January 2016</h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>First Ideathon</h3>
<h4>Description</h4>
<div class="row">
<div class="col-md-7">
<p>
The focus of the first Ideathon is:<br>
How can we improve life in Malaga by setting up massive quality feedback mechanism via smart phones” (f.i. every inhabitant can measure with his smartphone the air quality in Malaga city, it will be shown on a map, for anyone accessible; or for instance an massive evaluation of any bus driver on his driving skills as an analogy to Tripadvisor).
</p>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p><a href="https://www.google.es/maps/place/Centro+Municipal+de+Inform%C3%A1tica+del+Ayuntamiento+de+M%C3%A1laga/@36.698019,-4.4410516,17z/data=!3m1!4b1!4m2!3m1!1s0xd72f9d5386c28bb:0x44ed3931985265d1?hl=en">Tabacalera</a>, C/ Concejal Muñoz Cerván, 3<br>
MODULO 5 Planta Baja
</p>
</div>
</div>
<h4>About <a href="https://www.linkedin.com/in/gijsvanbeeckcalkoen">Gijs van Beeck Calkoen</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/gijsvanbeeckcalkoen"><img class="img-testimonials img-responsive" src="img/gijs.jpg" alt="Portrait of Gijs"></a>
</div>
</div>
<div class="col-md-7">
<p>The Ideathon will be facilitated by Gijs van Beeck Calkoen. Companies ask Gijs to work with their teams to create breakthrough ideas for innovations. For that, he applies world renowned systematic creativity tools, like <a href="https://en.wikipedia.org/wiki/Lateral_thinking">Lateral Thinking</a> and the Russian <a href="https://en.wikipedia.org/wiki/TRIZ">Triz methodology</a>. Gijs is founder of the <a href="http://www.stoutmoedigdenken.org/en/Home/">Practice for Bold Thinking –<i>Creating Innovations</i></a>.</p>
</div>
</div>
<h4>To know more</h4>
<p><a href="https://www.malagamakers.com/ideathons">Ideathons page</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20151222">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2015-12-22">22th December 2015</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>MalagaMakers "On the Move", with David Heinemeier Hansson</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - welcome</li>
<li>19:15 - Q&A with DHH</li>
<li>20:15 - Lightning talks - 5 Minutes, non profit - GO!</li>
<li>20:30 - FREE beers and WINE - Networking</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>In <a href="https://maps.google.com/maps?f=q&hl=en&q=Palacio+de+Congresos+y+Exposiciones+Adolfo+Suarez%2C+Marbella%2C+es">Palacio de Congresos y Exposiciones Adolfo Suarez</a>
</p>
</div>
</div>
<h4>About <a href="http://david.heinemeierhansson.com/">David Heinemeier Hansson</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="http://david.heinemeierhansson.com/"><img class="img-testimonials img-responsive" src="img/speakers/dhh.jpg" alt="Portrait of DHH"></a>
</div>
</div>
<div class="col-md-7">
<p>Is the creator of RubyonRails, author, blogger, founder & CTO of Basecamp, Le Mans class-winning race driver, public speaker, hobyist photographer and family man.</p>
</div>
</div>
<h4>Session</h4>
<p>
We are honored to have a very special guest who does not need introduction.
</p>
<p>
We will have a very special guest David Heinemeier Hansson it would be very hard to list all of his activities and achievements, but mostly who most known for authoring Ruby on Rails, Basecamp, books and much much more.
</p>
<p>
This event will be a Q&A session so please submit your questions here, since due to the demand we will have to prioritize the questions: <a href="http://goo.gl/forms/FAKwZmLiJ3">http://goo.gl/forms/FAKwZmLiJ3</a>
</p>
<p>
Also you are invited to submit a lightning talk here: <a href="http://goo.gl/forms/YKDhfnKxq3">http://goo.gl/forms/YKDhfnKxq3</a>
</p>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/227289320/">RSVP</a></p>
<strong>As this is our first event outside of Malaga
Please be kind to the nature and to others, if you are coming by car invite others to a ride on
blbla car(<a href="https://play.google.com/store/apps/details?id=com.comuto&hl=en">android</a>
or <a href="https://www.google.es/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwjH6ceQk-HJAhVCvxoKHe3CB_wQFggiMAA&url=https%3A%2F%2Fitunes.apple.com%2Fes%2Fapp%2Fblablacar-trusted-ridesharing%2Fid341329033%3Fl%3Den%26mt%3D8&usg=AFQjCNFWSET14xGMvuvD0YlJLlxO4yNEkg&sig2=VGkXCjOa4MABVbQFeQurpQ">iphone</a>)
or with wego(<a href="https://play.google.com/store/apps/details?id=com.nestech.sagacity&hl=en">android </a>or <a href="https://www.google.es/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=0ahUKEwjM68qv--DJAhVCzxQKHVH1CWIQFgglMAE&url=https%3A%2F%2Fitunes.apple.com%2Fnl%2Fapp%2Fwego-social-transport%2Fid866080160%3Fmt%3D8&usg=AFQjCNHM3ZP5YDrBSMK1DmfgpF6b_eBdyg&sig2=MY5NjKJXBFqxJ5flohWVbQ&bvm=bv.110151844,d.d24&cad=rja">iphone</a>)
</strong>
<br>
<br>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20151126">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2015-11-26">26th November 2015</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>Special guest event - AFTER7 meets the GeekBeers</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - welcome</li>
<li>19:10 - Joaquin Cuenca Abela - meet the expert</li>
<li>20:30 - Lightning talks - 5 Minutes, non profit - GO!</li>
<li>20:45 - FREE beers and WINE - Networking</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://maps.google.com/maps?f=q&hl=en&q=Calle+Alh%C3%B3ndiga+6%2C+2%C2%BA+C+y+D%2C+M%C3%A1laga%2C+M%C3%A1laga%2C+es">Metropolitan design lab,Calle Alhóndiga 6, 2º C y D, Málaga, Málaga</a>
</p>
</div>
</div>
<h4>About <a href="https://www.linkedin.com/in/joaquin-cuenca-abela-905717a">Joaquin Cuenca Abela</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/joaquin-cuenca-abela-905717a"><img class="img-testimonials img-responsive" src="img/speakers/cuenca.jpg" alt="Portrait of Joaquin Cuenca"></a>
</div>
</div>
<div class="col-md-7">
<p>Joaquin Cuenca Abela has participated in LoQuo (acquired by eBay in 2005), founded Panoramio (acquired by Google in 2007), founded PressPeople, Thumbr.io and is a co-founder in Freepik and Resultados de Fútbol.</p>
</div>
</div>
<h4>Session</h4>
<p>
Joaquin started some companies without external investment,has a lot of experience with the spanish VC ecosystem, and how some of these companies grew from zero to millions of users and millions in revenue in a few years.
</p>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/226658658/">RSVP</a></p>
</div>
</div> <!-- /.row -->
</div>
</section>
<section id="20151105">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2015-11-05">5th November 2015</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>MalagaMakers GeekBeers - Data stores: beyond relational databases</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - welcome</li>
<li>19:10 - Data stores: beyond relational databases by Javier García Magna</li>
<li>20:10 - Lightning talks - 5 Minutes, non profit - GO!</li>
<li>20:30 - FREE beers and WINE - Networking</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p><a href="https://maps.google.com/maps?f=q&hl=en&q=Calle+M%C3%A9ndez+N%C3%BA%C3%B1ez%2C+5.+1%C2%BA+D.+29008%2C+M%C3%A1laga%2C+es">Calle Méndez Núñez, 5. 1º D. 29008, Málaga</a>
</p>
</div>
</div>
<h4>About <a href="http://lanyrd.com/profile/javier-garcia-magna/">Javier García Magna @ndsrf</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="http://lanyrd.com/profile/javier-garcia-magna/"><img class="img-testimonials img-responsive" src="https://photos1.meetupstatic.com/photos/member/8/3/0/f/highres_246933551.jpeg" alt="Portrait of Javier Garcia"></a>
</div>
</div>
<div class="col-md-7">
<p>Javier García Magna Software developer, head of development of sequel business solutions (www.sequel.com), organizer @dotnetmalaga</p>
</div>
</div>
<h4>Session</h4>
<p>A quick overview of the several options we have right now when choosing the architecture of our data storage system. Relational is fantastic, but sometimes we have the feeling our problem won’t fit very well there… are there any other options? We will review a few different DB engines and we will see examples on how we can use them from our Microsoft .Net applications (or any others, really).
</p>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/225695665/">RSVP</a></p>
</div>
</div><!-- .row -->
</div><!-- .container -->
</section>
<section id="20151015">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2015-10-15">15th October 2015</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>MalagaMakers AFTER7 - October</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome</li>
<li>19:10 - “How to Get Ideas Intentionally” by Gijs van Beeck Calkoen
<li>20:00 - Lightning talks session open to anyone who wants to speak for 5 minutes maximum. You can present your project or your group, etc.. (read more about lightning talks here). The only rules: should be in English and not to be simple commercial self-promotion (spam).</li>
<li>20:20 - FREE BEERS and networking!!</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p><a href="https://maps.google.com/maps?f=q&hl=en&q=Calle+Alh%C3%B3ndiga+6%2C+2%C2%BA+C+y+D%2C+M%C3%A1laga%2C+M%C3%A1laga%2C+es">Metropolitan design lab,Calle Alhóndiga 6, 2º C y D, Málaga, Málaga</a>
</p>
</div>
</div>
<h4>About <a href="http://www.stoutmoedigdenken.org/en/Home/">Gijs van Beeck Calkoen</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="http://www.stoutmoedigdenken.org/en/Home/"><img class="img-testimonials img-responsive" src="https://photos2.meetupstatic.com/photos/member/3/7/c/8/highres_244274280.jpeg" alt="Portrait of Gijs"></a>
</div>
</div>
<div class="col-md-7">
<p>Companies ask Gijs to work with their teams to create breakthrough ideas for innovations.<br>
For that, he applies world renowned systematic creativity tools, like
<a href="https://en.wikipedia.org/wiki/Lateral_thinking">Lateral
Thinking</a> and the Russian <a href="https://en.wikipedia.org/wiki/TRIZ">Triz methodology</a>.
Gijs is founder of the <a href="http://www.stoutmoedigdenken.org/en/Home/">Practice for
Bold Thinking – <i>Creating Innovations</i>.</a>
</p>
</div>
</div>
<h4>Session</h4>
<ul>
<li><i>....Maybe your business is not going as well as you wish...........</i></li>
<li><i>....Maybe your business is not going as well as you wish...........</i></li>
<li><i>....Perhaps you are stuck in a problem, trying to solve it for years...........</i></li>
<li><i>....Your costs are rising, but you don't know how to reduce them substantially.......</i></li>
<li><i>....Your product is at the end of its life cycle, what next?....</i></li>
<li><i>.....You are thinking about a new innovative app, but what?....</i></li>
</ul>
<p>You need a really good idea. An idea that hits through the wall.<br>
Chances that you are caught up in a thinking pattern that hinders you to arrive at a really new idea. Thinking outside the box is needed, but how?<br>
In this mini-workshop Gijs will give you some tools. Take pen and paper with you!
</p>
<h4>How to attend</h4>
<p>Meetup.com link of the event: <a href="https://www.meetup.com/MalagaMakers/events/225695336/">RSVP</a></p>
</div>
</div> <!-- /.row -->
</div><!-- .container -->
</section>
<section id="20150709">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><time datetime="2015-07-09">9th July 2015</time></h2>
<hr/>
</div>
<div class="col-md-1">
<h3><time datetime="19:00">7pm</time></h3>
</div>
<div class="col-md-10">
<h3>MalagaMakers GeekBeers - June</h3>
<h4>Agenda</h4>
<div class="row">
<div class="col-md-7">
<ul>
<li>19:00 - Welcome</li>
<li>19:10 - "real-time communication of sensors for IoT" by Uffe Björklund</li>
<li>20:00 - Lightning talks session open to anyone who wants to speak for 5 minutes maximum. You can present your project or your group, etc.. (read more about lightning talks here). The only rules: should be in English and not to be simple commercial self-promotion (spam).</li>
<li>20:20 - FREE BEERS and networking!!</li>
</ul>
</div>
</div>
<h4>Where?</h4>
<div class="row">
<div class="col-md-7">
<p>
<a href="https://maps.google.com/maps?f=q&hl=en&q=Calle+Alh%C3%B3ndiga+6%2C+2%C2%BA+C+y+D%2C+M%C3%A1laga%2C+M%C3%A1laga%2C+es">Metropolitan design lab,Calle Alhóndiga 6, 2º C y D, Málaga, Málaga</a>
</p>
</div>
</div>
<h4>About <a href="https://www.linkedin.com/in/uffebjorklund">Uffe Björklund</a></h4>
<div class="row">
<div class="col-md-2">
<div class="testimonials-item">
<a href="https://www.linkedin.com/in/uffebjorklund"><img class="img-testimonials img-responsive" src="img/speakers/uffe.jpg" alt="Portrait of Uffe"></a>
</div>
</div>
<div class="col-md-7">
<p>Uffe has been a developer since 2000, and as many other people in our line of business he is fortunate to say that his work is his hobby. Uffes main expertise is within the .NET stack, but regardless of platform Uffes passion is real time technologies. Uffe is the CEO and co-founder of XSockets.NET. Besides the love for real time, he also write/teach courses and talk at conferences/code camps. He have had the opportunity to speak at conferences and code camps in the U.S. and Europe in recent years.
</p>
</div>
</div>
<h4>Session</h4>
<p>“Internet Of Things” has been hot for a while now, and these days we are expected to be able to view data from sensors in our smart devices in real time. Data that in the past was viewed (if viewed at all) historically…<br>
One of the challenges with IoT is that different sensors/clients has different abilities. There is no standard way of communication for IoT even though there is work being done in that area. <br>
In this session we will build and deploy a real time communication solution to Azure so that we can view sensor data in real-time. Hopefully there will be people in the room that will help me to produce sensor data to the cloud service. <br>
Things we need to solve in this session:
</p>
<ul>
<li>The sensor tag (from Texas Instruments) being used will not have a network connection so we will need to bridge the BLE connection to something with network access</li>
<li>We need to be able to connect client using different communication protocols to each other</li>
<li>Monitoring clients have individual needs/demands, so we do not want to broadcast all sensor data to all clients, so how do we solve that?</li>