-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevents.json
3781 lines (3781 loc) · 264 KB
/
events.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
{
"groups": {
"15632202": {
"city": "Osaka",
"country": "jp",
"description": "Hello 👋\n\nthe web is fascinating and while the web community in Osaka is sparkling, we do feel that there is little opportunity to exchange in english - the language of the web(?). In our meetups we often have presentations by our members on topic which are of their interest:\n\nWordpress Plugin? *Cool thing.* Secret for AWS! *Certainly.* Usability of japanese websites? *Yes, please.* Typography for Accessibility? *Nice.* Latest GraphQL framework? *Definitely.*\n\nWe want to organize events with presentations and we welcome anyone to join and present their projects, ideas or new things they learned at the meetup. This meetup could be your opportunity to practice your presentation skills and/or find like-minded friends to exchange about life as web *(semi-?)* 😉 professional.\n\nRecently, more and more members from Kyoto have a hard time joining us, which is why we recently set up the [KWDDM](https://www.meetup.com/kyoto-web-developers-and-designers-meetup) which, same like this here, is organized by volunteers. Any money we collect is just to cover our costs.",
"events": [
{
"description": "We arrange our first get together and make it fun.",
"duration": 7200000,
"feeSettings": null,
"id": "194472502",
"image": {
"date": 1406364300000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 2,
"time": 1406364300000,
"title": "Let's Meet Soon ... ",
"topics": [
],
"venue": "21427172"
},
{
"description": "Here is the map to this location:\n\nhttps://www.google.com/maps/place/2+Chome-16-13+Nishishinsaibashi,+Ch%C5%AB%C5%8D-ku,+%C5%8Csaka-shi,+%C5%8Csaka-fu,+Japan/@34.6695459,135.4973218,17z/data=!4m2!3m1!1s0x6000e711fb231883:0x200e8f5a81c756ce?hl=en\n\nL&L website can be found at: http://www.landl-bar.com/top/",
"duration": 0,
"feeSettings": null,
"howToFindUs": "Namba Station exit 14 at 5:30pm",
"id": "207109452",
"image": {
"date": 1411203600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 2,
"time": 1411203600000,
"title": "Presentations, Discussions and Connections",
"topics": [
],
"venue": "22372122"
},
{
"description": "Its getting colder and we sure want to take the October opportunity to exchange about what we did these hot summer months.\n\nWe were able to get a spot in the Knowledge Salon which is worth visiting just for the fun of it. There have been no presentations decided as of now.\n\nIf you wish to talk about something just mention it in the comment:\n\nWe have 4 spots each 25 mins (shorter is possible too of course).\n\nAfterwards we will can go out for drinks & food too ;).\n\nRestaurant/Bar suggestions welcome.\n\nCheers!\n\nPS.: About the Knowledge salon: http://kc-i.jp/en/facilities/salon/",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Take the elevator 北3 (no other!) to the 7th floor of the GrandFront north tower next to JR Osaka Station! Tell the lady at the entrance of the Knowledge Salon that you are a Web-designers/developers attendee! We will be in the C-D presentation room.",
"id": "209173132",
"image": {
"date": 1413615600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 22,
"numberOfAllowedGuests": 0,
"time": 1413615600000,
"title": "Monthly Meetup in October!",
"topics": [
],
"venue": "22577042"
},
{
"description": "The cold winds creep closer but they will not be able to stop our passion for the web!\n\nWe secured a spot on 29th to sharpen our braincells and exchange highly flammable ideas.\n\nIn our last Meetup we asked people what they would be interested in talking or hearing about!\n\nhttp://photos3.meetupstatic.com/photos/event/8/b/f/8/600_427355832.jpeg\n\nAnd as a result James said to have a presentation on \"Why you should not Wordpress\" and Dave will talk about \"Python 2.7 to 3\".\n\nIf you feel like you have a nice topic to have a short about feel free to mention it in the comments.\n\nWe are looking forward to meetup with you!\n\nPS.: About the Knowledge salon: http://kc-i.jp/en/facilities/salon/",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Take the elevator 北3 (no other!) to the 7th floor of the GrandFront north tower next to JR Osaka Station! Tell the lady at the entrance of the Knowledge Salon that you are a Web-designers/developers attendee! We will be in the C-D presentation room.",
"id": "216341542",
"image": {
"date": 1417244400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 22,
"numberOfAllowedGuests": 0,
"time": 1417244400000,
"title": "Monthly Meetup in November!",
"topics": [
],
"venue": "22577042"
},
{
"description": "2015 starts and the web prevails and we continue on our journeys! So: Let's Meetup for nice discussions with peers, new opinions and interesting dissections about all things trending and/or crazy in our daily challenges to survive the rapid progress.\n\nRight now it looks like James will be talking about \"Why you shouldn't use Wordpress\" and Kenji about \"Dealing with DB, ORM, MVC\". *But!* This time we setup a discussion board at loomio (because it seems to work quite nicely) so you can have a voice in what comes up!\n\nhttps://www.loomio.org/g/ZXSCpa6z/web-developers-and-designers-meetup-osaka\n\nHope to see you all well and healthy in January!\n\nPS.: Martin has been very busy the past weeks and thats why it took a while to get this setup. If you feel like you can write this sort of text better than him, setup discussions etc. then your support would be welcome :)\n\nPPS.: This site is still very raw. It would be awesome if we had a nice banner/logo. Do you need an outlet for your creativity?",
"duration": 0,
"feeSettings": null,
"howToFindUs": "http://kc-i.jp/en/facilities/salon/",
"id": "219327553",
"image": {
"date": 1422082800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 20,
"numberOfAllowedGuests": 0,
"time": 1422082800000,
"title": "Kick-Off 2015 Meetup",
"topics": [
],
"venue": "22577042"
},
{
"description": "Charging right into 2015 we will have our next month web-bashing. We are not sure who will catch next times big\n\nWe have not decided yet on \"who talks about what\" but I found the privacy switch on loomio! (now its open to anyone :p)\n\nhttps://www.loomio.org/g/ZXSCpa6z/web-developers-and-designers-meetup-osaka\n\nHope to see you all well and healthy in February!\n\nPS.: This site is still very raw. It would be awesome if we had a nice banner/logo. Do you need an outlet for your creativity?\n\nPPS.: http://www.innovation-osaka.jp/ja/events/4636 <- this the mashapp hack-a-thon that I was talking about\n\nPPPS.: Next NodeSchool is on 19th http://nodeschool.doorkeeper.jp/events/20593",
"duration": 0,
"feeSettings": null,
"howToFindUs": "http://kc-i.jp/en/facilities/salon/",
"id": "220314026",
"image": {
"date": 1425106800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 24,
"numberOfAllowedGuests": 0,
"time": 1425106800000,
"title": "February 2015 Meetup",
"topics": [
],
"venue": "22577042"
},
{
"description": "While we are waiting on the spring to show up, lets have another meetup in march!\n\nAs usually we have open discussions with people of many fields: graphic designing, DBA (Database Admins), HTML, PHP, CSS experts, those that have had experiences setting up business in Japan, crowd-sourcing or outsourcing, successful collaborations and we most certainly welcome you.\n\nFor this meeting, Mr. Christian Oliff will prepare a talk about high performance html and perhaps we can get a \"podium discussion\" on \"differences in web development and use from the point of various countries\" running: https://github.com/owddm/presentations/issues/1 (any volunteers?)\n\nOn the topic of presentations: we are trying something new! You can now share your thoughts and ideas on what we are doing at Github: https://github.com/owddm/presentations/issues\n\nIn case you want to help out with things: just comment here: https://github.com/owddm/kickoff/issues/1 and we will add you to the owners list.\n\nAlso if the talks and presentations aren't enough: there is usually a completely informal get-together afterwards!\n\nIf you are interested in talking about whatever-that-strike-your-fancy over drinks or food please join. Up until now we have been looking for restaurants ad-hoc but because Saturdays are busy, we ask before-hands if you want to attend to make sure that we can reserve somewhere nice.\n\nThank you and looking forward to see you!\n\nPS: This is Grand Front location: https://goo.gl/maps/z0tHz",
"duration": 0,
"feeSettings": null,
"howToFindUs": "7th Floor, North Building Grand Front Umeda (Take the North 北 3 elevator!)",
"id": "221046973",
"image": {
"date": 1427530500000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 24,
"numberOfAllowedGuests": 0,
"time": 1427530500000,
"title": "Join Us On March 28th",
"topics": [
],
"venue": "22577042"
},
{
"description": "Spring is here, the cherry blossom is about to finish blooming and we shall meet again!\n\nAs usually we have open discussions with people of many fields: graphic designing, DBA (Database Admins), HTML, PHP, CSS experts, those that have had experiences setting up business in Japan, crowd-sourcing or outsourcing, successful collaborations and we most certainly welcome you!\n\nRight now the meetings are not yet planned, if you want to hear about something or want to present something just post a new issue on github: https://github.com/owddm/presentations/issues\n\nAs a result of last time's meeting I setup a organization repository that contains information on how the meetup is organized at the moment. If you feel like taking over the task please let me know! We are also looking for help.\n\nIf you are interested in talking about whatever-that-strike-your-fancy over drinks or food please join. Up until now we have been looking for restaurants ad-hoc but because Saturdays are busy, we ask before-hands if you want to attend to make sure that we can reserve somewhere nice.\n\nThank you and looking forward to see you!\n\nPS: This is Grand Front location: https://goo.gl/maps/z0tHz",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "7th Floor, North Building Grand Front Umeda (Take the North 北 3 elevator!)",
"id": "221648850",
"image": {
"date": 1429945200000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 24,
"numberOfAllowedGuests": 0,
"time": 1429945200000,
"title": "April's web developer talks",
"topics": [
],
"venue": "22577042"
},
{
"description": "Summer is coming!\n\nFirst meeting after the golden week, it presumably will be significantly warmer and a result of that we will start at 18:00! (actually its because I couldn't get the meeting space before that, but maybe its a good chance to establish a summer time between may and october?)\n\nAs usually we have open discussions with people of many fields: graphic designing, DBA (Database Admins), HTML, PHP, CSS experts, those that have had experiences setting up business in Japan, crowd-sourcing or outsourcing, successful collaborations and we most certainly welcome you!\n\nRight now the meetings are not yet planned, if you want to hear about something or want to present something just post a new issue on github: https://github.com/owddm/presentations/issues\n\nWe are having an organisation setup on github . If you feel like helping, having a problem or taking over the task please let me know! We are also looking for help. https://github.com/owddm/organization/issues\n\nIf you are interested in talking about whatever-that-strike-your-fancy over drinks or food please join. Last time we were able to reserve the place we usually go, which is a nice little improvement!\n\nThank you and looking forward to see you!\n\nPS: This is Grand Front location: https://goo.gl/maps/z0tHz",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "7th Floor, North Building Grand Front Umeda (Take the North 北 3 elevator!)",
"id": "222203849",
"image": {
"date": 1432976400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 24,
"numberOfAllowedGuests": 0,
"time": 1432976400000,
"title": "Web Summer Kick-off Osaka",
"topics": [
],
"venue": "22577042"
},
{
"description": "Summer is here! Eat some ice-cream and then join us for some summer talks!\n\nGoogle I/O happened and now - before the typhoon seasons start - lets get together and talk web again!\n\nAs usually we have open discussions with people of many fields: graphic designing, DBA (Database Admins), HTML, PHP, CSS experts, those that have had experiences setting up business in Japan, crowd-sourcing or outsourcing, successful collaborations and we most certainly welcome you!\n\nRight now the meetings are not yet planned, if you want to hear about something or want to present something just post a new issue on github: https://github.com/owddm/presentations/issues\n\nWe are having an organisation setup on github . If you feel like helping, having a problem or taking over the task please let me know! We are also looking for help. https://github.com/owddm/organization/issues\n\nIf you are interested in talking about whatever-that-strike-your-fancy over drinks or food please join. Last time we were able to reserve the place we usually go, which is a nice little improvement!\n\nThank you and looking forward to see you!\n\nPS: This is Grand Front location: https://goo.gl/maps/z0tHz",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "7th Floor, North Building Grand Front Umeda (Take the North 北 3 elevator!)",
"id": "222961448",
"image": {
"date": 1435397400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 24,
"numberOfAllowedGuests": 0,
"time": 1435397400000,
"title": "Web Summer Talks Osaka",
"topics": [
],
"venue": "22577042"
},
{
"description": "It is July and Osaka is hot! Both literally and figuratively. So many events and opportunities pop up that it almost feels startup-y here. Come to join us to talk about web development and design!\n\nAs usually we have open discussions with people of many fields: graphic design, DBA (Database Admins), HTML, PHP, CSS experts, those that have had experiences setting up business in Japan, crowd-sourcing or outsourcing, successful collaborations. Our discussions sometimes drift into geeky regions but we try to keep it at a level where people unfamiliar can understand. If you are interested in websites - no matter at which level - we welcome you!\n\nRight now we have no concrete talks for the meeting planned but if you feel like talking about something just let us know and we reserve a bit of time for you. You can talk about whatever is interesting for you.\n\nWe are having an organisation setup on github . If you feel like helping, having a problem or taking over the task please let me know! We are also looking for help.\n\nhttps://github.com/owddm/organization/issues\n\nIf you are interested in talking about whatever-that-strike-your-fancy over drinks or food please join.\n\nThank you and looking forward to see you!\n\nPS.: We have a strict seat limit, please RSVP for your friends as well!",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Go to GrandFront North tower (north of the south tower which is north of JR Osaka station) get into the 北3 elevator and get to the 7th floor.",
"id": "223691814",
"image": {
"date": 1437814800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 24,
"numberOfAllowedGuests": 0,
"time": 1437814800000,
"title": "Web talks in July!",
"topics": [
],
"venue": "22577042"
},
{
"description": "The cicada's chirp, the typhoons whirl and web developers meet up and talk.\n\nSummer is reaching its peak and we shall meet again. Web developers and designers from Osaka or other corners of Kansai: you are welcome to join us! Our talks are often very casual about things related to our work such as new CSS features, importance of workflows, difference between database and/or payment systems, new Wordpress features and oh, so much more.\n\nThis is the first time in a while that I could't arrange our usual place in the Knowledge Salon. (sorry for that) I arranged the C7 coworking space. Its a bit harder to access but should make good for it in charm.\n\nAfter the meetup we usually go out for drinks in a nearby izakaya.\n\nWe are having an organisation setup on github . If you feel like helping, having a problem or taking over the task or have something cool that you want to present please let me know! We are looking for volunteers.\n\nhttps://github.com/owddm/organization/issues\n\nThank you and looking forward to see you!\n\nAbout Recruiting: At our last meetup I okayed a recruiter to join our circle because some of our members are searching jobs in japan. It was not as comfortable as it could be so I thought to lay down the rules about recruiting:\n\nRecruiters are welcome to join us but they need to be with a web background themselves and they need to arrive on time to introduce themselves with their intention before the meetup. Interested members then can talk to them afterwards and not the other way around.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Right below the DropInn Osaka is the C7coworking space. The door will be opened with a OWDDM sign next to the street!",
"id": "224252563",
"image": {
"date": 1440838800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 30,
"numberOfAllowedGuests": 0,
"time": 1440838800000,
"title": "Relaxed web talks",
"topics": [
],
"venue": "23994174"
},
{
"description": "The first cool nights have arrived, and typhoons seem to be a distant memory. Kaki-fruits are about to be in season again and we find ourselves in the tempered japanese autumn.\n\nWeb developers and designers from Osaka or other corners of Kansai: you are welcome to join us and talk about web in light spirit. Our talks are often very casual about things related to our work such as new CSS features, layout of websites, importance of workflows, difference between database and/or payment systems, new wordpress features, docker setup and oh, so much more.\n\nFor the last time we will be at C7 coworking because it has been received well in august's meetup. Lets\n\nAfter the meetup we usually go out for drinks in a nearby izakaya.\n\nWe are having an organisation setup on github . If you feel like helping, having a problem or taking over the task or have something cool that you want to present please let me know! We are looking for volunteers.\n\nhttps://github.com/owddm/organization/issues\n\nThank you and looking forward to see you!\n\nPs.: We said last time that we want some designers to have a presentation. Please contact me if you have time to talk about layouts, japanese web design, accessibility etc.\n\nNote: Former rules about recruiting persist.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "We are on the 2nd floor above Tenkaippin (1st floor) and below DropInn Osaka (3rd floor), there is a dedicated floor stating \"c7 coworking\" right next on the street that will be lit and open (with an OWDDM sign)",
"id": "225330671",
"image": {
"date": 1443258000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 0,
"time": 1443258000000,
"title": "Early autumn web talks",
"topics": [
],
"venue": "23994174"
},
{
"description": "Hello Webweavers,\n\nFall has progressed, the leaves will turn red, the nights will be cooler and we will meet to listen and talk about the state of the responsive web and other things we care about.\n\nWeb developers and designers from Osaka or other corners of Kansai: you are welcome to join us at the Knowledge Salon for a nice exchange at the Knowledge Salon where we return to after two nice meetings at C7.\n\nWe usually have a wide range of topics. Be it databases, facebook logins, design workflows, internationalisation, code structures to github usually deep conversations get started in the second half of the meeting.\n\nFor the first half, Luna offered to be talking about responsive websites!\n\nI am looking forward to her presentation and hope you will enjoy it too!\n\nNote: After the meetup we usually go out for drinks and socializing to a nearby izakaya.",
"duration": 0,
"feeSettings": null,
"howToFindUs": "Take the North 3(北3!) elevator of the Grandfront North building to the 7th floor and tell the entrance lady of Knowledge Salon that you registered here.",
"id": "225647457",
"image": {
"date": 1446282000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 23,
"numberOfAllowedGuests": 0,
"time": 1446282000000,
"title": "Autumn Web Exchange",
"topics": [
],
"venue": "22577042"
},
{
"description": "Hello Web creatives,\n\nThe cool rain covers silently prepares us for the winter. In that spirit I changed our meeting time back to our winter setting and we shall meet again at 16:00 on Sat. the 28th. As promised I was looking to find a different meeting space for us which is why this announcement slightly late but we have now the Aiming (http://aiming-inc.com/en/about/access/) Inc's meeting space in the GrandFront North towers 18th floor! I am looking forward to have this month's conversation there!\n\nWhile we are at the topic:\nLuna is preparing a presentation on Responsive design and we can welcome a special guest this month! Jessica Rose (from DreamFactory (https://www.dreamfactory.com/)) is travelling in Japan and the timing fits so she will be talking about Reusable APIs and Development Patterns for the web.\n\nAs usual we welcome Web developers and designers and other web professionals from Osaka or other corners of Kansai to join us in our lively conversations on wide-ranging topics.\n\nI am looking forward to the presentations and hope you will join us too!\n\nbest regards\nMartin Heidegger\n\nNote: After the meetup we usually go out for drinks and socializing to a nearby izakaya, now that we are in wintertime we will have it maybe a little cozier.",
"duration": 0,
"feeSettings": null,
"howToFindUs": "Take the Tower B (タワー B!) elevator of the Grandfront North building to the 9th floor and take the elevator up to the 18th floor",
"id": "226831453",
"image": {
"date": 1448694000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 0,
"time": 1448694000000,
"title": "Osaka November Web Meetup",
"topics": [
],
"venue": "24213835"
},
{
"description": "Happy New Year Websters!\n\nThe year has turned, we have 2016 and the time has come to talk web again! Because it's a new year and because the Remote Year (http://www.remoteyear.com/) is Kansai this month January I thought we have a day of Web hacking together. One afternoon where we pick a topic to learn/work on and evening have a short presentation on it. For the fun and love of design/html/http/json or whatever moves your mind.\n\nThe attendance this time is a little different. We will start at noon and in the evening have a set of presentations before we go out for drinks. It is okay to join us later (say around 17:00) for presentation round-ups. You can hack together or alone. If you are looking for others to join you it would be nice if you could share your interest in the comments so maybe others can join you.\n\nWe meet this month again at the Aiming office. They have been so kind to offer their shiny, new office in the new Tower B.\n\nLooking forward to next week!",
"duration": 21600000,
"feeSettings": null,
"howToFindUs": "Take the Tower B (タワー B!) elevator of the Grandfront North building to the 9th floor and take the elevator up to the 18th floor",
"id": "228102170",
"image": {
"date": 1453519800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 30,
"numberOfAllowedGuests": 2,
"time": 1453519800000,
"title": "New Year Hacking Day!",
"topics": [
],
"venue": "24213835"
},
{
"description": "Hello Web Enthusiasts,\n\nAfter last months experiment we are returning back to our regular schedule in this short month. We welcome web developers and designers from Osaka or other corners of Kansai: Please join us at the meeting space of Aiming (that they generously provided) for an relaxed exchange.\n\nWe usually have a wide range of topics. Be it databases, facebook logins, design workflows, internationalisation, code structures or github; the topics is wide and varied. All you need to bring is an open mind and an interest in the web.\n\nAs of now we have still an opening for presentations if you would like (us) to talk about something of your interest please mention it in the comments. If you have something you would like to present, please contact Martin - who will be once more this months host.\n\nNote: After the meetup we usually go out for drinks and socializing to a nearby izakaya.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Take the Grandfront North building to the 9th floor (the glass elevator next to the bridge from the south tower goes up there) and use the elevator in the big hall to the 18th floor.",
"id": "228676008",
"image": {
"date": 1456563600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 25,
"numberOfAllowedGuests": 0,
"time": 1456563600000,
"title": "February Web Talks",
"topics": [
],
"venue": "24213835"
},
{
"description": "Hello Osaka (and Kansai) web designers and developers, spring is arriving and we have some exciting speakers for the next Meetup on 19th March. We welcome new-comers, experienced developers and designers.\n\nIn this coming Meetup, we will try to open up some of our regular members' laptops and see what is lurking behind them! They will introduce some of their tools that they use and sharing some of their experience in setting up web design and applications.\n\nPlease join us at the meeting space at Aiming for an informal and casual exchange. They generously provided a place for us.\n\nNote: After the meetup we usually go out for drinks and socializing to a nearby Izakaya.",
"duration": 0,
"feeSettings": null,
"howToFindUs": "Take the elevators at the North building and go up to the 9th floor. After that you need to take another elevator to go to the 18th floor.",
"id": "229405636",
"image": {
"date": 1458378000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 2,
"time": 1458378000000,
"title": "Spring Meetup - what is lurking behind those laptops?",
"topics": [
],
"venue": "24213835"
},
{
"description": "Welcome back, dear Web enthusiasts!\n\nWe got some feedback that the awesome presentations last month by Karen, Benjamin and Frank have raised an interesting question: What do the senior developers of our group think would be good to start to study? What would they study now? And how can you get into the web profession? etc.\n\nThis month we would like to invite you to join us in the discussion on the basics. Designers, Developers, aspiring Members - you are very welcome!\n\nThe topics of our group are extremely wide: Design, Usability, Accessibility, SEO, API's, E-Commerce, Hosting, Ruby on Rails, CMS, IoT etc.\n\nTo be able to talk about what is interesting to you as a beginner, it would be awesome if you could add a comment and tell us what mystery of the web you would like to uncover! We will then select a few topics and see if someone can talk about what those topics basics are and how to learn best more about it.\n\nAfter the meetup we will go out to an Izakaya for drinks and conversation!\n\nWe hope to see you on Apr. 23rd at Conference room of Aiming, the gaming company that kindly let us use their space!\n\nNote: This is the first meetup that will be co-organized by Victor Trofin. He is a beginner and he will be bringing extra-good questions!",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "From JR Station: pass through the GrandFront South Tower and take elevator next to the bridge to the 9th floor. Then take the elevator in the sky lobby to the 18th floor.",
"id": "230012291",
"image": {
"date": 1461402000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1461402000000,
"title": "Talking the new Basics",
"topics": [
],
"venue": "24213835"
},
{
"description": "Dear all developers, designers and enthusiasts, welcome back for our May’s meetup, the first one after the Golden Week.\n\nThis month we would like to invite you to join us for discussions on Web Components, Web Security basics, plus a 15 minutes Q&A session for beginners. Don’t worry, this time we will keep the Q&A session on the point, providing answers to beginners on technical aspects of their interest.\n\nFellow beginners and enthusiasts, feel free to leave us a reply with questions you would like to address at this meetup. Let us know what questions you have for our experienced members.\n\nAlthough our discussions sometimes may drift into geeky stuff we try to keep it at a level where people unfamiliar with the topics can understand. If you are interested in websites, no matter at which level, we welcome you!\n\nThis month we couldn’t get the meeting room at Aiming Inc. thus we will meet at Cybozu (http://cybozu.co.jp/osaka/) in the Hankyu building! Please take the Business Elevator in the Umeda Hankyu Building Office Tower up to the 15th floor to the Sky Lounge and from there the elevator to the 35th floor.\n\nNote: After the meetup we will go out to an Izakaya for drinks and conversation!\n\nIf you feel like helping, taking over a task or wish to hold a presentation/ discussion please let us know! We are also looking for help.\n\nCome join us for an informal and casual talk about web development and design! Thank you and looking forward to see you!",
"duration": 0,
"feeSettings": null,
"howToFindUs": "Take the Business Elevator (beside in the Hanky Building in Umeda",
"id": "230897726",
"image": {
"date": 1464426000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 35,
"numberOfAllowedGuests": 0,
"time": 1464426000000,
"title": "May Meetup",
"topics": [
],
"venue": "24529555"
},
{
"description": "Hello aspiring developers, professional developers and hobbyist developers!\n\nIt’s June and that means it’s finally time for another meetup!\n\nFor the first half of the June meetup we would like to do either a talk on workflow using Git, a technology used very often in web development for variation control and a powerful tool for collaborative projects and open source software, or on Continuous Integration, a software engineering practice of merging all of the code written by developers working on a project into a shared repository several times a day. I’ve set up a survey, so please take a second to fill it out and tell us which one you would prefer to hear about: https://www.wedgies.com/question/57597dc200f88e18002b18ac\n\nFor the second half we are hoping to do a presentation on commonly used design tools or design concepts. If you have a favorite design tool that you use frequently and you are willing to share with the group we would really appreciate it! You can either message me (Jake Biros) or any of the other event organizers if you would like to volunteer.\n\nAny of these topics would be useful for developers of any level, so feel free to stop by no matter how experienced you are!\n\nTo wrap it all up, as always we will be going out for food and drinks at a local izakaya afterwards so if you have time after the event come out and socialize with your fellow web development enthusiasts :)",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "From JR Station: pass through the GrandFront South Tower and take elevator next to the bridge to the 9th floor. Then take the elevator in the sky lobby to the 18th floor.",
"id": "231734870",
"image": {
"date": 1466240400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1466240400000,
"title": "June Meetup - Cool web stuff to stave off the heat!",
"topics": [
],
"venue": "24213835"
},
{
"description": "All are welcome to join our July summer night meetup. It is the middle of summer and night is short. But we'll have cool talks and the great company of fellow web designers and developers to compensate.\n\nOur first talk will be on Resilient Design by Jake, we haven't had one of those for a long while and we hope to have more design talks in the future. Follow on from last month's talk on Github/Gitlab, Ben will be talking about Continuous Integration, cool tech tools to automate mundane stuff. Daniel will introduce us to the free and exciting world of OpenStreetMap. We are also having Q&A for those who want to ask our elders on questions about web design or development. Please send us questions and we shall try to answer them at our Q&A session.\n\nThese cool topics are aimed at designers and developers of any level, so feel free to stop by no matter how experienced you are!\n\nTo wrap it up, we shall be having a beer at the local Izakaiya for more get-together and in-depth discussion. As always, we'll be taking our themed group picture. Join us on 30 July.\n\nProgram\n\n* Resilient Design by Jake\n\n* Continuous Integration (CI) by Ben\n\n* OpenStreetMap by Daniel\n\n* Asking the elders Q&A with Victor",
"duration": 0,
"feeSettings": null,
"howToFindUs": "The Aiming office is in the north tower of the Grandfront Osaka building north of JR Osaka. Use the business elevator or the glass elevator beside the bridge to the south tower to get to the sky lobby in the 9F and take the elevator to the 18F.",
"id": "232528649",
"image": {
"date": 1469869200000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 37,
"numberOfAllowedGuests": 0,
"time": 1469869200000,
"title": "Summer night with cool design and tech.",
"topics": [
],
"venue": "24213835"
},
{
"description": "Web developers and designers from Kansai: you are welcome to join us for this month's summer meetup. All you need to bring is an open mind and an interest in the web, regardless of experience and background. Yes, we welcome you even if you are a total beginner and you want to have an insight into web design or development!\n\nThis month’s agenda is yet to be determined as we are still looking to lock in speakers for the event. We usually have a wide range of topics and this meetup will be no exception.\n\nWe have two more seats available for speakers, so please let us know if you have something to share. Do you have an insight on the following topics: making code scalable, 3d augmented design, trends on UI/ UX design or maybe just some recent work you are proud of and wish to share it with us? Please get in touch! We look forward to your presentation!\n\nAfter the meetup we will go out to a near-by Izakaya for drinks and post-meetup socializing. This will be a great opportunity to make new connections, especially for newcomers!\n\nWe hope to see you on Aug 27 at 6PM, at our usual venue kindly provided each time by Aiming Inc.\n\nUntil then, stay cool, stay frosty :)\n\n--\n\nHow to get there: The meetup will take place at Aiming Inc’ (http://aiming-inc.com/en/about/access/)s Osaka office, located in the GrandFront North towers! Use this entrance http://bit.ly/2aQrWR8 , take the elevator up to the 9th floor (sky lobby) and then take another elevator directly to the 18th floor.",
"duration": 0,
"feeSettings": null,
"id": "233221987",
"image": {
"date": 1472288400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 20,
"numberOfAllowedGuests": 0,
"time": 1472288400000,
"title": "OWDDM: Escape the August heat at this month's summer meetup in Osaka",
"topics": [
],
"venue": "24213835"
},
{
"description": "Welcome back, dear Web enthusiasts!\n\nThe air is gradually cooling all around us, but our web talks are heating up! As always, we aim to exchange ideas and knowledge on topics related to web design and development. All you need is an interest in the web, regardless of your experience.\n\nOur first talk this month will be on web optimization with Benoît Quenaudon. He'll be showing us how to make the most of the browser developer tools you already have to vastly improve your user experience.\n\nSacha Greif will be talking about state in Javascript. Local state, global state, state management, stateless... You can't go far in 2016's JavaScript ecosystem without hearing about \"state\". But what does it all mean? Sacha will help you understand the mysteries of React and Redux, without having to write a single line of code.\n\nContinuing from Ken Ho's talk last month on 3D in Javascript, Rahmat Hidayat will illuminate the world of creative coding as used in web apps for marketing and promotion.\n\nAfter the meetup we will go out to a nearby Izakaya for drinks and post-meetup socializing. There will be an opportunity to network with like-minded developers, designers and enthusiasts.\n\nWe hope to see you on September 24 at 6PM, at our usual venue kindly provided by Aiming Inc.\n\nSee you there!\n\n--\n\nHow to get there: The meetup will take place at Aiming Inc’ (http://aiming-inc.com/en/about/access/)s Osaka office, located in the Grand Front North towers. Use this entrance http://bit.ly/2aQrWR8 or walk through the south building from Osaka Station, take the elevator up to the 9th floor (sky lobby) and then take another elevator directly to the 18th floor.",
"duration": 0,
"feeSettings": null,
"howToFindUs": "Aiming Inc., Grand Front North tower. Use this entrance http://bit.ly/2aQrWR8 or walk through the south building from Osaka Station, take the elevator up to the 9th floor (sky lobby), disembark, then take another elevator to the 18th floor.",
"id": "233957080",
"image": {
"date": 1474707600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1474707600000,
"title": "September web talks - Scope, Optimization, and Creative Coding",
"topics": [
],
"venue": "24213835"
},
{
"description": "Dear designers and developers,\n\nAs the new season is progressing, we would like to extend an invitation to join us this month for our Mid-autumn Meetup. You are welcome to join us at our usual venue kindly provided by Aiming Inc. located in the Grand Front North towers.\n\nFreshly arrived in Japan, Vincent Prouillet from We Are Wizards (https://wearewizards.io/) would like to continue last months presentation on state in JavaScript with a 30 minute session about Mobx. Mobx is a simple and scalable state management solution mostly used with React.\n\nLong time Osakan artisan (http://code-artisan.io/) Florent Btd. from Cookbiz (https://cookbiz.jp/) will touch upon the Security topic with his 30 minute introduction on the actual hacking of websites. Real life hacking 101.\n\nAfter the meetup we will go out to a nearby Izakaya for drinks and post-meetup socializing. There will be an opportunity to network with like-minded developers, designers and enthusiasts.\n\nWe hope to see you on October 22, 2016 at 6PM.\n\nSee you there!\n\n--\n\nHow to get there: The meetup will take place at Aiming Inc’ (http://aiming-inc.com/en/about/access/)s Osaka office, located in the Grand Front North towers. Use this entrance http://bit.ly/2aQrWR8 or walk through the south building from Osaka Station, take the elevator up to the 9th floor (sky lobby) and then take another elevator directly to the 18th floor.",
"duration": 0,
"feeSettings": null,
"id": "234692399",
"image": {
"date": 1477126800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1477126800000,
"title": "October fun with MobX and Real life hacking",
"topics": [
],
"venue": "24213835"
},
{
"description": "Dear Web enthusiasts and developers,\n\nWelcome back for our November Meetup, probably our last regular meetup scheduled for this year. This month we couldn’t arrange the event at our usual place kindly provided to us by Aiming, but we were able to secure a room at Synergy Marketing (https://www.synergy-marketing.co.jp/company/en/location/). It’s a bit harder to access but it’s one of the few places that can accommodate us all.\n\nAnyway, changing our venue is worth the hassle because one of our speakers this month is Koji Kimura-san from Button Inc (http://btn-inc.jp/about/). He will be talking about Designing off-screen interaction.\n\nUpdated: Another reason why you should attend this meetup is our second speaker, Jeremiah Chienda, who will be talking about Functional programming. He will help demystify the newcomers who don't know what to make of it and will spark a good discussion with the veterans of this programming paradigm that is becoming mainstream.\n\nDid we manage to capture your interest? We hope to see you on November 26 at Synergy Marketing. Please note that we will start at 7PM this time, one hour later than usual. Here is how to get there (https://www.google.com/maps/dir/34.7036282,135.4977071/Japan,+%E3%80%92530-0003+%C5%8Csaka-fu,+%C5%8Csaka-shi,+Kita-ku,+D%C5%8Djima,+1+Chome%E2%88%926%E2%88%9220,+%E5%A0%82%E5%B3%B6%E3%82%A2%E3%83%90%E3%83%B3%E3%82%B6/@34.7000861,135.4928541,16z/data=!3m1!4b1!4m9!4m8!1m0!1m5!1m1!1s0x6000e6f2706da48f:0xb88c3a6d57083f1c!2m2!1d135.4963967!2d34.6969038!3e2?hl=en) from Umeda train station. I am told that the meeting space is inside a building that is really hard to miss; you know you have arrived at the right place if you can see a book shop at the 1st floor. Inside the building there is only one central elevator that will take you up to the 21st floor (you will find us there).\n\nAs usual, after the meetup we will go out to a near-by Izakaya for drinks and post-meetup socializing. If you know any good places to eat/ drink around that area please let us know and we will make a reservation. It might spare the effort of going back to Umeda, at our regular drinking spot.\n\nSee you soon,",
"duration": 0,
"feeSettings": null,
"howToFindUs": "530-0003 Dojima-Avanza 21F, 1-6-20 Dojima, Kita-ku, Osaka | Follow this URL http://tinyurl.com/grh6try for directions to this month’s venue",
"id": "235173899",
"image": {
"date": 1480154400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 35,
"numberOfAllowedGuests": 2,
"time": 1480154400000,
"title": "Late autumn talks with design and code",
"topics": [
],
"venue": "24870768"
},
{
"description": "Dear all,\n\nAs the new year unfolds, we welcome you back to another exciting meetup on topics related to web design and development! We hope to see you on February 18 at 6PM for another exchange of ideas and knowledge, at our usual venue kindly provided by Aiming Inc.\n\nThis month Michael Rambeau will give us a talk on \"Javascript and web development in 2017\". No doubt that we will have a lively session on what to expect in web development this year. Barbara Marcantonio will talk to us about Gestalt design applied to web design and other practical design tips to enhance UI and UX that can be useful for both designers and non-designers.\n\nAs of now we still have openings for presentations. If you would like (us) to talk about something of your interest or if you have something you would like to present please mention it in the comments. We’d love to hear from you.\n\nAfter the meetup we will go out for drinks and socializing at a nearby Izakaya.\n\n--\n\nHow to get there: The meetup will take place at Aiming Inc’ (http://aiming-inc.com/en/about/access/)s Osaka office, located in the Grand Front North towers. Use this entrance http://bit.ly/2aQrWR8 or walk through the south building from Osaka Station, take the elevator up to the 9th floor (sky lobby) and then take another elevator directly to the 18th floor.",
"duration": 0,
"feeSettings": null,
"id": "235750563",
"image": {
"date": 1487408400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1487408400000,
"title": "February 2017 Spring Meetup",
"topics": [
],
"venue": "24213835"
},
{
"description": "Hi everybody! This month, we're skipping our usual event and instead teaming up with the HN Kansai (http://hnkansai.org) meetup for one giant, awesome end of year party in Umeda, Osaka.\n\nIt'll be a great chance to meet old friends and make new ones, talk about design and tech, and of course drink too much beer.\n\nWe hope you join us!\n\n• Date: Friday, December 16th, 7:30PM\n\n• Location: Maharaja Restaurant (https://tabelog.com/osaka/A2701/A270101/27005099/)\n\n• Cost: ¥3500 for food and drinks\n\n– The OWDDM & HN Kansai teams.",
"duration": 0,
"feeSettings": {
"accepts": "CASH",
"amount": 3500,
"currency": "JPY",
"refundPolicy": {
"days": 0,
"notes": "",
"policies": [
"no_refunds"
]
},
"required": false
},
"id": "236107100",
"image": {
"date": 1481884200000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 0,
"time": 1481884200000,
"title": "OWDDM ✕ HNKansai − End of Year Party",
"topics": [
],
"venue": "24945450"
},
{
"description": "Dear designers and developers,\n\nAs the new season is arriving we take the opportunity to announce our next meetup in Osaka. You are welcome to join us on March 25th at 6PM, at our usual venue kindly provided by Aiming Inc. This month we have some exciting speakers:\n\nTiro Swaby (https://www.neopent.com/), a Canadian designer based in Kyoto will talk to us about digital design and prototyping tools such as Sketch or InVision. Continuing with the design topic, Kite Koga (http://kiteretz.com/), prolific Osakan web designer and programmer will give us a talk on UI/ UX: \"Let's Think about the Right Answer of Design and UI/UX\"\n\nFinally, Ben Murden, CTO at Musicisum (https://www.musicisum.net/about/) will say a few words about his experiment with Nginx on Heroku with Google Pagespeed.\n\nNo doubt this month we will have some very useful sessions for both designers and non-designers. Newcomers are welcome here!\n\nAfter the meetup we will go out for drinks and socializing at a nearby Izakaya. There will be an opportunity to network with like-minded developers and designers.\n\nSee you there: March 25th at 6PM, Aiming Inc.!\n\n--\n\nHow to get there: Aiming Inc’ (http://aiming-inc.com/en/about/access/)s Osaka office is located in the Grand Front North towers. Use this entrance http://bit.ly/2aQrWR8 or walk through the south building from Osaka Station, take the elevator up to the 9th floor (sky lobby) and then take another elevator directly to the 18th floor.",
"duration": 7200000,
"feeSettings": null,
"id": "237826327",
"image": {
"date": 1490432400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 45,
"numberOfAllowedGuests": 2,
"time": 1490432400000,
"title": "March web talks with UI/ UX and design tools",
"topics": [
],
"venue": "24213835"
},
{
"description": "Hello Osaka Web Developers & Designers,\n\nTo make the organization of the events in this meetup group clearer and more public, we start with this meetup our yearly session of coordination meetups.\n\nIn this meetup Martin will have 30 minutes to explain everything you need to know if you want to volunteer and is available for another 30 minute Q&A.\n\nPlease join us if you feel like you want to contribute or if you are simple interested in hearing how we work.\n\ncheers and best regards\nMartin Heidegger",
"duration": 3600000,
"feeSettings": null,
"howToFindUs": "http://juso-coworking.com/contact/access.html",
"id": "237998866",
"image": {
"date": 1488799800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 0,
"time": 1488799800000,
"title": "Make OWDDM yours - Volunteer Coordination Meetup #1",
"topics": [
],
"venue": "25085262"
},
{
"description": "The cold days are over, and before we rush into Golden Week we have another nice Meetup in April while the last Cherry trees bloom. I would like to invite you to meet like-minded Web Designers and Developers and join us for two nice presentations and optionally some drinks afterwards.\n\nThis time will be about JavaScript. Yeah, I know what you are thinking. \"Not another weird framework.\" But this time should be different, because we have exceptional speakers with actual solutions to improve comfort in the increasingly irritating world of JavaScript.\n\nWe are honored to have Sacha Greif with us. He is the Co-Author of \"Discover Meteor\", entrepreneur and long time hacker community activist. He will be presenting Vulcan.js, his latest project to make next-generation, full-stack projects quickly and in a breeze.\n\nAfter that, Frank Xu - excellent developer from Shanghai - will show us how he \"Makes JavaScript easy again\" using little tricks, and will shine a light on things that simply are way more complex than they need be.\n\nOf course we will have some time to chat during the event and will be hanging out at an Izakaya afterwards.\n\nWe are looking forward to have you!",
"duration": 0,
"feeSettings": null,
"howToFindUs": "In the GrandFront north tower take the Business elevator to the 9th floor (sky lobby) and continue to the Aiming Office in the 18th floor",
"id": "239073556",
"image": {
"date": 1492851600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1492851600000,
"title": "Comfortable JavaScript Talks in April",
"topics": [
],
"venue": "24213835"
},
{
"description": "Spring is still in the air, but summer is now just around the corner. We hope that you enjoyed your holidays and had a truly golden week. With a little delay, we are happy to announce the next Designers and Developers meetup taking place on May 27 at the usual location, kindly provided by Aiming Inc.\n\nUpdate 5/19: As promised, this month we are bringing together another two great design professionals who share their insights.\n\nFollowing the highly-appreciated presentation about Sketch, Mathieu Mayer (http://mx3m.github.io/) - who is a front-end designer at AQ - will show us with real world examples how to make interactive prototypes using Principle, another app built for mac OS.\n\nRica Hayakawa (http://rica.cc/), a graphic designer specialized in puppet illustration and animation, will show us how to design characters and will draw parallels between character design in Japan and in the rest of the world.\n\nDon’t forget to RSVP and please join us for a great day, packed with tools and discussions that will expand your design horizons.\n\nAs usual, after the meetup we will go to a nearby Izakaya for some drinks and some more relaxing chat. Looking forward to see you on May 27 at 6PM, Aiming Inc!\n\n--\n\nCheck out Aiming Inc’ (http://aiming-inc.com/en/about/access/)s website and find out how to get to their Osaka Studio. You need to go to Grand Front North towers, take the elevator up to the sky lobby (9th floor) and then take another elevator directly to the 18th floor.",
"duration": 7200000,
"feeSettings": null,
"id": "239372163",
"image": {
"date": 1495875600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1495875600000,
"title": "May friendly talks",
"topics": [
],
"venue": "24213835"
},
{
"description": "Summer is upon us soon and we have a cool early summer night meetup event for all of you aspiring web designers and developers this month.\n\nWe welcome everyone, the professional designers and developers who would like to share their experiences and ideas with others. We also welcome those who are a total beginner and want to have some insights into web design and development. All you need to bring is an open mind and an interest in the web, regardless of experience and background.\n\nThis month’s theme is to learn some new and easy ways to develop web sites.\n\nWe have Colin Watson (https://morpht.com/users/colin-watson) from Sydney Australia. He is going to talk about the “Rapid Drupal 8 Development With Components”.\n\nJames McGrath (http://jamesmcgrath.net/) is going to tell us how he tried to learn the latest in Javascript ES6 and accidentally having over 2000 views on his codes in codepen.\n\n\"GraphQL, what's that about?\", Martin Heidegger (https://twitter.com/leichtgewicht/) is going to let us know more about GraphQL, the latest trend in web development.\n\nAfter the meetup we will go out to a near-by Izakaya for drinks and post-meetup socializing. This will be a great opportunity to make new connections, especially for newcomers!\n\nWe hope to see you on June 24 at 6 PM.\n\nPlease note that we are holding it at the unusal location Cybozu this month.\n\nSummary:\n\nTitle: Rapid Drupal 8 Development With Components\nSpeaker: Colin Watson\n\nTitle: How I accidentally made a slider that got over 2000 views on codepen.\nSpeaker: James McGrath\n\nTitle: GraphQL, what's that about?\nSpeaker: Martin Heidegger",
"duration": 0,
"feeSettings": null,
"howToFindUs": "In the first floor of the Hankyu Department Building take the business elevator, in the business section, to the 15th floor (Sky Lounge) and from there take the elevator to the 35th floor.",
"id": "239372174",
"image": {
"date": 1498294800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1498294800000,
"title": "Early summer night in June Meetup",
"topics": [
],
"venue": "24529555"
},
{
"description": "Join us at air-conditioned Aiming Inc. to have a refreshing time of learning from each other.\n\nWe all go through journeys of discovery, and sometimes that leads to unconventional decisions about what technologies to use. Our two talks this time will have that theme in common.\n\nFirst, UX/bot designer Aska Uda (https://www.meetup.com/Osaka-Web-Designers-and-Developers-Meetup/members/96374152/) will share with us about her work on the design of her company's travel AI bot, including why they decided to make it a bot instead of an app.\n\nThen this meetup's host Karen Ellrick (https://www.meetup.com/Osaka-Web-Designers-and-Developers-Meetup/members/84880272/) will share a talk she will call either \"Paper is Not Dead\" or \"Using an Ancient Tool to Solve a Modern Problem\" - two use cases that needed precise layouts of database data, and how the saga of trying to accomplish that in a web app led to using LaTeX to build PDFs on the fly.\n\nAs always, after the meetup those who are interested can go with us to a nearby izakaya for drinks, food, and getting to know each other - a great time to make new friends of fellow designers/developers/learners!",
"duration": 0,
"feeSettings": null,
"howToFindUs": "To get to Aiming Inc.'s Osaka Studio, go to the Grand Front North building, take the elevator to the 9th floor, follow the signs to Office Tower B, and take another elevator to the 18th floor.",
"id": "240538427",
"image": {
"date": 1500714000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 2,
"time": 1500714000000,
"title": "Cool code to beat the heat in July",
"topics": [
],
"venue": "24213835"
},
{
"description": "Join us in August for another great meetup with topics on web design and web programming. For those of you who won't be escaping the summer heat at end of the month, we have the opportunity to meet again on August 26 at 6PM, at Aiming Inc.’s Osaka Studio.\n\nAfter a short self-introductory session, Daniel (https://www.linkedin.com/in/danielojedaloisel/) (a Spanish developer who recently joined our group) will introduce us to the concept of Extreme Programming. As he defines it, “extreme programming is a software development methodology, a set of practices to achieve its 5 core values. It focuses on lowering the cost of change which is mainly related with the maintenance cost of the software products. Beware! Some of its practices are dangerously addictive, at least for me.”\n\nMatthew Badeau (whom you already well know from previous meetups) will continue the chatbot discussion with a talk about the chatbot he made to collect temperatures from around his office. Last month we saw the UI/UX perspective and this month we are going to see what toolkit to use and how it can be used for internal company projects.\n\nAfter the meetup, we usually go to a nearby Izakaya for some drinks and some more relaxing chat.\n\nLooking forward to see you on August 26 at 6PM. Beginners are welcome!\n\n--\n\nLocation: You need to go to Grand Front North towers, take the elevator up to the sky lobby (9th floor) and then take another elevator directly to the 18th floor. You can also check out Aiming Inc’ (http://aiming-inc.com/en/about/access/)s website for details.",
"duration": 0,
"feeSettings": null,
"id": "240569746",
"image": {
"date": 1503738000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1503738000000,
"title": "OWDDM August Meetup",
"topics": [
],
"venue": "24213835"
},
{
"description": "Hello Developers and Designers!\n\nThe Summer is coming to an end, and while many of us still haven't returned from their summer hideouts in the home country, the rest of us are looking forward to meet again! This month sooner than usual, we shall meet on September 16th, hosted once more by awesome Aiming (http://aiming-inc.com).\n\nThis month we are focusing a bit on the organizational side of web projects.\n\nThe fabulous Timothy Andersen will be sharing his experience with \"Trials and Tribulations of Building a 2-sided Marketplace\" that he gathered when building up Musby (http://musby.com).\n\nAdditionally the very talented JB Curtin (http://jbcurtin.io) will talk about failing. Specifically code that fails and how to notice it in his talk \"Failures Happen. Tools for distributed systems\".\n\nAs usual you will have the chance to connect and we will head out for drinks afterwards.",
"duration": 0,
"feeSettings": null,
"howToFindUs": "From JR Osaka station walk north past the Grand Front South Tower. In the Grand Front North Tower take the business elevator or the elevator 4 to the Sky Lobby (9th floor) and from there take the elevator to the 18th floor.",
"id": "240569750",
"image": {
"date": 1505552400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1505552400000,
"title": "End-of-summer start afresh",
"topics": [
],
"venue": "24213835"
},
{
"description": "Location: https://global.rakuten.com/corp/about/map/index__p6.html\n\nHello Everyone.\n\nThe weather is getting cooler but the discussions are heating up!\n\n6:00 - 6:05 : Preparation\n\n6:05 - 6:20 : Introduction\n\n(10 minutes buffer just in case)\n\n6:30 - 7:15 Mandy Meissner, a UX and Service Designer will be having an input session + workshop. In the input session, she will show you how you can test product/service assumptions early with the simple prototyping and testing. In the workshop you will work on a test and simple paper prototype.\n\n7:15 - 7:25 : Short Break and Chat\n\n7:25 - 7:40 Ideru , a wannabe web developer will talk about her road from being hardware/middle ware programmer -> web development -> project management.\n\n7:41 - 7: 50 : Q&A Free Talk\n\n7:50 - 8:00 : Wrap up and leave\n\n** TIME is just a rough estimate, starting time for each discussion might be early or late depending on the each talk but will try to follow it.\n\nSo we hope that you will enjoy the upcoming discussion.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Please come to the 8th Floor (Rakuten Office)",
"id": "242801823",
"image": {
"date": 1508576400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 25,
"numberOfAllowedGuests": 2,
"time": 1508576400000,
"title": "Autumn Discussion for Awesome Techies",
"topics": [
],
"venue": "25511520"
},
{
"description": "Dear all,\n\nas we are approaching the end of this season and indeed the end of the year, November gives us the opportunity to meet for one more time and share insightful knowledge at OWDDM.\n\nEven though we are still setting up the details, we can offer a preview of what’s to come: Florent Btd, code artisan and an old friend of OWWDM, will be with us this month and will share his knowledge on hacking. This month he will be talking about Ethical Hacking, for fun and profit. Interesting!\n\nSo Join Us!\n\nAfter the meetup we will go to a nearby place for some drinks and post-meetup socializing.\n\nWe hope to see you on Saturday November 25, 2017 at 6PM. This month we are meeting at Cybozu Osaka Office, situated in Hankyu Umeda Office building at the 35th floor.\n\nSee you there!",
"duration": 7200000,
"feeSettings": null,
"id": "242802082",
"image": {
"date": 1511600400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1511600400000,
"title": "November code talks",
"topics": [
],
"venue": "24529555"
},
{
"description": "This year is ending, and as always this means we're having our end-of-year party. Be prepared to spend an evening talking with people about tech, business & design and other topics in english over pizza in Umeda!\n\nWe picked a fixed 2400yen food menu and 500yen per drink. You choose how much you drink ^_^.\n\nAbout the Location:\nThe galleria pizzeria is located about 10~15mins walk from Umeda towards Shin-Fukushima. We chose it because of the great food and the open atmosphere.\n\nHomepage: http://galleriapizza.jp/\nJapan Times Article: https://www.japantimes.co.jp/life/2016/09/23/food/galleria-neapolitan-style-pizza-made-hokkaido-flour/\n\nNote: vegan options available if you enquire in advance.",
"duration": 7200000,
"feeSettings": {
"accepts": "CASH",
"amount": 2400,
"currency": "JPY",
"refundPolicy": {
"days": 0,
"notes": "",
"policies": [
"no_refunds"
]
},
"required": false
},
"howToFindUs": "From GrandFront/Hankyu: Beside the Grandfront North tower: take the underground passage direction Sky Building and follow the big road south; direction Fukushima (we are in the first floor)",
"id": "245227060",
"image": {
"date": 1512815400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 0,
"time": 1512815400000,
"title": "HN Kansai + OWDDM 2017 End of Year Party",
"topics": [
],
"venue": "25620385"
},
{
"description": "Dear all, even as I write these lines I realize it’s been quite a while since our last gathering in Osaka. Therefore, I take the opportunity to invite everyone to the first 2018 Web Designers and Developers Meetup. We are still setting up the list of speakers and as soon as possible will offer you a preview of our lineup for the February event. By the way, if you are interested in presenting this month please let us know and we will accommodate you.\n\n** Update **\nThis month we are having two sessions brought to you by Adrien Lemaire and Marcel Takagi.\n\nAdrien will help us improve our hard skills with an \"Introduction to Kubernetes\", an open-source system for automating deployment, scaling and management of containerized applications - so many buzzwords.\n\nMarcel is going to introduce us to the \"Jobs-To-Be-Done\" Framework, making us shift our thinking by taking a different perspective on user needs, with a focus on causality and outcomes.\n****\n\nDon’t forget to sign up and join us on Saturday, February 24th 2018 at 6PM. We are meeting at Aiming Inc’s Osaka Office. After the meetup we will go to a nearby place where we can have some drinks and socialize some more.\n\nSee you soon!\n\nJust in case you need to pinpoint the location on your map, use this link http://bit.ly/2BCsZAH",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "From JR Osaka station walk north past the Grand Front South Tower. In the Grand Front North Tower take the business elevator or the elevator 4 to the Sky Lobby (9th floor) and from there take the elevator to the 18th floor.",
"id": "247246264",
"image": {
"date": 1519462800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 0,
"time": 1519462800000,
"title": "OWDDM: Let's start off the new year right",
"topics": [
],
"venue": "24213835"
},
{
"description": "Cherry blossoms are coming to town and so is another special presenter in March.\n\nShirley Wu, accomplished data visualization artist (http://sxywu.com), will interrupt her 3 month stay in Tokyo to visit us for a weekend and present her process of making data shine! Join us and be inspired by her approach.\n\nWe also have one more presenter slot waiting to be filled! In the past we asked you to send us proposals but usually we ended up contacting presenters through back-channels. We figured that it might be because of the way we asked: So, from this month onward we have an open form that you can use anytime! If you want to hear about a topic or you'd like to try presenting: please let us know through this form 👇\n\nhttps://goo.gl/forms/dWqKiy5iR4aobMc73\n\nThe event is free, but after the event we will head out for drinks usually to an Izakaya around the area. We chat and get to know each other better. We usually spend around 1000~2000円 per person.\n\nAll we ask is that you bring good vibes and an open mind.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "From JR Osaka station walk north past the Grand Front South Tower. In the Grand Front North Tower take the business elevator or the elevator 4 to the Sky Lobby (9th floor) and from there take the elevator to the 18th floor.",
"id": "248458316",
"image": {
"date": 1522486800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 0,
"time": 1522486800000,
"title": "Hi-fi Web - Visuals and all",
"topics": [
],
"venue": "24213835"
},
{
"description": "What better way to start your Golden Week than with exciting talks about the web.\n\nChristian Oliff has had long experience in developing \"High performance Websites\" and he is ready to share with us his best practices to make websites load fast and act quickly.\n\nAs if that wasn't enough, Aska Uda, an exceptional UX designer, will introduce her latest project on \"UX/UI design of a marketing tool\". This should have you on the edge of your seat if you are into getting better at designing the web.\n\nAs usual, all you need is a good mood and an open mind for the meetup.\nAfter the talks we will be going out for drinks & we can continue our conversations at the nearby Izakaiya.\n\nBy the way: if you also would like the chance to present at our meetup or if you are interested in a specific topic, feel free to let us know 👇\n\nhttps://goo.gl/forms/dWqKiy5iR4aobMc73",
"duration": 7200000,
"feeSettings": null,
"id": "249381736",
"image": {
"date": 1524906000000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 5,
"time": 1524906000000,
"title": "Golden Week Golden Web Meetup ",
"topics": [
],
"venue": "24213835"
},
{
"description": "Ever wondered how we come up with the meetup? Did you enjoy your time and feel like contributing? Do you think we could accommodate you?\n\nOnce a year we hold a meetup over drinks and snacks (thus the 500yen fee) where we talk about how the last year went and give everyone an\noffline opportunity to ask questions, bring in new ideas and/or join as organizer.",
"duration": 7200000,
"feeSettings": {
"accepts": "CASH",
"amount": 500,
"currency": "JPY",
"refundPolicy": {
"days": 0,
"notes": "",
"policies": [
"event_cancellation",
"event_rescheduled"
]
},
"required": false
},
"id": "249406527",
"image": {
"date": 1523872800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 10,
"numberOfAllowedGuests": 0,
"time": 1523872800000,
"title": "OWDDM Volunteer Coordination #2",
"topics": [
],
"venue": "25085262"
},
{
"description": "Dear Developers and Designers, May the Web be with you.\n\nWe hope that you enjoyed your holidays and had a lovely golden week. With a little delay, we are happy to announce the next Designers and Developers meetup taking place on May 26th.\n\nWe were unfortunately unable to arrange the event at our usual place, kindly provided to us by Aiming, but we were able to secure a room at Synergy Marketing (https://www.synergy-marketing.co.jp/company/en/location/).\n\nThis month, Eduard Urbach will give us a talk on 'Aero - Web libraries for Go' (https://github.com/aerogo/aero). Go is gaining relevance as a programming language in the world of web development. Let's see how Eduard has used this amazing language to build a web server.\n\nAs for the second talk, Alvaro Parra will talk about how to build web applications through stories. Writing stories as examples of how the user will interact with the application, it is easier to define the business model, and the communication between the team improves.\n\nAs usual, there will be a chance to network with each other, and we will head out for drinks afterward.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "530-0003 Dojima-Avanza 21F, 1-6-20 Dojima, Kita-ku, Osaka | Follow this URL http://tinyurl.com/grh6try for directions to this month’s venue",
"id": "249925376",
"image": {
"date": 1527325200000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1527325200000,
"title": "OWDDM May 2018 Meetup",
"topics": [
],
"venue": "24870768"
},
{
"description": "Summer fun dev-time. What better way to escape the heat than an evening in a beautifully air conditioned room with fine folks talking about web development?\n\nPreviously, Oussama told us that he would attend the Le Wagon - Coding Bootcamp in Tokyo. He has returned from his adventure and wants to share his experience with us!\n\nWe will also be joined by PHP veteran Jeff Madsen. He has been living in Kansai for many years now and works as freelancer for companies abroad. Within his many publications on PHP, he also wrote a book about freelancing! Jeff will share with us his wealth of experience in his introduction on \"How to become a freelancer\".\n\nApologies for the wait, this month we struggled to find a location, but we are finally happy to announce that we can use GVH#5 - The Hive's awesome meeting room in Umeda for the first time.\n\nWe are looking forward to seeing you there!\n\nNote: This months presentations have been organized in response to your feedback! If there is something you are looking for in future presentations, please let us know 👇.\n\nhttps://goo.gl/forms/dWqKiy5iR4aobMc73",
"duration": 7200000,
"feeSettings": null,
"id": "249925417",
"image": {
"date": 1530349200000,
"location": "images/events/4/7/1/839223.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1530349200000,
"title": "Talking Bootcamps & Freelance",
"topics": [
],
"venue": "25630979"
},
{
"description": "We hope you're enjoying the summer and are ready for the 46th Osaka Web Designer/Developer Meetup.\n\nWe're delighted to have Marcel Takagi, VP of Product at Hacarus and co-organizer of the Kyoto Startup Weekend joining us to give a talk about the 'Double Diamond' design process for innovation.\n\nChristian Oliff, Webmaster at ALK Technologies will show us '100 Things to Check Before You Launch a Website' - best practices covering usability, accessibility, SEO, security, performance and more.\n\nWe're back at GVH#5 - The Hive's meeting room in Umeda again.\nCheck here for map: https://www.gvh-5.com/en/contact/#access\n\nAs usual, there will be a chance to network with each other, and we will head out for drinks afterward. We look forward to seeing you there!\n\nNote: This months presentations have been organized in response to your feedback! If there is something you are looking for in future presentations or would like to present something yourself, please let us know 👇.\n\nhttps://goo.gl/forms/dWqKiy5iR4aobMc73",
"duration": 7200000,
"feeSettings": null,
"id": "249925425",
"image": {
"date": 1532768400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1532768400000,
"title": "OWDDM July 2018 Meetup",
"topics": [
],
"venue": "25630979"
},
{
"description": "Dear all, we hope you are fully enjoying the summer holidays. For those of you who didn't make any plans for the end of the month, no worries. We booked the room at Aiming Inc for a new designers & devs meetup, on Saturday August 25th between 6PM - 8PM.\n\nWe are still looking for speakers! If you are interested to present please let us and we will accommodate you. We will update this page as soon as we have all the details, but until then feel free to hit the CONFIRM button.\n\nUpdated: James McGrath, a front end freelancer and friend of OWDDM will talk about the essential CSS concepts you should know and master as a web developer, while I will share with you the two logistics and inventory management apps I've been contributing to at Bento&co\n\nAs usual, after the meetup we will go to a nearby izakaya for some drinks and some more socializing.\n\nSee you soon!",
"duration": 7200000,
"feeSettings": null,
"id": "249925579",
"image": {
"date": 1535187600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1535187600000,
"title": "Laid-back meetup in August",
"topics": [
],
"venue": "24213835"
},
{
"description": "Wow, this summer was hot! We plan to keep it chilled at this months OWDDM by breaking a bit out of our usual format.\n\nThis month we will - for the first time - be able to use the new Sakura Internet space in the south tower of the Grandfront Building!\n\nIn this spacious cafe / meeting space we would like to invite you to join us for listening to lessons that some of our experienced folks have learned in their work life. Be it design, workflow, programming or human related, we are looking forward to a few 5~10 minute mini-presentations with conversations in between.\n\nWe hope you can join us for a nice evening, where some of us will head out for drinks afterwards.\n\nyours\nMartin.\n\nOn another note: Many of this years presentations came to happen because of your feedback. If you would like to hear or speak about something in a future or this meetup, please let us know! 👇.\n\nhttps://goo.gl/forms/dWqKiy5iR4aobMc73",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Directly beside the JR Station, Sakura Internet is in the Grandfront South Tower (A) - not the same as Aiming! Take the business elevator in 1F/2F to the SkyLobby and take the Elevator to 35F!",
"id": "254342508",
"image": {
"date": 1537606800000,
"location": "images/events/4/7/4/280682.webp"
},
"maxTickets": 40,
"numberOfAllowedGuests": 2,
"time": 1537606800000,
"title": "Lessons Learned ",
"topics": [
],
"venue": "25928725"
},
{
"description": "The meetup will be host at GVH#5 on Sunday, Topic will be Web Security and How to make continuous integration of your WebSite.\n\nWe hope you can joined us",
"duration": 7200000,
"feeSettings": null,
"id": "255569433",
"image": {
"date": 1543136400000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 5,
"time": 1543136400000,
"title": "Introduction how to hack your website and make continuous integration from it.",
"topics": [
],
"venue": "25630979"
},
{
"description": "Hi Everyone!\n\nWe plan to get together for a year-end party along with the folks from HNKansai just like last year, at the very same place! We will meet on Friday 28th from 8pm at Galleria, a very nice pizzeria with a lot of space for people to talk and drink together 🙂 It is located just near Osaka Umeda so easily reachable from all major train lines.\n\nWe plan to have a fixed menu (2400 JPY for a full course per person) while we are still in touch to finalize the details. We will post more details as the event approaches.\n\nPlease Subscribe into HN Kansai meetup, here is the link:\nhttps://www.meetup.com/Hacker-News-Kansai/events/257099811/\n\nPlease go ahead and book your time!\nSee you soon!\nThe OWDDM Organizers",
"duration": 7200000,
"feeSettings": {
"accepts": "CASH",
"amount": 2400,
"currency": "JPY",
"refundPolicy": {
"days": 0,
"notes": "",
"policies": [
"event_cancellation",
"event_rescheduled"
]
},
"required": false
},
"id": "257200534",
"image": {
"date": 1545994800000,
"location": "images/events/4/7/7/073324.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 0,
"time": 1545994800000,
"title": "End of Year Party",
"topics": [
],
"venue": "25620385"
},
{
"description": "We have managed to invite Google Product Manager of Firebase Michael McDonald to give us a talk at our meetup. Unfortunately he has to leave on the 25th, so we decide to reschedule our Meetup to this weekend on the 23rd March at FirstServer.\n\nIn addition James McGrath will also talk about building the Mamamia website.\n\nAs usual, all you need is a good mood and an open mind for the meetup.\nAfter the talks we will be going out for drinks & we can continue our conversations at the nearby Izakaiya.\n\nPlease note that we will be starting the Meetup at 18:00. We shall be hosting it at FirstServer and NOT at the original venue GVH5",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Firstserver is on the 3rd floor",
"id": "259644459",
"image": {
"date": 1553331600000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 0,
"time": 1553331600000,
"title": "Spring time March Meetup - rekindle your passion for web development",
"topics": [
],
"venue": "26262059"
},
{
"description": "Golden Week is behind us, and the weather is heating up, so why not chill out with some cool web talks and meet designers and developers from around the Osaka area?\n\nThis month Christian Oliff will talk to us about how to improve the user experience of filling in forms on mobile with the `inputmode` attribute.\n\nWe'll be meeting at the same location as the April meetup, kindly provided by IDCF. After the talks there will be an opportunity to chat and get to know each other over drinks and food at a nearby izakaya.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "The meetup is on the 3rd floor. Enter the building from the parking entrance at the North side. If you arrive at the West entrance and see the map printed on the shuttered door, you'll need to head North and turn right.",
"id": "260439556",
"image": {
"date": 1558774800000,
"location": "images/events/5/1/1/506739.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 0,
"time": 1558774800000,
"title": "May Osaka Web Dev & Design Meetup",
"topics": [
],
"venue": "26378946"
},
{
"description": "Finally, Spring is here and the warm days are starting! Before the long golden week holiday, we would like to invite you to our April Meetup for two nice talks and optionally some drinks afterward in a nearby Izakaya.\n\nFirst up - Oussama Ladhari, a web developer in Miraidenshi Technology, will talk about Docker and how to mount an application (frontend/backend) with docker-compose, and why Dockerizing an application is very important nowadays.\n\nThen Andrew Zamora, a web developer in Mamamia, will talk to us about his career change from English teacher to a full-stack web developer and how he made this change possible.\n\nAs always, you can ask your questions as well as having a break for chatting during the event\n\nPlease go ahead and book your time!\n\nSee you soon!\n\nThe OWDDM Organizers\n(The meetup is on 3rd floor of the building)",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "Please follow the map in the featured picture",
"id": "260877986",
"image": {
"date": 1556355600000,
"location": "images/events/4/8/0/712718.webp"
},
"maxTickets": 0,
"numberOfAllowedGuests": 2,
"time": 1556355600000,
"title": "OWDDM April 2019 Meetup ",
"topics": [
],
"venue": "26262059"
},
{
"description": "The rainy season is upon us, as the rain grants us brief reprieve from the heat of summer. However, this is not the only gift we are given this month, as we forecast a shower of great web talks, too!\n\nThis month Yann Klein will talk to us about Web Augmented Reality, at a time when AR is heating up in the app space.\n\nMathieu Mayer will talk to us about UI Design patterns for developers. He will share UI Design tricks that developers can use to make their apps look good on their own. (Note [28 June 2019]: Unfortunately we've just heard from Mathieu that he is not feeling well and he will not be able to present his talk tomorrow.)\n\nWe'll be meeting at the same location as before, kindly provided by IDCF. After the talks there will be an opportunity to chat and get to know each other over drinks and food at a nearby izakaya.",
"duration": 7200000,
"feeSettings": null,
"howToFindUs": "The meetup is on the 3rd floor. Enter the building from the parking entrance at the North side. If you arrive at the West entrance and see the map printed on the shuttered door, you'll need to head North and turn right.",