summaryrefslogtreecommitdiff
path: root/.emacs.d.back/diary
blob: bda8df9bd0ffdce1d32648de0fb8ad87797e0010 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
%%(and (diary-block 6 11 2019 6 11 2019)) :(
%%(and (memq (calendar-day-of-week date) '(5 1 4 2 3)) (diary-cyclic 1 8 5 2019)) 12:00-12:30 CC - Daily Pincodes
 Organizer: mailto:roger@rogs.me
10/13/2019 10:44-11:44 Reunión con Sandra para apartamento
10/5/2019 13:30-14:30 Viaje a Uruguay
11/22/2019 19:44-22:44 Meetup Dribbble
10/2/2019 18:30-19:30 Reunión con Papá y Pedro
9/7/2019 10:30-13:30 Jornada veterinaria
 Location: Pets Mall
7/24/2019 17:00-18:00 Getting Started with AWS Lambda and Serverless Computing
 Desc: Serverless computing means that you can build web, mobile, and IoT backends, run stream processing or big data workloads, run chatbots, and more, without the need for provisioning or managing servers. In this tech talk, learn how to get started with serverless computing with AWS Lambda, which lets you run code without provisioning or managing servers. We will introduce you to the basics of building with Lambda and its event-driven model. As part of that, we will show how you can benefit from features such as continuous scaling, built-in high availability, integrations with AWS and third-party apps, and subsecond metering pricing. We will also introduce you to the broader portfolio of AWS services that help you build serverless applications with Lambda, including Amazon SQS, Amazon API Gateway, Amazon DynamoDB, AWS Step Functions, and more.
 
 Your login: http://cloudwebinaraws.adobeconnect.com/r6negz4a1xbd?login=roger@rogs.me&password=amazon
 Location: Join using the link below
%%(and (diary-cyclic 14 8 23 2019)) Mercado
9/5/2019 11:30-12:30 Reunión con Ramiro
4/10/2019 15:00-15:30 Meeting with Sarathi
 Desc: meet.google.com/btp-pphe-soo
 
%%(and (diary-block 9 2 2019 9 2 2019)) Viaje a embajada de Chile
3/20/2019 12:30-13:00 Meeting with BlueTeam
 Desc: 	
 meet.google.com/cdp-wqyu-qpj
%%(and (diary-block 10 18 2019 10 18 2019)) Azumo interview - Roger Gonzalez / Gerardo
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 No edite esta sección de la descripción.
 
 Este evento tiene una videollamada.
 Unirse: https://meet.google.com/rff-ghgw-niy
 +1 631-743-5337 PIN: 604826333#
 
 Consulta el evento en https://www.google.com/calendar/event?action=VIEW&eid=NDBwM29oaGVrOGU4MHBmMDBvbzRrdnAwYzQgcm9nZXJAcm9ncy5tZQ&tok=MTYjZ2VyYXJkb0BhenVtby5jbzZiN2IwYzgwOWM0ZTgwZmYwZmFjMDllNmFkNjA5YjIwZTIzNjI0MTc&ctz=America%2FArgentina%2FBuenos_Aires&hl=es_419&es=1.
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:roger@rogs.me
8/22/2019 13:30-15:30 Almuerzo con Maria Eugenia
 Location: Giannis
11/1/2019 15:44-16:14 Entrevista con PedidosYa
11/19/2019 10:44-11:44 Cita de Identificacion
4/10/2019 18:00-19:00 Meeting with Juan (CocaCola)
12/3/2019 15:44-16:44 Entrevista en PedidosYa
 Location: Plaza Independencia 759, piso 6, Edificio Victoria Plaza, Raddison
4/10/2019 14:30-15:00 QA Meeting
 Desc: meet.google.com/stk-hfzg-btq
 
8/23/2019 14:00-15:00 CC Pincodes | Desglose acciones Sprint 1
 Desc: https://meet.google.com/fgp-gsmf-kup
9/9/2019 11:00-11:30 Reunion de correos - Pincodes
3/28/2019 12:30-13:30 Tech evaluation with Bluecoding
 Desc: meet.google.com/pgz-xoez-ray
8/29/2019 11:30-12:00 Cobrar a Saron
 Location: Guerra Mendez
4/12/2019 17:00-18:00 Interview with Genius Sports Group
%%(and (diary-anniversary 9 21 2019))  Cumpleaños de Valentina Gomez
%%(and (diary-cyclic 21 8 26 2019)) Lavanderia
11/1/2019 10:44-11:14 Entrevista técnica en Azumo
9/14/2019 09:30-10:30 Visitar cliente en Clínica Valencia Plaza
7/25/2019 13:00-14:00 MySQL Options on AWS: Self-Managed, Managed, Serverless
 Desc: In this tech talk, we will provide an overview of MySQL deployment options available on AWS, including self-managed (running MySQL yourself on Amazon EC2) and managed (running MySQL databases in Amazon RDS). We'll also cover the key differences between these options, and explain the range of managed options available with Amazon RDS for MySQL, Amazon RDS for MariaDB, and Amazon Aurora MySQL-compatible edition (including Aurora Serverless). You'll learn the basics of how to deploy, operate, scale, and monitor MySQL and MySQL-compatible databases using these services. Finally, we'll demonstrate how to easily deploy a serverless MySQL-compatible database instance using Aurora Serverless.
 
 Your login: http://cloudwebinaraws.adobeconnect.com/r8vv2p2nfoy9?login=roger@rogs.me&password=amazon
 Location: Join using the link below
7/24/2019 13:00-14:00 Deep Dive on AWS Certificate Manager Private CA - Creating and Managing Root and Subordinate Certificate Authorities
 Desc: AWS recently announced Root CA Hierarchies for ACM Private Certificate Authority (CA). CA administrators can now quickly and easily create a complete CA hierarchy, including root and subordinate CAs, with no need for external CAs. In this tech talk, we will provide an overview of ACM Private CA and some common use cases, such as issuing private certificates to identify devices. You will learn how to create a two level CA hierarchy and use it to issue private certificates. You will also learn some security best practices for creating and managing a CA hierarchy and have a chance to ask questions.
 
 Your login: http://cloudwebinaraws.adobeconnect.com/r49gwbb4c5t6?login=roger@rogs.me&password=amazon
 Location: Join using the link below
3/18/2019 05:30-06:30 Reunión de coordinadores 
 Location: PIBV
3/18/2019 17:30-20:30 Reunion de Iglesia
11/22/2019 19:44-22:14 Diseño y Desarrollo alineados a la experiencia de usuario
 Desc: El próximo Viernes 22 de Noviembre tendremos una nueva edición de la Meetup de Dribbble con nuevo sponsor: Zepelin labs
 
 El tema será: "Diseño y Desarrollo alineados a la experiencia de usuario"
 
 Y como ya acostumbramos en la meetup de Dribbble estaremos compartiendo una charla y luego abriremos el espacio a un Design therapy en el cual compartiremos opiniones y experiencias sobre la charla.
 
 Esta vez nuestra expositora será Teresita Ambrosio y ella nos cuenta lo siguiente sobre su charla:
 
 "¿Quiénes se encargan de definir la experiencia de usuario? En esta próxima meetup hablaremos sobre cómo diseñadores y desarrolladores deben alinearse y entender las necesidades del usuario, siendo ambos equipos partícipes del proceso de diseño centrado en el usuario, evitando interferencias y trabajando para un mismo fin."
 
 Los invitamos a estar atentos porque el 1ero de Noviembre abrimos las inscripciones para la meetup.
 
 Si quieren mantenerse informados de todo lo que sucede en DribbbleMVD pueden seguirnos en redes
 
 Tenemos Instagram, Twitter y Linkedin: @dribbblemvd
 
 Nos vemos!
 
 Details: https://www.meetup.com/dribbblemvd/events/265018289/
 Location: Av Italia 6201, Montevideo, Uruguay
8/12/2019 17:30-18:30 Reunion con Carlos sobre DB
%%(and (diary-block 9 28 2019 9 28 2019)) Mudanza de Guataparo
8/14/2019 13:30-15:00 Reunion con Maria Eugenia
4/15/2019 12:00-12:30 Meeting with Andreas
4/10/2019 12:30-13:00 Meeting with Sebastian Mejia
 Location: Google chat
%%(and (diary-cyclic 14 8 17 2019)) Barbería
9/4/2019 20:00-21:00 Reunión Identidad Misional
4/5/2019 11:30-12:00 Reunion con Massive
 Desc: https://meet.google.com/zdy-isdu-zix
12/19/2019 17:14-18:44 Reunion en Mercado Libre
 Desc: Genial, te espera Fiorella Reyes en la torre 4, piso 39.
 Jueves 19/12 a las 16:30
 Location: WTC Torre 4, Piso 39
11/8/2019 14:44-15:14 Entrevista de Valen
6/6/2019 09:30-10:30 Reunion con Payever
12/12/2019 18:14-19:44 Reunion con Mercado Libre
 Desc: Te espero el miercoles (11/12) a las 17 horas. en WTC, Torre 1, piso 6, oficina 608
11/8/2019 10:44-11:44 Entrevista en Azumo
 Desc: meet.google.com/gud-fqqi-vgm
8/21/2019 20:30-23:30 Despedida de Rossana Jaimes
11/20/2019 19:44-22:44 ILA 19 Medellin
11/3/2016 15:00-15:30 Meeting about Fwib with ChiTech 
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.d84rja17i3p5mj47ne9dq889ls?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Location: Hangouts Video Call
 Organizer: mailto:rogergonzalez21@gmail.com
2/29/2012 12:30-13:30 Asgn:Programación III, tarea
 Desc: Tarea.  .
 Location: Unitec Guacara
6/7/2016 11:30-12:30 Interview position Analyst-Developer Python
 Desc: 
 
 -- Do not delete or change any of the following text. --
 
 
 Join WebEx meeting<https://intercalleurope.webex.com/intercalleurope/j.php?MTID=m8268403325a0da8123a551a96b60c740>
 Meeting number: 707 585 485
 
 
 If you are the host, you can use the meeting host key to pass the host privilege to another participant or to start the meeting from a video conferencing system or application. To find the host key for this meeting, go here.<https://intercalleurope.webex.com/intercalleurope/j.php?MTID=ma47ef734358d85f11bdeca86f0f9196d>
 
 Join by phone
 Call-in number: +44-2078970111 (United Kingdom)
 Show global numbers<https://www.tcconline.com/offSite/OffSiteController.jpf?cc=9812237878>
 Conference Code: 981 223 7878
 
 
 Can't join the meeting? Contact support.<https://intercalleurope.webex.com/intercalleurope/mc>
 
 IMPORTANT NOTICE: Please note that this WebEx service allows audio and other information sent during the session to be recorded, which may be discoverable in a legal matter. By joining this session, you automatically consent to such recordings. If you do not consent to being recorded, discuss your concerns with the host or do not join the session..
 
 
 
 Location: Skype for Business
 Organizer: mailto:werner.dewever@eur.bosal.com
6/15/2016 12:00-12:30 Reunión para Bot de Febeca
 Desc: Reunión con Geovanny Espinoza para discutir sobre el Bot de Febeca. 
 
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.tqhcun3bicp8pa2c60b5s8j0fg?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
%%(and (diary-block 2 28 2012 2 28 2012)) Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
8/25/2018 10:30-11:30 Church meeting
2/22/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
11/2/2016 18:00-19:00 Reunión de postulaciones en PIBV
%%(and (diary-block 11 1 2015 11 1 2015)) Yolo Day
1/31/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
8/27/2015 12:00-13:00 Entrevista en Deloitte
 Desc: Preguntar por Nairoby Romero
 Location: Av Bolivar Norte, Torre Venezuela, Piso 3, Oficinas A y D.
7/14/2015 11:30-12:30 Reunión por Skype con OmegaSoftware
%%(and (diary-block 5 30 2014 5 30 2014)) Tomates Fritos 
 Location: El Baño Pub Bar
2/17/2012 19:30-20:30 Asgn:Sistemas De Comunicación , actividad 3 - tipos...
 Desc: Actividad 3 - Tipos de cables.  .
 Location: Unitec Guacara
1/27/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
3/9/2012 11:30-12:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 7
 Desc: Examen corto 7.  .
 Location: Unitec Guacara
2/11/2017 09:00-14:00 Reunión de método inductivo de estudio bíblico 
1/6/2016 14:00-14:30 Oferta económica
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/cleteci.com/carlos-rogergon?hceid=Y2FybG9zQGNsZXRlY2kuY29t.jf7nisn6fgetf6hch0164oom7o&hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:carlos@cleteci.com
9/29/2018 10:30-12:30 Meeting at church 
1/31/2019 20:00-21:00 Borrar mahucityexpress.co.nz de SeoPro
%%(and (diary-block 1 28 2017 1 28 2017)) Playa con Gabriella
3/14/2012 14:30-18:30 Clss:Estadística II, no hubo clases - le...
 Desc: No hubo clases - Leota no vino.  .
 Location: Unitec Guacara
%%(and (diary-cyclic 7 2 23 2013) (diary-block 2 23 2013 3 1 2013)) Hacer respaldo de nubes
 Desc: Hacer respaldo de Google Drive a Dropbox y Mega.
2/17/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
11/14/2015 12:00-13:30 Boda de Carlos y Evelyn
 Location: Primera Iglesia Bautista de Valencia, Barrio P Alfonzo, Valencia 2001, Venezuela
2/19/2012 19:30-20:30 Asgn:Introducción A Los Sistemas Operativos , practica 2 - llamad...
 Desc: Practica 2 - Llamadas al API Win32.  .
 Location: Unitec Guacara
10/28/2012 20:30-21:30 Misfits
 Desc: 4x02 Episode Two
%%(and (diary-anniversary 8 25 2016))  Cumpleaños de Luz Rivas
%%(and (diary-block 3 20 2017 3 20 2017)) Cancelar Spotify
2/22/2012 15:30-19:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
1/17/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
3/5/2012 01:30-02:30 Asgn:Introducción A Los Sistemas Operativos , práctica 4 - proces...
 Desc: Práctica 4 - Procesos Concurrentes.  .
 Location: Unitec Guacara
2/24/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
2/26/2012 19:30-20:30 Asgn:Introducción A Los Sistemas Operativos , practica 3 - instal...
 Desc: Practica 3 - Instalación de Linux.  .
 Location: Unitec Guacara
10/27/2018 12:00-13:00 Reunión Roger Gonzalez - Maureen - Asdrúbal
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/YXNkcnViYWwuaXZhbi5zdWFyZXoucml2ZXJhQGdtYWlsLmNvbQ.5qd5ku7ecalg6ms4skq5ll4ro8?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:asdrubal.ivan.suarez.rivera@gmail.com
4/1/2016 12:00-12:30 Roger Gonzalez - UV 
 Desc: Ruby, Python programming language and Django Web Framework
 Organizer: mailto:jsoubiate@uvsouthsourcing.com
1/17/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
8/8/2016 20:30-22:30 Reunion
 Desc: 
 
 
 ENTRAR A UNA REUNIÓN DE WEBEX
 https://mayores.webex.com/mayores/j.php?MTID=m54e37a083d4de877a5eecebb18138da0
 Número de la reunión (código de acceso): 733 570 731
 Contraseña de la reunión: WPDe28pi
 
 
 ENTRAR MEDIANTE EL TELÉFONO
 1-877-668-4493 Número de llamada entrante gratuito (EE. UU./Canadá) 
 1-650-479-3208 Número de llamada entrante pago (EE. UU./Canadá)
 
 Números de llamada globales:
 https://mayores.webex.com/mayores/globalcallin.php?serviceType=MC&ED=499923162&tollFree=1
 
 Restricciones de marcado gratuito: 
 https://www.webex.com/pdf/tollfree_restrictions.pdf
 
 
 
 ¿No puede entrar a la reunión?
 https://help.webex.com/docs/DOC-5412
 
 
 AVISO IMPORTANTE: Tenga en cuenta que este servicio de WebEx permite enviar audio y otra información durante la sesión que se grabará, lo que podría traer problemas de divulgación durante una confrontación legal. Al entrar en esta reunión, automáticamente otorga permiso para realizar dichas grabaciones. Si no otorga consentimiento para ser grabado, debata estos asuntos con el organizador o no entre a la sesión.
 
 Location: https://mayores.webex.com/mayores
 Organizer: mailto:gmurgolo@mayorbeval.com
7/15/2015 10:30-11:30 Videoconferencia con Felipe de Willty
9/23/2015 16:30-17:30 Entrevista en Hotel Hesperia
 Desc: Preguntar por Fran Bello
 Location: Hesperia WTC Valencia, Av. Salvador Feo la Cruz, naguanagua, Av 168 Salvador Feo La Cruz, Valencia 02005, Venezuela
1/27/2012 12:30-13:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 1
 Desc: Examen corto 1.  .
 Location: Unitec Guacara
%%(and (diary-cyclic 7 8 2 2018) (diary-block 8 2 2018 8 16 2018)) 19:30-23:30 Premarriage with Ricardo
9/16/2016 10:00-10:30 Reunión con Febeca
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.6st21jlmvdh2ojht6scpkld6s8?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
%%(and (diary-anniversary 7 22 2017))  Cumpleaños de Chachi
3/28/2012 14:30-18:30 Clss:Estadística II, no hubo clases - le...
 Desc: No hubo clases - Leota no vino..  .
 Location: Unitec Guacara
9/3/2015 12:00-13:00 Entrevista con Delloite
 Desc: Preguntar por Andreina Lopez
8/23/2014 15:30-18:30 Reunión de Salvavidas 
%%(and (diary-anniversary 5 12 2016))  Cumpleaños de Harold Martinez
%%(and (diary-cyclic 7 10 5 2016) (diary-block 10 5 2016 5 10 2017)) 20:00-22:00 Célula de jóvenes
10/24/2016 19:00-19:30 30 Minute Meeting with Daniela Rodriguez
 Desc: Event Name: 30 Minute Meeting
 Date & Time: 06:00pm - 06:30pm (GMT-04:00 Caracas Time) on Monday, October 24, 2016
 
 Cancel this event:
 https://calendly.com/cancellations/GDACOPTK25SZ77ZS
 Reschedule this event:
 https://calendly.com/reschedulings/GDACOPTK25SZ77ZS
 
11/14/2015 18:30-19:30 Casa de Raquel
9/23/2016 16:00-16:30 Reunión SiliacaBot
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.sfp83c0msl8nilg2is8qbqv11g?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
%%(and (diary-block 6 23 2016 6 23 2016)) Cumpleaños de María Eugenia Cedeño
9/28/2016 11:30-12:30 Apoyo en Implementación Fotos BOT
 Desc: Buenas tardes, 
 
 Se pauta reunión para compartir información sobre apoyo en solicitud de implementación de Fotos BOT para el Mayor Sillaca.
 
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/mayoreo.biz/jrosario?hceid=anJvc2FyaW9AbWF5b3Jlby5iaXo.1num02u2e46gt4ki5iq3m6op38&hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Location: Sala de Sistemas 2
 Organizer: mailto:jrosario@mayoreo.biz
%%(and (diary-block 11 1 2014 11 1 2014)) Yolo day
%%(and (diary-anniversary 1 15 2019))  Aniversario con Gabriella
3/6/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
4/21/2017 17:00-20:00 Evento de PowerPoint 
3/23/2012 11:30-13:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
2/16/2017 18:30-19:30 Reunión con Darío 
2/15/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
3/20/2012 19:30-23:30 Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
9/5/2016 10:00-11:00 Reunión Febeca
1/18/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
12/15/2015 21:30-22:30 Entrevista técnica 
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/cleteci.com/carlos-jose-lez?hceid=Y2FybG9zQGNsZXRlY2kuY29t.paliu2jnst87dldk2jq3mtk16o&hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:carlos@cleteci.com
3/9/2012 12:30-14:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
5/11/2016 18:30-20:30 Charla Informativa IESA
 Location: Centro Comercial Prebo, Valencia, Carabobo, Venezuela
2/1/2012 15:30-16:30 Quiz:Estadística II, quiz 1 - tarea
 Desc: Quiz 1 - Tarea.  .
 Location: Unitec Guacara
%%(and (not (diary-date 8 2 2018)) (memq (calendar-day-of-week date) '(4 5)) (diary-block 8 2 2018 8 16 2018)) 08:30-13:30 Class in EBV
2/11/2019 14:00-15:00 Reunión Programma
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/YXNkcnViYWwuaXZhbi5zdWFyZXoucml2ZXJhQGdtYWlsLmNvbQ.ccojgp9n6dij2bb66sqj6b9k6ko3ab9oc9hj8b9l6dj36o9o6dhm6o9j74?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:asdrubal.ivan.suarez.rivera@gmail.com
1/4/2016 20:30-21:30 Entrevista telefonica con Cleteci
1/25/2012 15:30-19:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
2/26/2017 12:30-13:30 Predicación 
2/28/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
2/28/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
8/9/2018 18:00-20:00 Meeting with David Falloon (seopronz)
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.cks3cp1i6phjgb9m68rmab9kc4rm4b9o6dhm8b9g64rm8c1gc4pjichhck?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
11/11/2014 15:30-16:30 Tesis unitec , revisión aplicación
 Desc: Tesis Unitec - Abrante , Gonzales 
 Organizer: mailto:abrantemanuel@gmail.com
3/16/2012 11:30-13:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
3/6/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
3/2/2012 01:30-02:30 Asgn:Introducción A Los Sistemas Operativos , puntos extra - subi...
 Desc: Puntos extra - Subir mi foto de perfil .  .
 Location: Unitec Guacara
3/19/2013 08:30-13:30 Cita de pasaporte
2/10/2012 12:30-14:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
3/2/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
12/3/2015 12:30-13:30 Reunión de Analiticas Web - Noviembre
 Desc: Reunión para discutir los resultados de las analíticas del mes de noviembre.
 Location: SofOS, 4 Avenidas, Valencia 2001, Venezuela
 Organizer: mailto:rogergonzalez21@gmail.com
3/4/2019 11:00-11:30 Programma - Pixel2HTML
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/aGVybmFuZGV6Z21hdXJlZW5wQGdtYWlsLmNvbQ.ofogldmt0h43b5k3grsq7r2j5o?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:hernandezgmaureenp@gmail.com
2/29/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
%%(and (diary-block 3 8 2012 3 8 2012)) Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
3/19/2012 00:30-01:30 Asgn:Introducción A Los Sistemas Operativos , practica 7 - planif...
 Desc: Practica 7 - Planificación del CPU.  .
 Location: Unitec Guacara
11/26/2015 20:30-21:30 Reunión con la junta comunal
 Location: Residencias Tauro
 Organizer: mailto:rogergonzalez21@gmail.com
2/21/2012 10:30-14:30 Clss:Sistemas De Comunicación , feriado - no hubo c...
 Desc: Feriado - No hubo clases.  .
 Location: Unitec Guacara
2/8/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
10/25/2016 18:00-19:00 Reunión con Mariano
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.edta7p4ko8skg8bek6odah3i30?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
12/4/2018 17:00-18:00 Meeting Diseño Programma Group
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/YXNkcnViYWwuaXZhbi5zdWFyZXoucml2ZXJhQGdtYWlsLmNvbQ.2d9a2j49gbhmtto36i20oouv6n?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:asdrubal.ivan.suarez.rivera@gmail.com
5/26/2016 15:00-16:00 Reunión sobre bot de Telegram
 Desc: Videollamada sobre el bot de Telegram.
 
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.mmde7mhm99phrb668h9gd6i24o?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
3/28/2012 09:30-13:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
1/26/2017 14:00-18:00 Cita en el alergólogo 
2/17/2012 18:30-19:30 Asgn:Introducción A Los Sistemas Operativos , puntos extra - acti...
 Desc: Puntos extra - Actividad en clase.  .
 Location: Unitec Guacara
1/27/2017 18:00-19:00 Reunión por página web de Iglesia El Trigal
3/15/2012 19:30-23:30 Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
2/7/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
2/17/2013 19:30-22:30 Concierto Youth Beta
 Location: PIBV
1/31/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
8/16/2014 11:30-12:30 Arreglar computadora de William
2/22/2012 12:30-13:30 Quiz:Programación III, segundo examen corto
 Desc: Segundo examen corto.  .
 Location: Unitec Guacara
%%(and (diary-block 4 5 2013 4 5 2013)) Lan Party
 Location: Casa de la abuela
%%(and (diary-block 12 15 2015 12 15 2015)) Cumpleaños de Wini
2/10/2012 12:30-13:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 3
 Desc: Examen corto 3.  .
 Location: Unitec Guacara
11/7/2016 19:00-20:00 Meeting with Heine from FwiB
 Desc: Meeting to talk about FwiB version 2
 
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.fs0cgrc0med3l94ojba9ic08lk?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
3/23/2012 09:30-11:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
5/18/2016 10:00-11:00 Interview Roger Gonzalez - position Analyst-Developer Python
 Desc: Hi Roger,
 Indicated time is 9PM CET... should be 3PM your time.
 Best regards
 Werner
 
 Location: Skype (werner.de.wever)
 Organizer: mailto:werner.dewever@outlook.com
2/1/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
%%(and (diary-block 11 13 2015 11 13 2015)) Firma del libro de Ingeniero
 Location: UNITEC Guacara
11/4/2015 09:30-11:30 Cita con el Oftalmólogo
10/19/2015 10:00-11:30 Revisión proyectos Web
 Desc:    -          Revisión de generador de tarjetas de presentación
    -          Definición de proyecto piloto para el site corporativo
 
 
 Location: Torre Ejecutiva
 Organizer: mailto:jorge.lopez@sofoscorp.com
11/12/2015 16:30-18:00 Búsqueda de Talento Humano por RRSS
 Desc: Estimados,
 
 
 Es necesario discutir la estrategia en redes sociales para la búsqueda de talento humano para la empresa, de manera que se optimice el proceso.
 
 
 Espero contar con su asistencia.
 
 
 Saludos,
 Ma. Eugenia Cedeño
 Estratega de Redes Sociales y Medios Electrónicos
 Location: Sala de Reuniones Secundaria - Torre Ejecutiva
 Organizer: mailto:maria.cedeno@sofoscorp.com
%%(and (diary-block 5 4 2017 5 4 2017)) Ir al oftalmólogo
3/1/2019 13:30-14:00 Pre-meeting Programma
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/YXNkcnViYWwuaXZhbi5zdWFyZXoucml2ZXJhQGdtYWlsLmNvbQ.6sp62phjc8o3ab9jc4sm4b9kc4pmabb174o3ebb575ijachh64rjidpm6o?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:asdrubal.ivan.suarez.rivera@gmail.com
7/13/2015 10:30-11:30 Reunión telefónica con GSG
%%(and (diary-block 11 5 2017 11 5 2017)) Cobrar a Gaby por la blusa
3/13/2012 09:30-13:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
3/21/2012 14:30-18:30 Clss:Estadística II, no hubo clases - le...
 Desc: No hubo clases - Leota no vino.  .
 Location: Unitec Guacara
3/13/2012 12:30-13:30 Quiz:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
10/28/2018 17:00-18:00 Reunión con Asdrúbal 
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.61i66pj56cojib9gcpgm2b9k69h3ibb1coq38b9pccoj2cj4c5j36cpj70?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
3/13/2012 14:30-16:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
3/30/2012 09:30-11:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
%%(and (diary-block 4 20 2017 4 20 2017)) Cancelar Spotify
%%(and (diary-block 11 29 2014 11 29 2014)) Suena Caracas
 Organizer: mailto:rogergonzalez21@gmail.com
2/24/2012 12:30-14:30 Clss:Estadística II, no hubo clases
 Desc: No hubo clases.  .
 Location: Unitec Guacara
11/22/2016 18:00-19:00 Reunión con Vascar
3/28/2013 19:30-23:00 Casa de Daniela 
 Location: Casa de Daniela
3/16/2012 10:30-11:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 8
 Desc: Examen corto 8.  .
 Location: Unitec Guacara
11/5/2015 11:00-13:00 Revisión de analíticas del website en Octubre
 Desc: Revisaremos el comportamiento de las visitas al website y los contenidos más visitados durante del mes de Octubre para tomar futuras decisiones en cuanto a línea editorial y cambios en el website.
 
 Location: Oficina del Sr. Jorge
 Organizer: mailto:maria.cedeno@sofoscorp.com
2/17/2012 12:30-13:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 4
 Desc: Examen corto 4.  .
 Location: Unitec Guacara
%%(and (diary-block 4 16 2016 4 16 2016)) Tributo a Pink Floyd
 Location: Asociacion De Ganaderos, guaparo, Venezuela
2/21/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos , feriado - no hubo c...
 Desc: Feriado - No hubo clases.  .
 Location: Unitec Guacara
%%(and (diary-cyclic 7 5 10 2017) (diary-block 5 10 2017 9 27 2017)) 19:30-20:30 Culto de oración
 Location: Primera Iglesia Bautista de Valencia, Valencia 2001, Carabobo, Venezuela
%%(and (diary-block 11 30 2015 11 30 2015)) Acto de grado de Ingeniero
3/12/2012 00:30-01:30 Asgn:Introducción A Los Sistemas Operativos , práctica 5 - hilos ...
 Desc: Práctica 5 - Hilos de la clase "Thread" e interfaz "Runnable".  .
 Location: Unitec Guacara
11/23/2014 19:30-20:30 Ir a Casa de Aldrymar
 Desc:  
%%(and (diary-block 11 4 2016 11 4 2016)) Cita con el Oftalmólogo
3/13/2012 19:30-23:30 Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
%%(and (diary-block 8 4 2018 8 4 2018)) Angelonal inauguration
1/29/2018 12:00-12:30 Presentación de expedientes de inscripción en el Registro Civil
 Organizer: mailto:unknownorganizer@calendar.google.com
10/15/2016 10:00-11:00 Reunión sobre negocio en Praga
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.1mloiep8jduns3ojshmrh78h7c?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
12/19/2016 13:30-14:00 Priceless Specials - ReGroup
 Desc: 
 .........................................................................................................................................
 --> Join Skype Meeting<https://meet.mastercard.com/cristina.paslar/ZPHUI603>
   This is an online meeting for Skype for Business, the professional meetings and communications app formerly known as Lync.
 Join by phone
 1-636-722-2222 USA-Canada Local-Caller Paid<tel:1-636-722-2222%20USA-Canada%20Local-Caller%20Paid> (United States)              English (United States)
 1-816-713-4466 USA-Canada Local-Caller Paid<tel:1-816-713-4466%20USA-Canada%20Local-Caller%20Paid> (United States)              English (United States)
 1-844-802-4805 USA-Canada Toll Free<tel:1-844-802-4805%20USA-Canada%20Toll%20Free> (United States)              English (United States)
 Find a local number<https://dialin.mastercard.com>
 
 Conference ID: 851928
  Forgot your dial-in PIN?<https://dialin.mastercard.com> |Help<http://www.mastercard.com/UCHelp/>
 
 [http://www.mastercard.com/UCHelp/images/logo_mastercard.jpg]
 If you do not use the link above or are dialing into this meeting you can simply hit pound (#) three times after entering the conference id and wait for the host to start the conference.  There is no requirement to identify yourself to join the meeting.
 [!OC([1033])!]
 .........................................................................................................................................
 
 CONFIDENTIALITY NOTICE This e-mail message and any attachments are only for the use of the intended recipient and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If you are not the intended recipient, any disclosure, distribution or other use of this e-mail message or attachments is prohibited. If you have received this e-mail message in error, please delete and notify the sender immediately. Thank you.
 
 Location: Skype Meeting
 Organizer: mailto:cristina.paslar@mastercard.com
5/28/2017 14:30-18:30 Comida con las muchachas de SofOS
3/23/2012 10:30-11:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 9
 Desc: Examen corto 9.  .
 Location: Unitec Guacara
2/12/2012 19:30-20:30 Asgn:Introducción A Los Sistemas Operativos , practica 1 - interr...
 Desc: Practica 1 - Interrupciones y Servicios BIOS..  .
 Location: Unitec Guacara
2/19/2019 08:30-09:30 Comienzo de vitaminas
1/24/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
4/12/2012 01:00-02:00 Asgn:Introducción A Los Sistemas Operativos , practica 10 - synch...
 Desc: Practica 10 - Synchronized en Java.  .
 Location: Unitec Guacara
11/11/2016 15:00-15:30 Validación de Inglés - Roger González (Backend developer)
 Desc: Roger González 
 N° 0412-466-1220
 Email: rogergonzalez21@gmail.com
 Link: https://ve.linkedin.com/in/rogergonzalez21/en
 
 Blas Atencio
 N° 0414-222-0355
 Email: blas.atencio@gmail.com
 
 
 Organizer: mailto:kimberleymaluenga@gmail.com
3/14/2012 09:30-13:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
3/26/2012 01:15-02:15 Asgn:Introducción A Los Sistemas Operativos , practica 8 - sincro...
 Desc: Practica 8 - Sincronización de procesos..  .
 Location: Unitec Guacara
12/29/2018 13:00-14:00 Gabriella's birthday
3/22/2012 19:30-23:30 Clss:Java Módulo 1, no fui por evento c...
 Desc: No fui por evento cultural..  .
 Location: Unitec Valencia
%%(and (diary-block 2 15 2018 2 15 2018)) Terminar de pagar la laptop
%%(and (diary-cyclic 7 7 22 2014) (diary-block 7 22 2014 7 29 2014)) 14:30-16:30 Inteligencia de Negocios. Osmel Brito Bigott
 Desc: Hola,
 
 Osmel Brito-Bigott actualizó esta reunión de WebEx:
 
 Inteligencia de Negocios. Osmel Brito Bigott 
 Todos los Martes, desde mar, 22 de jul de 2014 hasta mar, 29 de jul de 2014, 1:30 p.m. | 2 h (actualizado)
 
 La Paz (Sudamérica Occidental  Hora, GMT-04:00) 
 Organizador: Osmel Brito-Bigott
 
 Cuando sea el momento, únase a la reunión desde aquí:
 https://meetings.webex.com/collabs/meetings/join?uuid=M50QL5NSVSF92SO02MHL4111RE-AQON
 
 Agenda 
 Esta reunión no tiene una agenda.
 
 Información de acceso
 Dónde: WebEx en línea 
 Número de reunión: 195 437 870
 Contraseña de la reunión: No es necesaria una contraseña para esta reunión. 
 
 Conexión de audio 
 +1-415-655-0001 US TOLL
 Código de acceso: 195 437 870
 
 
 
 
 
 ¿No puede acceder a su reunión? Obtenga ayuda:
 https://meetings.webex.com/collabs/#/support
 
 
 Proporcionando el poder de la colaboración
 Cisco WebEx Equipo
 
 -----------------------------------------------------------
 
 AVISO IMPORTANTE: Este servicio de WebEx incluye una función que permite ver e intercambiar audio, documentos y otros materiales durante la reunión que va a grabarse. Al entrar a esta reunión, automáticamente da permiso para realizar dichas grabaciones. Si no otorga permiso para la grabación, analice sus inquietudes con el organizador de la reunión antes de que comience la grabación; de lo contrario, no se una a la reunión. Tenga en cuenta que estas grabaciones pueden estar sujetas a divulgación en caso de litigio.
 
 ©2014 Cisco o sus filiales. Todos los derechos reservados.
 
 MT-A-005
 
 Location: WebEx en línea
 Organizer: mailto:osmel.b@datanalitica.com
9/17/2015 10:30-11:30 Entrevista en SofOS
 Desc: Piso 15. Preguntar por el señor Jorge Lopez
 Location: SofOS, 4 Avenidas, Valencia 2001, Venezuela
3/12/2012 00:30-01:30 Asgn:Introducción A Los Sistemas Operativos , practica 6 - applet
 Desc: Practica 6 - Applet.  .
 Location: Unitec Guacara
3/2/2012 12:30-14:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
9/28/2015 18:00-19:00 Consultoría con Industrias Humbert
 Location: Videoconferencia
11/22/2016 13:00-14:00 Reunión con Vascar
9/3/2015 15:30-16:30 Entrevista en SofOS
 Desc: Reda Building, piso #5 Preguntar por Celestina Trebol
 Location: SofOS, 4 Avenidas, Valencia 2001, Venezuela
1/18/2012 15:30-19:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
2/28/2019 13:00-14:00 Buy .dev from Google Domains
 Desc: Visit https://domains.google/TLD/dev
2/24/2012 12:30-13:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 5
 Desc: Examen corto 5.  .
 Location: Unitec Guacara
3/16/2012 09:30-11:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
%%(and (diary-block 9 15 2017 9 15 2017)) Cumpleaños de Ricardo Reverón
2/15/2012 15:30-19:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
6/26/2015 11:00-12:00 Reunión sobre postulación como desarrollador Full-Stack
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/mobydev.com/full-stack-2606?hceid=bWFydGluQG1vYnlkZXYuY29t.arm3g0uuuvupk91r0m3lbst8u0&hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:martin@mobydev.com
1/25/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
3/9/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
12/30/2015 20:30-21:30 Entrevista técnica
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/cleteci.com/entrevista-t?hceid=Y2FybG9zQGNsZXRlY2kuY29t.81j0sv8sibqrte868bb2hpjrr8&hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:carlos@cleteci.com
3/23/2018 11:00-13:00 Reunion en Bonchona
 Location: Bonchona 107.1 FM, Calle 137, Valencia 2001, Carabobo, Venezuela
3/4/2016 18:30-19:30 Salvavidas
2/7/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
3/18/2012 19:30-20:30 Asgn:Sistemas De Comunicación , actividad 5 - subre...
 Desc: Actividad 5 - Subredes.  .
 Location: Unitec Guacara
2/23/2013 21:30-23:30 Ir a casa de Nelson a hacer lo de CADIVI
 Location: Casa de Nelson
2/1/2012 12:30-13:30 Quiz:Programación III, primer examen corto
 Desc: Primer examen corto .  .
 Location: Unitec Guacara
2/27/2019 08:30-09:30 Segunda tanda de desparasitación 
5/14/2016 09:30-13:30 Planificación Escuela Bíblica de Vacaciones
 Location: Primera Iglesia Bautista de Valencia, Barrio P Alfonzo, Valencia 2001, Carabobo, Venezuela
2/6/2012 19:30-20:30 Asgn:Sistemas De Comunicación , actividad 2 - magni...
 Desc: Actividad 2 - Magnitudes electricas.  .
 Location: Unitec Guacara
2/14/2012 15:30-17:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
3/27/2012 09:30-13:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
%%(and (diary-cyclic 1 3 29 2019) (diary-block 3 29 2019 3 31 2019))  Corotofest
6/18/2016 09:00-13:00 Reunión de planificación Escuela Bíblica
 Location: Primera Iglesia Bautista de Valencia, Barrio P Alfonzo, Valencia 2001, Carabobo, Venezuela
2/1/2012 15:30-19:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
1/24/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
11/3/2016 12:00-12:30 Reunión de BevalBot
 Desc: Reunión para discutir sobre funcionamiento de BevalBot
 
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.fnntjg28nisjvkma3807t45rqc?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
11/10/2016 18:00-19:00 Reunión de la Coordinadora PIBV
2/29/2012 15:30-19:30 Clss:Estadística II, no hubo clases. leo...
 Desc: No hubo clases. Leota no vino.  .
 Location: Unitec Guacara
3/7/2012 10:30-14:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
3/21/2012 09:30-13:30 Clss:Programación III
 Desc: .  .
 Location: Unitec Guacara
3/27/2012 14:30-16:30 Clss:Introducción A Los Sistemas Operativos , no hubo clases
 Desc: No hubo clases.  .
 Location: Unitec Guacara
3/2/2012 11:30-12:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 6
 Desc: Examen corto 6.  .
 Location: Unitec Guacara
3/2/2012 11:30-12:30 Asgn:Introducción A Los Sistemas Operativos , puntos extra - acti...
 Desc: Puntos extra - Actividad en clase.  .
 Location: Unitec Guacara
5/6/2014 15:30-18:30 Viene el Técnico de Inter 
 Location: Home
5/30/2016 18:00-19:00 Entrevista con Argentina
11/11/2016 20:00-21:00 Reunión sobre FwiB
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/calendar/cm9nZXJnb256YWxlejIxQGdtYWlsLmNvbQ.6sr3id3570q3gb9ncdj3ib9kclhj0b9oclhmcb9n6sqjid32chhm2or26c?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:rogergonzalez21@gmail.com
11/15/2016 19:00-20:00 Entrevista con Roger González (Backend Developer)
 Desc: Roger González
 Skype: rogergonzalez21.
 Email:rogergonzalez21@gmail.com
 Organizer: mailto:kimberleymaluenga@gmail.com
2/8/2012 15:30-19:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
3/7/2012 15:30-19:30 Clss:Estadística II, no hubo clases - le...
 Desc: No hubo clases - Leota no como.  .
 Location: Unitec Guacara
3/30/2012 10:30-11:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 10
 Desc: Examen corto 10.  .
 Location: Unitec Guacara
2/15/2019 15:00-16:00 Reunión programma propuesta
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/YXNkcnViYWwuaXZhbi5zdWFyZXoucml2ZXJhQGdtYWlsLmNvbQ.768c0tdpma5hsdeaavviup4i9o?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:asdrubal.ivan.suarez.rivera@gmail.com
3/20/2012 14:30-16:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
12/17/2016 08:00-13:00 Visita al hospital
1/20/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
4/12/2012 01:00-02:00 Asgn:Introducción A Los Sistemas Operativos , practica 9 - semáfo...
 Desc: Practica 9 - Semáforos en Java.  .
 Location: Unitec Guacara
10/6/2016 18:30-19:30 Reunión de Cuerpo Diaconal
3/2/2012 13:30-14:30 Asgn:Estadística II, practica - examen
 Desc: Practica - Examen.  .
 Location: Unitec Guacara
%%(and (diary-block 3 6 2012 3 6 2012)) Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
3/20/2012 09:30-13:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
2/15/2012 15:30-16:30 Quiz:Estadística II, quiz 2 - taller
 Desc: Quiz 2 - Taller.  .
 Location: Unitec Guacara
2/14/2012 10:30-14:30 Clss:Sistemas De Comunicación
 Desc: .  .
 Location: Unitec Guacara
11/12/2015 19:00-20:00 Reunión con Dario Ortega
 Location: Primera Iglesia Bautista de Valencia, Barrio P Alfonzo, Valencia 2001, Venezuela
 Organizer: mailto:rogergonzalez21@gmail.com
2/19/2012 19:30-20:30 Asgn:Sistemas De Comunicación , actividad 4 - recon...
 Desc: Actividad 4 - Reconocer dispositivos de Red.  .
 Location: Unitec Guacara
%%(and (diary-cyclic 14 5 31 2014) (diary-block 5 31 2014 7 26 2014)) 11:00-12:00 Legislación y Ética. PDG-TP1. Osmel Brito Bigott
 Desc: Hola,
 
 Osmel Brito-Bigott lo invita a esta reunión de WebEx.
 
 Legislación y Ética. PDG-TP1. Osmel Brito Bigott
 Cada 2 semanas el Sábado desde sáb, 31 de may de 2014 a sáb, 26 de jul de 2014, 10:00 a.m. | 1 h
 
 La Paz (Sudamérica Occidental  Hora, GMT-04:00)
 Organizador: Osmel Brito-Bigott
 
 Cuando sea el momento, únase a la reunión desde aquí:
 https://meetings.webex.com/collabs/meetings/join?uuid=M93ZZQSOQMGLODY5XKEJ6X3ENL-AQON
 
 Agenda
 Esta reunión no tiene una agenda.
 
 Información de acceso
 Dónde: WebEx en línea
 Número de reunión: 192 017 634
 Contraseña de la reunión: No es necesaria una contraseña para esta reunión.
 
 Conexión de audio
 +1-415-655-0001 US TOLL
 Código de acceso: 192 017 634
 
 
 
 
 
 ¿No puede acceder a su reunión? Obtenga ayuda:
 https://meetings.webex.com/collabs/#/support
 
 
 Proporcionando el poder de la colaboración
 Cisco WebEx Equipo
 
 -----------------------------------------------------------
 
 AVISO IMPORTANTE: Este servicio de WebEx incluye una función que permite ver e intercambiar audio, documentos y otros materiales durante la reunión que va a grabarse. Al entrar a esta reunión, automáticamente da permiso para realizar dichas grabaciones. Si no otorga permiso para la grabación, analice sus inquietudes con el organizador de la reunión antes de que comience la grabación; de lo contrario, no se una a la reunión. Tenga en cuenta que estas grabaciones pueden estar sujetas a divulgación en caso de litigio.
 
 ©2014 Cisco o sus filiales. Todos los derechos reservados.
 
 MT-A-001
 
 Location: WebEx en línea
 Organizer: mailto:osmel.b@datanalitica.com
6/26/2016 10:30-11:30 Reunión salón temático
2/3/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
3/30/2012 11:30-13:30 Clss:Estadística II
 Desc: .  .
 Location: Unitec Guacara
9/8/2018 10:00-11:00 Reunion de postulacion
11/19/2014 18:30-19:30 Buscar el cargador de la laptop
%%(and (diary-block 3 1 2012 3 1 2012)) Clss:Java Módulo 1
 Desc: .  .
 Location: Unitec Valencia
9/1/2016 10:00-11:00 Febeca-Beval Bot
 Desc: Hola Róger, cómo estás ? gusto en saludarte
 
            Primero que nada me gustaría saber si estamos al día con los pagos ?, segundo estamos por cambiar el tema de las imágenes del bot, para que se lean directamente de la base de datos, nos podrías apoyar con este tema, que necesarias(requerimientos), y cual sería tu propuesta de implementación y económica.
 
 De antemano agradecido con tu apoya, en espera de tus comentarios
 
 Slds
 
 El 26 de agosto de 2016, 19:52, Roger Gonzalez <rogergonzalez21@gmail.com> escribió:
 >
 > Buenas noches.
 >
 > El dia de hoy culminó el tiempo de espera para el pago del desarrollo de FebecaBot, por lo que he desactivado el bot. FebecaBot será restablecido en cuanto se concrete el pago. Esta condición se encuent...
 
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://plus.google.com/hangouts/_/mayoreo.biz/finalizaci-n?hceid=Z2VzcGlub3phQG1heW9yZW8uYml6.64q9bforg0ihotmv2ho1ffl0do&hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:gespinoza@mayoreo.biz
2/21/2019 10:00-10:30 Meeting with Number8's Manager: Oliver
 Location: Skype: live:oliver_6451
2/20/2019 15:00-16:00 RingCentral 60-minute meeting 
 Desc: Hi there,
 
 
 Emiliano Leon is inviting you to a scheduled Zoom meeting.
 
 
 https://meetings.ringcentral.com/j/9700885521
 
 View original email thread here: https://mxmx.me/2TrqLZY
 
 To cancel or reschedule, visit this link: https://mxmx.me/ESr45nr
 
 Scheduled with Mixmax (mixmax.com)
 Location: https://meetings.ringcentral.com/j/9700885521
 Organizer: mailto:emiliano@dreamitjobs.net
5/10/2014 16:00-22:30 Fiesta de Ivanna 
 Location: Iglesia San Antonio
2/10/2012 10:30-12:30 Clss:Introducción A Los Sistemas Operativos
 Desc: .  .
 Location: Unitec Guacara
%%(and (diary-date 1 15 t) (diary-block 1 15 2018 1 15 2019)) 18:00-19:00 Aniversario con Gabriella
2/23/2019 09:00-10:00 Reunion programma
 Desc: -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Please do not edit this section of the description.
 
 This event has a Google Hangouts video call.
 Join: https://hangouts.google.com/hangouts/_/calendar/YXNkcnViYWwuaXZhbi5zdWFyZXoucml2ZXJhQGdtYWlsLmNvbQ.7i7livti6ln7rv2mgo58b1lss8?hs=121
 -::~:~::~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~::~:~::-
 Organizer: mailto:asdrubal.ivan.suarez.rivera@gmail.com
4/7/2016 12:00-12:30 Entrevista con Roger Gonzalez - Python Dev
 Location: Skype
 Organizer: mailto:florencia.alvarez@bairesdev.com
2/3/2012 12:30-13:30 Quiz:Introducción A Los Sistemas Operativos , examen corto 2
 Desc: Examen corto 2.  .
 Location: Unitec Guacara
%%(and (diary-block 8 28 2019 8 28 2019)) Salida con Amanda 
12/26/2019 15:00-15:45 gigi-45min with Gigi Debiasi
 Desc: 
 meet.google.com/wcz-upuq-juf
 Event Name: gigi-45min
 Date &amp; Time: 03:00pm - 03:45pm (Buenos Aires Time) on Thursday, December 26, 2019
 
 Do you use Zoom for video-calls?: No
 If not, what video-call tool do you prefer to use?: Hangouts
 
 Need to make changes to this event?
 Cancel: https://calendly.com/cancellations/HGMJQLJEPD6R4DMH
 Reschedule: https://calendly.com/reschedulings/HGMJQLJEPD6R4DMH
8/24/2019 10:30-11:30 Pets Mall 
11/7/2019 18:59-21:44 Segunda MIS.uy 2019
 Desc: MIS.uy - Meetups de Ingeniería de Software del Uruguay
 Thursday, November 7 at 5:15 PM
 
 Por ahora... andá reservando la fecha. Brindaremos detalles en unas pocas semanas.
 
 https://www.meetup.com/MIS-uy/events/265567346/
 Location: CodigoDelSur (Av 19 de Abril 3465, Montevideo, Uruguay 11700)
10/23/2019 20:44-23:44 JS Internacional ( 🇧🇷) y local ( 🇺🇾)
 Desc: The Montevideo Javascript Meetup Group
 Wednesday, October 23 at 7:00 PM
 
 Este mes tenemos, para combatir el frio que se vino, nos visitan de Brasil y nos traen un charla de JS sobre performance, además estamos buscando a al...
 
 https://www.meetup.com/montevideojs/events/265672334/
 Location: Rootstrap (Sarandí 690, Montevideo, DE, Uruguay 11000)
10/31/2019 19:44-22:44 Kickoff - Primer Montevideo Developer Circle Meetup!!
 Desc: Facebook Developer Circle - Montevideo
 Thursday, October 31 at 7:00 PM
 
 Bienvenidos al Primer Montevideo Developer Circle! Somos una comunidad abierta con el respaldo de Facebook, en los que queremos compartir conocimiento...
 
 https://www.meetup.com/Developer-Circle-Montevideo/events/265910557/
 Location: Sinergia Cowork World Trade Center (Av. Dr. Luis Alberto de Herrera 1248, Montevideo, DE, Uruguay 11300)
11/6/2019 19:44-21:59 La colaboración funciona: Tejiendo nuestra propia realidad
 Desc: Mujeres en UX UY
 Wednesday, November 6 at 7:00 PM
 
 ¡Bienvenidas a la comunidad de +Mujeres UX de Uruguay! Nuestro cuarto encuentro será el próximo 6 de Noviembre en Xmart Labs (Bulevar España 2565). En...
 
 https://www.meetup.com/Mujeres-en-UX-UY/events/266081229/
 Location: Bulevar España 2565 (Bulevar España 2565, Montevideo, DE, Uruguay 11300)
11/26/2019 19:44-22:44 ATDD, calidad desde la especificación
 Desc: AgileUY
 Tuesday, November 26 at 7:00 PM
 
 ATDD - Acceptance Test Driven Development: aprenderemos como desde el momento de la definición de las historias de usuario estaremos poniendo foco en ...
 
 https://www.meetup.com/AgileUY/events/266553679/
12/5/2019 19:44-22:44 asado.js v3.0.0 - Despedida 2019!
 Desc: Lugar: WyeWorks
 
 José Agustín Iturriaga 3359, 11300 Montevideo, Departamento de Montevideo
 
 Se termina el año, y lo despedimos con un asado de la comunidad de JS para festejar que logramos 1 meetup por mes y como comunidad somos un poco más grande!
 
 Si querés dar una charla mandala al slack de Open Web Uruguay en el canal #meetup-js o con un comentario en este evento.
 
 Se cobra un "cubierto artístico" de $300 (o menos si conseguimos sponsors) para bancar el asado, leña y bebidas pero el que quiera ir y no cuente con la plata nos tira un mensaje privado y lo solucionamos, no queremos que nadie deje de ir.
 
 Charlas:
 - TBD
 - TBD
 
 Recuerden ser responsables con el tema asistencia así podemos aprovechar mejor los eventos :)
 
 Se busca asador/asadora!
 
 Gracias a WyeWorks por el lugar!
 
 Details: https://www.meetup.com/montevideojs/events/266741136/
 Location: José Agustín Iturriaga 3359, Montevideo, Uruguay