-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcalendar.json
1445 lines (1445 loc) · 58.5 KB
/
calendar.json
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
[ { "id": "functional-programming-in-python-by-thaipy-jan"
, "start":
{ "year": 2018
, "month": 1
, "date": 11
}
, "end":
{ "year": 2018
, "month": 1
, "date": 11
}
, "categories":
[ "Meetup"
]
, "topics":
[ "Python"
, "Functional Programming"
]
, "time":
[ { "from":
{ "hour": 18
, "minute": 30
}
, "to":
{ "hour": 20
, "minute": 30
}
, "after": true
, "agenda": "Meetup"
}
]
, "title": "ThaiPy Bangkok Meetup — Functional Programming in Python and Panel on Women in Thai Tech"
, "location":
{ "title": "Bhiraj Tower"
, "url": "https://www.google.com/maps/place/BHIRAJ+TOWER+at+EmQuartier/@13.7314622,100.5672243,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29f01858d150f:0xbc0e87a22c16ae1c!8m2!3d13.731457!4d100.569413"
, "detail": "aCommerce HQ, 33rd floor"
}
, "summary": "Meetup รายเดือนจากกลุ่ม ThaiPy - Bangkok Python Meetup สำหรับผู้ที่สนใจในภาษา Python ภายในงานจะมีการพูดคุยพบปะในบรรยากาศเป็นกันเอง เพื่อแลกเปลี่ยนความรู้และประสบการณ์ โดยหัวข้อที่จะพูดถึงจะเริ่มตั้งแต่ระดับ Beginner ไปจนถึง Advance"
, "description": "- \"Every language needs its underscore: FP in Python\" - Alexander Schepanovski.\n- \"Panel Discussion: What it's like to a female in Thai tech\" - To help support the upcoming [Django Girls one day workshop 10 March 2018](https://djangogirls.org/bangkok/).\n- Short talks and lightning talks\n\nMonthly meetup for those using python, learning python of just py-curious. Python is one of more popular programming languages in the word and rising further, being used in fields such as web, science, big data, dev-ops and digital entertainment. We to have talks from beginners to advance and provide a friendly atmosphere to meet and network with your fellow pythonistas."
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/ThaiPy-Bangkok-Python-Meetup/events/245135592/"
, "title": "Meetup.com"
, "detail": "Free, snacks and prinks provided"
}
]
, "declared":
{ "filename": "data/2018-01/thaipy-functional-programming-in-python.md"
, "line": 1
, "column": 1
}
}
, { "id": "dependent-type-theory-meetup-january-2018"
, "start":
{ "year": 2018
, "month": 1
, "date": 13
}
, "end":
{ "year": 2018
, "month": 1
, "date": 13
}
, "categories":
[ "Workshop"
, "Meetup"
]
, "topics":
[ "Formal verification"
]
, "time":
[ { "from":
{ "hour": 9
, "minute": 0
}
, "to":
{ "hour": 16
, "minute": 0
}
, "after": false
, "agenda": "Lecture/Tutorial"
}
, { "from":
{ "hour": 16
, "minute": 0
}
, "to":
{ "hour": 17
, "minute": 0
}
, "after": true
, "agenda": "Meetup"
}
]
, "title": "Workshop on Formal Verification using Dependent Type Theory in Thai"
, "location":
{ "title": "Pronto Tools"
, "url": "https://www.google.com/maps/place/Pronto+Tools/@13.7922283,100.5425157,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29c10914e96d5:0x8e78f9849ffdbea8!8m2!3d13.7922231!4d100.5447044"
, "detail": null
}
, "summary": "ในการพัฒนาโปรแกรมบางประเภท เราต้องการความมั่นใจว่าโปรแกรมทำงาน “ถูกต้อง 100%”\nซึ่งการ “ทดสอบ” โปรแกรมเฉยๆ มันไม่พอ เราต้อง “พิสูจน์” ได้ว่าโปรแกรมทำงานถูกต้องในทุกกรณีที่เป็นไปได้\nDependent type theory เป็นวิธีนึง ซึ่งจะได้เรียนรู้กันในเวิร์คช็อปนี้"
, "description": "In software engineering, every application requires a certain level of correctness; most of them are \"tested\" against some test suites, however, this turn out not to be sufficient for some application; this is because those test suites cannot \"guarantee\" 100% correctness. To solve such a problem, we need to \"prove\" that those applications are indeed correct. One way to formally verify it is to use dependent type theory where mathematical proof and computer program are the same things.\n\nIn this workshop, I would like to walk though dependent type theory by first, describe it as a functional programming, then how can we use this functional programming to do some logical reasoning. No background knowledge is required (apart from simple maths skill in secondary school), so everyone is welcome to attend. We will speak in Thai but every written material will be in English. There will be no registration fee, but please bring your food."
, "links":
[ { "type": "rsvp"
, "url": "https://www.facebook.com/events/122627418535428/"
, "title": "Facebook event"
, "detail": "Free, bring your own food."
}
]
, "declared":
{ "filename": "data/2018-01/dependent-type-theory-meetup.md"
, "line": 1
, "column": 1
}
}
, { "id": "bkk-web-101-angular-2-4-5-oh-my-41515114826"
, "start":
{ "year": 2018
, "month": 1
, "date": 16
}
, "end":
{ "year": 2018
, "month": 1
, "date": 16
}
, "categories":
[ "Meetup"
]
, "topics":
[ "Angular"
]
, "time":
[ { "from":
{ "hour": 19
, "minute": 0
}
, "to":
{ "hour": 22
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "BKK WEB 101 - Angular 2, 4, 5, Oh My"
, "location":
{ "title": "Launchpad"
, "url": "https://www.google.com/maps/place/Launchpad+Co.,+Ltd/@13.7212933,100.5236788,19z/data=!3m1!4b1!4m5!3m4!1s0x30e298cdd6e8270d:0x7e9aa39655924697!8m2!3d13.721292!4d100.524226?hl=en"
, "detail": null
}
, "summary": ""
, "description": "This talk will cover all of the topics in the bulleted list by show casing an app to keep track of your favorite movies and discover new ones. This app will include the ability to login in and persist your movie list using Firebase. I will walk through the methods I used to create the app starting with the Angular CLI and how to best structure your code to make it scalable.\n\nJesse will cover the following topics: CLI, TypeScript, Modules, Components, Templates, Directives, Lifecycle hooks, Services, Routing, Observables, Forms, Pipes, HTTP Requests, Animations"
, "links":
[ { "type": "ticket"
, "url": "https://www.eventbrite.com/e/bkk-web-101-angular-2-4-5-oh-my-tickets-41515114826"
, "title": "Eventbrite"
, "price": "Free"
}
, { "type": "rsvp"
, "url": "https://www.facebook.com/events/1781210951888915/"
, "title": "Facebook event"
}
]
, "declared":
{ "filename": "data/2018-01/bkk-web-101-angular.md"
, "line": 1
, "column": 1
}
}
, { "id": "7peaks-meetup-246084420"
, "start":
{ "year": 2018
, "month": 1
, "date": 17
}
, "end":
{ "year": 2018
, "month": 1
, "date": 17
}
, "categories":
[ "Meetup"
]
, "topics":
[ "Azure"
, "Cloud"
]
, "time":
[ { "from":
{ "hour": 19
, "minute": 0
}
, "to":
{ "hour": 21
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "7 Peaks Tech Events Bangkok — Scale your web application from local to global with Azure cloud"
, "location":
{ "title": "7 Peaks Software"
, "url": "https://www.google.com/maps/place/7+Peaks+Software/@13.739292,100.5552093,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29edcf8a9dcf5:0xcf0d1a437c55d078!8m2!3d13.739292!4d100.557398"
, "detail": "Dhammalert Building, 2nd floor"
}
, "summary": "How to scale your web application from local market to global audience? Scalability, Performance, Availability, Security, Resiliency."
, "description": "Raphael will present, through a simple case study, what are the best practices to scale globally your web application. Using AppServices, Auto-Scaling, DNS, CDN, Traffic Manager, Application Gateway, Blob Storage, Cosmos DB, SQL, Tables, Queues, Functions etc., we will reflect together how to design/scale our webapp to deliver the best performances."
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/7Peaks-Tech-Events-Bangkok/events/246084420/"
, "title": "Meetup.com"
}
]
, "declared":
{ "filename": "data/2018-01/7peaks-meetup-azure-cloud.md"
, "line": 1
, "column": 1
}
}
, { "id": "docker-in-thai-meetup-january-2018"
, "start":
{ "year": 2018
, "month": 1
, "date": 17
}
, "end":
{ "year": 2018
, "month": 1
, "date": 17
}
, "categories":
[ "Meetup"
]
, "topics":
[ "Docker"
]
, "time":
[ { "from":
{ "hour": 18
, "minute": 30
}
, "to":
{ "hour": 21
, "minute": 0
}
, "after": false
, "agenda": "Talk / Networking"
}
]
, "title": "Docker in Thai Meetup"
, "location":
{ "title": "GetLinks (Thailand)"
, "url": "https://www.google.com/maps/place/GetLinks+(Thailand)/@13.7315052,100.5581013,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29eddc5e7b307:0x969a71171a67b46a!8m2!3d13.7315!4d100.56029"
, "detail": "Lake Rajada Office Complex 10th Floor"
}
, "summary": "พูดคุยกันเรื่อง Docker ในงาน Docker in Thai Meetup ครั้งที่สอง คราวนี้พูดถึงเรื่องการทำ Blue/Green Deployment ด้วย Docker ([คืออะไร?](http://www.somkiat.cc/blue-green-deployment/)) และเพิ่มเติมด้วยการคอนฟิก Liveness, Readiness ใน Kubernetes"
, "description": "- Blue/Green micro service deployment using docker by K. Supaket\n- Liveness/Readyness with Kubernetes by K. Praparn"
, "links":
[ { "type": "ticket"
, "url": "https://www.eventpop.me/e/2822"
, "title": "Event Pop"
, "price": "Free (sold out)"
}
, { "type": "rsvp"
, "url": "https://www.facebook.com/events/504227713281643/"
, "title": "Facebook event"
}
, { "type": "rsvp"
, "url": "https://events.docker.com/events/details/docker-bangkok-presents-docker-in-thai-meetup-january-2018"
, "title": "Docker.com"
}
]
, "declared":
{ "filename": "data/2018-01/docker-in-thai-meetup.md"
, "line": 1
, "column": 1
}
}
, { "id": "kiwi-com-talks-meetup-246060093"
, "start":
{ "year": 2018
, "month": 1
, "date": 22
}
, "end":
{ "year": 2018
, "month": 1
, "date": 22
}
, "categories":
[ "Meetup"
]
, "topics":
[ "JavaScript"
]
, "time":
[ { "from":
{ "hour": 17
, "minute": 30
}
, "to":
{ "hour": 20
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "Kiwi.com talks — Let’s talk about JavaScript beyond the web"
, "location":
{ "title": "The Hive Thonglor"
, "url": "https://www.google.com/maps/place/The+Hive+Thonglor/@13.7320056,100.574429,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29e55a95f6f93:0xf9a8634f35bf33a6!8m2!3d13.7320004!4d100.5766177"
, "detail": "Meet us at the rooftop garden"
}
, "summary": "We are group of digital nomads from Kiwi.com travelling to Bangkok in January 2018 who would be pleased to share acquired knowledge about developing JavaScript apps with the others."
, "description": "JavaScript world has exceeded the limits of browser environment and it's present in backend & mobile app world as well. Come and hear what we have learned so far while using latest technologies like Next.js, GraphQL or React Native.\n\n- Next.js by Michal Sanger\n- GraphQL by Martin Zlamal\n- Building mobile app with React Native by Václav Šír"
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/Kiwi-com-talks-The-age-of-JavaScript/events/246060093/"
, "title": "Meetup.com"
}
]
, "declared":
{ "filename": "data/2018-01/kiwi-com-talks.md"
, "line": 1
, "column": 1
}
}
, { "id": "bkkhack-243386059"
, "start":
{ "year": 2018
, "month": 1
, "date": 25
}
, "end":
{ "year": 2018
, "month": 1
, "date": 25
}
, "categories":
[ "Codefest"
]
, "topics":
[ "Hack Night"
]
, "time": null
, "title": "BKK/hack Hack Night"
, "location":
{ "title": "อาคาร 100 ปี วิศวฯ จุฬาฯ"
, "url": "https://www.google.com/maps/place/%E0%B8%AD%E0%B8%B2%E0%B8%84%E0%B8%B2%E0%B8%A3+100+%E0%B8%9B%E0%B8%B5+%E0%B8%A7%E0%B8%B4%E0%B8%A8%E0%B8%A7%E0%B8%AF+%E0%B8%88%E0%B8%B8%E0%B8%AC%E0%B8%B2%E0%B8%AF/@13.7373391,100.5308892,17z/data=!4m8!1m2!2m1!1z4Lit4Liy4LiE4Liy4LijIDEwMCDguJvguLUg4Lin4Li04Lio4Lin4LivIOC4iOC4uOC4rOC4suC4rw!3m4!1s0x30e29ed5c73c4281:0x1d308f75b16d208f!8m2!3d13.736365!4d100.5339478"
, "detail": "[Enginex: Coworking Space of CU Intania](https://www.facebook.com/pages/Enginex-Coworking-Space-of-CU-Intania/1145859865449291), 6th floor"
}
, "summary": "ไม่ว่าคุณอยากจะเขียนภาษาอะไร Python, Ruby, JavaScript, Scala, PHP, Prolog คุณมาได้เลย อยากทำ Arduino ก็ขนมาได้ ถ้าอยากหาทีมสำหรับทำโปรเจค open source หรือหาคนช่วยโปรเจคงานอดิเรกของคุณจัดมาเลย! จะเขียนภาษาไหน ระดับใดก็ได้ มีกฎข้อเดียวคือคุณต้องเอาเครื่องมาเอง"
, "description": "An event for all the coding/maker community. Any language, any level. The only rule is you must bring a laptop.\n\nWe seek to foster a welcoming cross-cultural community of hackers in and around BKK. Share your knowledge and learn from others, in a relaxed but hands-on setting.\n\nThis Meetup group focuses on participatory events—hacking is doing, not listening to presentations. Bring your own hobby projects, contribute to open source together, ask questions you encounter in your work."
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/bkkhack/events/243386059/"
, "title": "Meetup.com"
, "detail": "Free"
}
]
, "declared":
{ "filename": "data/2018-01/bkkhack.md"
, "line": 1
, "column": 1
}
}
, { "id": "jsconf-asia-2018"
, "start":
{ "year": 2018
, "month": 1
, "date": 25
}
, "end":
{ "year": 2018
, "month": 1
, "date": 27
}
, "categories":
[ "Conference"
]
, "topics":
[ "JavaScript"
]
, "time": null
, "title": "JSConf.Asia 2018"
, "location":
{ "title": "Singapore"
, "detail": "[Capitol Theatre](https://www.google.com/maps/place/Capitol+Theatre/@1.2935154,103.8491291,17z/data=!3m2!4b1!5s0x31da19a6aee41b9b:0xdd2c699900dbf180!4m5!3m4!1s0x31da19a41e0fc24d:0x6ede36ccc2300a68!8m2!3d1.29351!4d103.8513178); [Shangri-La Rasa Sentosa Hotel](https://www.google.com/maps/place/Shangri-La's+Rasa+Sentosa+Resort+%26+Spa,+Singapore/@1.2577265,103.80783,17z/data=!4m16!1m10!4m9!1m0!1m6!1m2!1s0x31da1bf0985ea1ed:0xb36c305d75a03941!2s101+Siloso+Road,+Shangri-La's+Rasa+Sentosa+Resort+%26+Spa,+Singapore,+Singapore+098970!2m2!1d103.8100187!2d1.2577211!3e0!3m4!1s0x31da1bf0985ea1ed:0xb36c305d75a03941!8m2!3d1.2577211!4d103.8100187)"
}
, "summary": "งาน JavaScript ที่ใหญ่ที่สุดในเอเชียตะวันออกเฉียงใต้\nจะได้เจอคนจาก Microsoft, Mozilla, … ด้วย\nงานนี้คนไทยไปเยอะ (30 กว่าคน) เลยใส่ไว้ในปฏิทินนี้ด้วย"
, "description": "JSConf.Asia 2018 is a 3 day long celebration of the web technology and design. It is the sixth edition of Southeast Asia’s most influential community event from developers for developers with the aim to educate, inspire and entertain around open source and the web."
, "links":
[ { "type": "website"
, "url": "https://2018.jsconf.asia/"
, "title": "2018.jsconf.asia"
}
, { "type": "ticket"
, "url": "https://events.pouchnation.com/event/jsconfasia2018"
, "title": "Buy tickets"
, "price": "1090 SGD"
}
, { "type": "rsvp"
, "url": "https://www.facebook.com/events/111499759572747/"
, "title": "Facebook event"
}
]
, "declared":
{ "filename": "data/2018-01/jsconf-asia-2018.md"
, "line": 1
, "column": 1
}
}
, { "id": "insurtech-ignite-workshop"
, "start":
{ "year": 2018
, "month": 1
, "date": 27
}
, "end":
{ "year": 2018
, "month": 1
, "date": 27
}
, "categories":
[ "Workshop"
]
, "topics":
[ "Insurtech"
]
, "time":
[ { "from":
{ "hour": 9
, "minute": 30
}
, "to":
{ "hour": 18
, "minute": 30
}
, "after": false
, "agenda": null
}
]
, "title": "Insurtech Ignite Workshop"
, "location":
{ "title": "CU Innovation Hub"
, "url": "https://www.google.com/maps/place/CU+Innovation+Hub/@13.7426771,100.5257938,17z/data=!3m1!4b1!4m5!3m4!1s0x30e2992ce63a9795:0x30d3c8c1558d1354!8m2!3d13.7426719!4d100.5279825"
, "detail": null
}
, "summary": ""
, "description": "Insurtech Ignite Workshop จัดขึ้นเพื่อผู้ที่สนใจจะมาร่วมฟัง เทคนิค แบบเจาะลึก และอัพเดตเทรนต์ด้าน Insurance Industry, Future of Business with Big Data, AI, Automation พร้อมกิจกรรม Networking ในวันที่ 27 มกราคม 2561 นี้"
, "links":
[ { "type": "ticket"
, "url": "https://dev.wi.th/event/insurtech-ignite-workshop"
, "title": "Devcamp"
}
]
, "declared":
{ "filename": "data/2018-01/insurtech-ignite-workshop.md"
, "line": 1
, "column": 1
}
}
, { "id": "google-cloud-onboard-bangkok-2018"
, "start":
{ "year": 2018
, "month": 1
, "date": 30
}
, "end":
{ "year": 2018
, "month": 1
, "date": 30
}
, "categories":
[ "Workshop"
]
, "topics":
[ "Google Cloud Platform"
, "Cloud"
]
, "time":
[ { "from":
{ "hour": 8
, "minute": 30
}
, "to":
{ "hour": 17
, "minute": 30
}
, "after": false
, "agenda": null
}
]
, "title": "Google Cloud OnBoard Bangkok 2018"
, "location":
{ "title": "Centara Grand at CentralWorld"
, "url": "https://www.google.com/maps/place/Centara+Grand+at+CentralWorld/@13.7477222,100.5365583,17z/data=!3m1!4b1!4m5!3m4!1s0x30e2992f7809567f:0xccc050cff0e7d234!8m2!3d13.747717!4d100.538747"
, "detail": "Convention Centre B2, 22nd Floor"
}
, "summary": "งานสัมมนา Google Cloud OnBoard นี้เป็นงานสัมมนาฟรีที่วิทยากรจาก Google จะมาแนะนำเทคโนโลยีของ Google Cloud Platform งานนี้เหมาะกับทั้ง IT Managers, Systems Engineers and Operations professionals, Developers, Solution Architects, และผู้ที่สนใจในเทคโนโลยีของ Google ทุกคน"
, "description": "Cloud OnBoard is a free full-day instructor-led enablement and training event that will provide you with a step-by-step technical introduction to the Google Cloud Platform (GCP). Through a combination of instructor-led presentations and hands-on labs, you will learn how to get started with Google App Engine, Datastore, Storage, Container Engine, Compute Engine and Network, Big Data and Machine Learning."
, "links":
[ { "type": "website"
, "url": "https://cloudplatformonline.com/2018-onboard-bkk.html"
, "title": "Google Cloud"
}
, { "type": "ticket"
, "url": "https://cloudplatformonline.com/2018-onboard-bkk.html#register"
, "title": "Google Cloud"
, "price": "Free"
}
]
, "declared":
{ "filename": "data/2018-01/google-cloud-onboard-bangkok.md"
, "line": 1
, "column": 1
}
}
, { "id": "insurtech-ignite-hackathon"
, "start":
{ "year": 2018
, "month": 2
, "date": 3
}
, "end":
{ "year": 2018
, "month": 2
, "date": 4
}
, "categories":
[ "Hackathon"
]
, "topics":
[ "Insurtech"
]
, "time": null
, "title": "Insurtech Ignite Hackathon"
, "location":
{ "title": "CU Innovation Hub"
, "url": "https://www.google.com/maps/place/CU+Innovation+Hub/@13.7426771,100.5257938,17z/data=!3m1!4b1!4m5!3m4!1s0x30e2992ce63a9795:0x30d3c8c1558d1354!8m2!3d13.7426719!4d100.5279825"
, "detail": null
}
, "summary": "การแข่งขันพัฒนาซอฟต์แวร์ และเทคโนโลยีที่ท้าทายที่สุดครั้งหนึ่งของประเทศไทย พร้อมโอกาสในการพัฒนาธุรกิจ และนวัตกรรมร่วมกับ บริษัทประกันภัยชั้นนำของประเทศ ชิงรางวัลกว่า 100,000 บาท ในวันที่ 3 กุมภาพันธ์ - 4 กุมภาพันธ์ 2561"
, "description": "InsurTech Ignite Hackthon ครั้งแรกของบริษัทประกันภัยชั้นนำ ของประเทศ ที่รวมตัวกันภายใต้ สมาคมประกันวินาศภัยไทย จัด Hackathon ให้สตาร์ทอัพและผู้ประกอบการรุ่นใหม่เข้ามามีส่วนร่วมในการพัฒนานวัตกรรมที่เกี่ยวข้องกับการประกันภัย ชิงรางวัลรวมมูลค่า 100,000 บาท พร้อมรับการบ่มเพาะเป็นระยะเวลา 2 เดือน และมีโอกาสได้พัฒนานวัตกรรมร่วมกับบริษัทประกันภัยชั้นนำของประเทศ"
, "links":
[ { "type": "ticket"
, "url": "https://dev.wi.th/event/insurtech-ignite-hackathon"
, "title": "Devcamp"
}
]
, "declared":
{ "filename": "data/2018-02/insurtech-ignite-hackathon.md"
, "line": 1
, "column": 1
}
}
, { "id": "thaipy-feb-2018"
, "start":
{ "year": 2018
, "month": 2
, "date": 8
}
, "end":
{ "year": 2018
, "month": 2
, "date": 8
}
, "categories":
[ "Meetup"
]
, "topics":
[ "Ruby"
, "Python"
]
, "time":
[ { "from":
{ "hour": 18
, "minute": 30
}
, "to":
{ "hour": 20
, "minute": 30
}
, "after": true
, "agenda": null
}
]
, "title": "ThaiPy Bangkok Meetup: Ruby for Python Devs + Insecure Things to Avoid in Python"
, "location":
{ "title": "Bhiraj Tower"
, "url": "https://www.google.com/maps/place/BHIRAJ+TOWER+at+EmQuartier/@13.7314622,100.5672243,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29f01858d150f:0xbc0e87a22c16ae1c!8m2!3d13.731457!4d100.569413"
, "detail": "aCommerce HQ, 33rd floor"
}
, "summary": "This is for anyone who likes beauty and productivity with their code."
, "description": "- \"Ruby for python developers\" - Dan Itsara (Glazziq)\n- \"Some insecure things to avoid in python\" - Dominik 'Disconnect3d' Czarnota (Collective Sense)"
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/ThaiPy-Bangkok-Python-Meetup/events/246228255/"
, "title": "Meetup.com"
, "detail": "Free, snacks and drinks provided"
}
]
, "declared":
{ "filename": "data/2018-02/thaipy-feb-2018.md"
, "line": 1
, "column": 1
}
}
, { "id": "tech-at-agoda-19-metaprogramming"
, "start":
{ "year": 2018
, "month": 2
, "date": 10
}
, "end":
{ "year": 2018
, "month": 2
, "date": 10
}
, "categories":
[ "Meetup"
]
, "topics":
[ ".NET"
, "Scala"
]
, "time": null
, "title": "TechAtAgoda - Metaprogramming"
, "location":
{ "title": "The Offices at Centralworld"
, "url": "https://www.google.com/maps/place/The+Offices+At+Central+World/@13.7461805,100.5388239,17z/data=!3m1!5s0x30e29ecfc46acedb:0xdb78b1e7e3812c1!4m8!1m2!2m1!1sBangkok,+The+Offices+At+Central+World,+Bangkok,+meetup1,+th!3m4!1s0x30e29ecfd2620337:0xe3abefcb26228c94!8m2!3d13.7457892!4d100.5380479"
, "detail": null
}
, "summary": "Monthly Meetup from Agoda, One of Fanciest Tech Company in Thailand. We was thinking a lot about how to start a new year and what topic to choose. So, finally... First topic of 2018 year is Metaprogramming. Tada! We gonna focus on Roslyn and Scalameta:"
, "description": "[Roslyn](https://github.com/dotnet/roslyn) \"Getting started with Roslyn analyzers\" by Krisztian Bodrogi, Senior Software Engineer at Agoda. Introduction to Roslyn (.NET Compiler Platform) and Roslyn diagnostic analyzers to build static analyzers for your project. Krisztian will explain how the platform works and show some examples for Roslyn API.\n\n[Scalameta](http://scalameta.org/) Senior Software Developer at Agoda, Bartosz Bąbol (Bartek) will share his experience in Metaprogramming: \"Magic at Compile Time. Metaprogramming in Scala\". You can also check out his impressive blog to find some cool stuff about fun with Scalameta (http://www.bbartosz.com/)"
, "links":
[ { "type": "ticket"
, "url": "https://www.meetup.com/TechAtAgoda/events/246665015/"
, "title": "Meetup.com"
}
]
, "declared":
{ "filename": "data/2018-02/tech-at-agoda-19-metaprogramming.md"
, "line": 1
, "column": 1
}
}
, { "id": "wordcamp-bangkok-2018"
, "start":
{ "year": 2018
, "month": 2
, "date": 17
}
, "end":
{ "year": 2018
, "month": 2
, "date": 18
}
, "categories":
[ "Conference"
]
, "topics":
[ "WordPress"
]
, "time":
[ { "from":
{ "hour": 8
, "minute": 0
}
, "to":
{ "hour": 17
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "WordCamp Bangkok 2018"
, "location":
{ "title": "มหาวิทยาลัยสยาม"
, "url": "https://www.google.com/maps/place/Siam+University/@13.7182852,100.450954,17z/data=!3m1!4b1!4m5!3m4!1s0x30e2983b3ccda6b9:0x7160b277b60e7199!8m2!3d13.71828!4d100.453148"
, "detail": null
}
, "summary": "WordCamp เป็นงานสัมมนาของ WordPress ที่เปิดโอกาสให้ทุกคนที่มีความสนใจเรื่องราวเกี่ยวกับ WordPress อาทิเช่น บล็อกเกอร์, นักพัฒนา, นักออกแบบ, นักการตลาด, เจ้าของธุรกิจ, ผู้บริหาร, นักศึกษา และจากสาขาอื่นๆทั่วประเทศให้ได้มาพบปะ และทำกิจกรรมร่วมกัน"
, "description": "17 กุมภาพันธ์ - Contributor Day วันที่ทุกคนมาแจมกัน เพื่อ Contribute ให้กับ WordPress เราจะได้เรียนรู้ว่าเราสามารถมีส่วนช่วยพัฒนา WordPress ให้ดีขึ้นได้อย่างไร\n\n18 กุมภาพันธ์ - Conference Day เข้าร่วมฟังหัวข้อการบรรยายต่างๆที่เกี่ยวข้องกับ WordPress ครอบคลุมตั้งแต่ ผู้เริ่มต้นใช้งาน, บล็อกเกอร์, นักพัฒนา, นักออกแบบ และคนที่ทำธุรกิจ รวมไปถึงกิจกรรมต่างๆ ที่จะช่วยให้คุณได้พบกับเพื่อนใหม่ๆ"
, "links":
[ { "type": "website"
, "url": "https://2018.bangkok.wordcamp.org"
, "title": "2018.bangkok.wordcamp.org"
}
, { "type": "ticket"
, "url": "https://2018.bangkok.wordcamp.org/tickets/"
, "title": "2018.bangkok.wordcamp.org"
, "price": "FREE for Contributor Day, 300 THB for Conference Day"
}
, { "type": "rsvp"
, "url": "https://web.facebook.com/events/365647900565474/"
, "title": "Facebook Event"
}
]
, "declared":
{ "filename": "data/2018-02/wordcamp-bangkok-2018.md"
, "line": 1
, "column": 1
}
}
, { "id": "thoughtworks-ux-vs-ba-2981"
, "start":
{ "year": 2018
, "month": 2
, "date": 21
}
, "end":
{ "year": 2018
, "month": 2
, "date": 21
}
, "categories":
[ "Meetup"
]
, "topics":
[ "UX"
, "BA"
]
, "time":
[ { "from":
{ "hour": 18
, "minute": 0
}
, "to":
{ "hour": 22
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "ลั่นกลองรบ : ศึกระหว่าง User Experience กับ Business Analyst"
, "location":
{ "title": "BIG Co-working Space"
, "url": "https://www.google.com/maps/place/BIG+Co-working+Space/@13.7566867,100.571952,15z/data=!4m5!3m4!1s0x0:0xf2124609ad0be030!8m2!3d13.7566867!4d100.571952"
, "detail": null
}
, "summary": "ThoughtWorks Talks Tech #1 มาพร้อมกับ ความเข้มข้น ของหัวข้อสนทนาเพื่อการสร้างซอฟแวร์ที่ดีที่สุด เมื่อฝั่งของธุรกิจ (Business Analyst) และตัวแทนของผู้ใช้ (User Experience) ต้องห้ำหั่นกันเพื่อเป็นตัวแทนเสียงของแต่ละฝ่าย เราจะทำกันอย่างไร เพื่อสร้างอนาคตที่ดีที่สุดของซอฟแวร์ร่วมกัน"
, "description": "จำเป็นหรือไม่ ที่งานจะต้องมี Business Analyst / User Experience คนๆ นี้ สำคัญอย่างไร? เป็นไปได้หรือไม่ที่ เราจะเป็นทั้ง Business Analyst และ User Experience พร้อมๆ กัน? เมื่อความต้องการของทั้งสองฝ่ายต่างกันอย่างสุดขั้ว เราจะทำอย่างไรเพื่อให้งานของเราออกมาดีที่สุด? บทเรียนเจ็บๆ และเทคนิคจากผู้เชี่ยวชาญ\n\nมาร่วมลั่นกลองรบในงานครั้งนี้ที่จะสร้างความตื่นเต้น เสียงหัวเราะ ความสนุก ไปพร้อมกับการได้ความรู้ของการพัฒนาซอฟแวร์ให้จบ กับที่นี่ ThoughtWorks Tech Talk #1"
, "links":
[ { "type": "ticket"
, "url": "https://www.eventpop.me/e/2981"
, "title": "Event Pop"
, "price": "FREE"
}
]
, "declared":
{ "filename": "data/2018-02/thoughtworks-ux-vs-ba.md"
, "line": 1
, "column": 1
}
}
, { "id": "7peaks-meetup-246897327"
, "start":
{ "year": 2018
, "month": 2
, "date": 22
}
, "end":
{ "year": 2018
, "month": 2
, "date": 22
}
, "categories":
[ "Meetup"
]
, "topics":
[ "Blockchain"
, "Ethereum"
]
, "time":
[ { "from":
{ "hour": 19
, "minute": 0
}
, "to":
{ "hour": 21
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "7 Peaks Tech Events Bangkok — Let's Build a Decentralised Blockchain App on Ethereum"
, "location":
{ "title": "7 Peaks Software"
, "url": "https://www.google.com/maps/place/7+Peaks+Software/@13.739292,100.5552093,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29edcf8a9dcf5:0xcf0d1a437c55d078!8m2!3d13.739292!4d100.557398"
, "detail": "Dhammalert Building, 2nd floor"
}
, "summary": "On this workshop, we'll build together a very simple decentralised application, on top of Ethereum."
, "description": "We'll demystify all the complexity nowadays surrounding the Blockchain topic, and in a short time, with simple tools, we'll build a Blockchain application on top of the Ethereum test network."
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/7Peaks-Tech-Events-Bangkok/events/246897327/"
, "title": "Meetup.com"
}
, { "type": "rsvp"
, "url": "https://www.facebook.com/events/2025335341040804/"
, "title": "Facebook Event"
}
]
, "declared":
{ "filename": "data/2018-02/7peaks-meetup.md"
, "line": 1
, "column": 1
}
}
, { "id": "bkkhack-243386060"
, "start":
{ "year": 2018
, "month": 2
, "date": 22
}
, "end":
{ "year": 2018
, "month": 2
, "date": 22
}
, "categories":
[ "Codefest"
]
, "topics":
[ "Hack Night"
]
, "time":
[ { "from":
{ "hour": 18
, "minute": 0
}
, "to":
{ "hour": 22
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "BKK/hack Hack Night"
, "location":
{ "title": "Learn Hub"
, "url": "https://www.google.com/maps/place/Learn+Hub/@13.7444559,100.5315245,17z/data=!4m8!1m2!2m1!1slearn+hub%2B!3m4!1s0x30e29ed20f89d211:0x810d7dd9fa79451d!8m2!3d13.74532!4d100.534531"
, "detail": "Bangkok Bank (Siam), 4th floor"
}
, "summary": "ไม่ว่าคุณอยากจะเขียนภาษาอะไร Python, Ruby, JavaScript, Scala, PHP, Prolog คุณมาได้เลย อยากทำ Arduino ก็ขนมาได้ ถ้าอยากหาทีมสำหรับทำโปรเจค open source หรือหาคนช่วยโปรเจคงานอดิเรกของคุณจัดมาเลย! จะเขียนภาษาไหน ระดับใดก็ได้ มีกฎข้อเดียวคือคุณต้องเอาเครื่องมาเอง"
, "description": "An event for all the coding/maker community. Any language, any level. The only rule is you must bring a laptop.\n\nWe seek to foster a welcoming cross-cultural community of hackers in and around BKK. Share your knowledge and learn from others, in a relaxed but hands-on setting.\n\nThis Meetup group focuses on participatory events—hacking is doing, not listening to presentations. Bring your own hobby projects, contribute to open source together, ask questions you encounter in your work."
, "links":
[ { "type": "rsvp"
, "url": "https://www.meetup.com/bkkhack/events/243386060/"
, "title": "Meetup.com"
, "detail": "Free"
}
]
, "declared":
{ "filename": "data/2018-02/bkkhack.md"
, "line": 1
, "column": 1
}
}
, { "id": "codecampvn-blockchain2018"
, "start":
{ "year": 2018
, "month": 2
, "date": 24
}
, "end":
{ "year": 2018
, "month": 2
, "date": 24
}
, "categories":
[ "Conference"
]
, "topics":
[ "Blockchain"
]
, "time":
[ { "from":
{ "hour": 19
, "minute": 0
}
, "to":
{ "hour": 22
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "Blockchain Developers new trend in 2018"
, "location":
{ "url": "https://www.google.com/maps/place/The+Knowledge+Exchange:+KX/@13.720493,100.4961223,17z/data=!3m1!4b1!4m5!3m4!1s0x30e298ee5d02d0a3:0xe2511ae461733d57!8m2!3d13.7204878!4d100.498311"
, "title": "The Knowledge Exchange: KX"
}
, "summary": "The more popular blockchain / distributed ledger systems sharing in this event: Hyperledger, stellar & IOTA. Junior & Senior blockchain engineers encourage to join this workshop."
, "description": "Welcome To Block Chain Zone. A distributed ledger is defined as a peer-to-peer network, which uses a defined consensus mechanism to prevent modification of an ordered series of time-stamped records\n\nTopics: Hyperledger Fabric + Kurbenetes: Scaling architecture; Stellar: Overview Architecture development; IOTA: Architecture of blockchain 3.0; Ethereum: Solidity in 2018"
, "links":
[ { "type": "website"
, "url": "http://codecampvn.me/blockchain2018"
, "title": "codecampvn.me"
}
, { "type": "ticket"
, "url": "http://codecampvn.me/payment?workshop=5a814a722a0f7b8849a918cf"
, "title": "codecampvn.me"
, "price": "FREE"
}
, { "type": "rsvp"
, "url": "https://www.facebook.com/events/142821576521958/"
, "title": "Facebook Event"
}
]
, "declared":
{ "filename": "data/2018-02/codecampvn-blockchain2018.md"
, "line": 1
, "column": 1
}
}
, { "id": "hashgraph-pre-hackathon-206634573226076"
, "start":
{ "year": 2018
, "month": 2
, "date": 24
}
, "end":
{ "year": 2018
, "month": 2
, "date": 25
}
, "categories":
[ "Codefest"
, "Hackathon"
]
, "topics":
[ "Hashgraph"
]
, "time":
[ { "from":
{ "hour": 9
, "minute": 0
}
, "to":
{ "hour": 17
, "minute": 0
}
, "after": false
, "agenda": null
}
]
, "title": "Hashgraph Pre-Hackathon"
, "location":
{ "title": "Geeky Base"
, "url": "https://www.google.com/maps/place/Geeky+Base/@13.8523194,100.5803435,17z/data=!3m1!4b1!4m5!3m4!1s0x30e29d2386568ec7:0xdf0eb043fcd08544!8m2!3d13.8523142!4d100.5825322"
}
, "summary": "เขาว่ามันดูดีกว่า Blockchain ดีกว่ายังไงไม่มีใครรู้ เรามาลอง ลงมือทำกันดีกว่า"
, "description": "สำหรับท่านที่สนใจงานที่เน้นแต่ เขียนโค้ด ไม่เน้น presentation ก็สองมือล้วงกระเป๋า สองเท้าก้าวเข้ามาครับ 24-25 เดือนนี้ที่ Geeky Base"
, "links":
[ { "type": "rsvp"
, "url": "https://www.facebook.com/events/206634573226076/"
, "title": "Facebook Event"
}
]
, "declared":
{ "filename": "data/2018-02/hashgraph-pre-hackathon.md"
, "line": 1
, "column": 1
}
}
, { "id": "asia-pacific-ethereum-meetup-20180225"
, "start":
{ "year": 2018
, "month": 2
, "date": 25
}
, "end":
{ "year": 2018
, "month": 2
, "date": 25
}
, "categories":
[ "Conference"
, "Meetup"
]
, "topics":
[ "Blockchain"
, "Ethereum"
]
, "time":
[ { "from":
{ "hour": 9
, "minute": 0
}
, "to":