-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathindex.json
1276 lines (1275 loc) · 47.4 KB
/
index.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
var places = [
{
"city": "Białystok",
"country": "PL",
"name": "Akcent Kawiarnia i Księgarnia",
"address": "Rynek Kościuszki 17",
"coordinates": "",
"description": {
"internet": "free city wifi",
"power_outlets": "4 on the wall, far right from the entrance",
"seating": "chairs, large, comfortable tables, patio furniture outside with view towards city hall",
"service": "good, the owner is always inside and can organize more power outlets if needed",
"provision": "coffee, tea, soft and alcoholic drinks. Good spinach tart, variety of cakes. Coffee a bit pricey, other drinks in good prices. You can also buy books there (mostly non-technical), it's also a bookstore."
},
"link": {"Facebook":"http://www.facebook.com/pages/Kawiarnia-Akcent/139389146143599"}
},
{
"city": "Gdańsk",
"country": "PL",
"name": "Costa Coffee",
"address": "Długa 5",
"coordinates": "",
"description": {
"internet": "wifi free",
"power_outlets": "At the walls mostly",
"seating": "Chairs and sofas",
"service": "Self-service but nice",
"provision": "coffee (really big), tea, sandwiches, muffins, sweets",
"hours": "Mon-Fri 8-21, Sat 9-21, Sun 10-21"
},
"link": {"Homepage":"http://www.costacoffee.pl/"}
},
{
"city": "Gliwice",
"country": "PL",
"name": "Club Hemingway",
"address": "Rynek ul. Raciborska 2",
"coordinates": ["50.294192","18.664849"],
"description": {
"internet": "Free fast and stable WiFi",
"power_outlets": "Near few tables",
"seating": "big, little uncomfortable chairs, few benches and reasonably big wood tables",
"service": "always enough to get you another drink",
"provision": "coffee, tea, soft, alcoholic drinks, icecream, dinner and a lot more things"
},
"link": {"Homepage":"http://www.hemingwayclub.pl"}
},
{
"city": "Kraków",
"country": "PL",
"name": "BonJour CaVa",
"address": "Warszawska 16",
"coordinates": ["50.069935", "19.943511"],
"description": {
"internet": "good wifi, ask for password",
"power_outlets": "accessible, lots of them",
"seating": "chairs and benches with lots of pillows",
"service": "very nice girls, won't disturb you",
"provision": "amazing coffe and very good food (breakfasts, dinners, cakes and tarts)"
},
"link": {"Facebook":"https://www.facebook.com/KawiarniaBonjourCava"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Bunkier Sztuki",
"address": "Planty, Plac Szczepanski",
"coordinates": ["50.063382", "19.934096"],
"description": {
"internet": "good wifi, open network",
"power_outlets": "one can get to them",
"seating": "not great. I can't imagine spending few hours in those chairs, but for shorter spans should do",
"service": "ok",
"provision": "good coffee, good food, normal prices"
},
"link": {"Facebook":"http://www.facebook.com/group.php?gid=57554203936"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Cafe Młynek",
"address": "Plac Wolnica",
"coordinates": ["50.049178", "19.944645"],
"description": {
"internet": "wifi, good connection, ask for password",
"power_outlets": "accessible, two are near to white sofa next to window",
"seating": "chairs & sofas",
"service": "nice guys",
"provision": "great coffee (oh, their mocha!) and food plus decent prices"
},
"link": {"Homepage":"http://www.cafemlynek.pl/", "Facebook":"http://www.facebook.com/pages/Cafe-M%C5%82ynek/178696854321"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Castor Coffee Club",
"address": "Market Square, Plac Mariacki 1",
"coordinates": ["50.062055", "19.939683"],
"description": {
"internet": "open wifi, decent connection speed",
"power_outlets": "lots of them located next to chairs",
"seating": "very comfortable armchairs, sofas, few bar stools",
"service": "very nice and not too obtrusive",
"provision": "awesome coffee and coffee variations (red cappuccino and chai lattes are great!). Bit small choice of food (quiches, tarts, wraps, sandwiches, cakes and pies",
"hours": "Mon-Sun 7-23"
},
"link": {"Facebook":"http://pl-pl.facebook.com/pages/Castor-Coffee-Club/154565244603777"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Drukarnia",
"address": "Nadwiślańska 1",
"coordinates": ["50.046077", "19.94929"],
"description": {
"internet": "wifi, good connection, open network (however it might not work once a fortnight or so",
"power_outlets": "accessible, approximately one plug every two tables",
"seating": "chairs & sofas",
"service": "ok",
"provision": "good coffee and tea, not too big choice of food (sometimes they have fresh sandwiches"
},
"link": {"Homepage":"http://http://www.drukarnia_podgorze.republika.pl/", "Facebook":"http://www.facebook.com/pages/Drukarnia-Jazz-Club/92289934116"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Gazeta Cafe",
"address": "Bracka 14",
"coordinates": ["50.059588", "19.936283"],
"description": {
"internet": "open wifi that requires you to accept terms and conditions. It tends to reset itself from time to time so expect to see this t&c page a lot. But connection is good",
"power_outlets": "accessible and lots of them - looks like they were put there especially for us :",
"seating": "various - from sofas and chairs to big wooden 'steps' with cushions - the last are very comfortable",
"service": "very nice unobtrusive girls",
"provision": "good coffee and tea, great frappe and other beverages, not big choice of food though",
"hours": "Mon-Fri 9-21.30, Sat 10-21, Sun 10-20"
},
"link": {"Homepage":"http://www.gazetacafe.pl/", "Facebook":"http://www.facebook.com/pages/Gazeta-Cafe-Kraków/111777562170435"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Indalo Cafe",
"address": "Tarłowska",
"coordinates": ["50.057396", "19.931252"],
"description": {
"internet": "open wifi",
"power_outlets": "accessible",
"seating": "seats insine and outside",
"service": "very nice",
"provision": "great coffee in good price, tasty sandwiches, calm atmosphere, awarded in \"Akcja Kawa\" by ITwKrakowie.org"
},
"link": {"Facebook": "http://www.facebook.com/Indalo.Cafe"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Karma",
"address": "Krupnicza 12",
"coordinates": ["50.063439", "19.930681"],
"description": {
"internet": "open (non-encrypted) WiFi, unstable, works ok near the entrance",
"power_outlets": "accessible when sitting by a wall, they're located under the seats",
"seating": "chairs and benches, could be more comfortable (some pillows available though). nice tables",
"service": "great people, won't disturb you.",
"provision": "probably the best coffee in Krakow, various kinds of organic food (also sweet), not too pricey",
"hours": "Mon-Fri: 10-20, Sat-Sun: 11-20"
}
},
{
"city": "Kraków",
"country": "PL",
"name": "Kolory",
"address": "Plac Nowy",
"coordinates": ["50.051932", "19.945362"],
"description": {
"internet": "open wifi, good connection",
"power_outlets": "easily accessible and lots of them, especially in the patio in the back",
"seating": "comfortable chairs, but additional sofa in the 'garden' would be nice",
"service": "very cool guys :) and they don't mind you having one cup of coffee for few hours",
"provision": "tasty coffee, freshly squeezed juice, ice tea made from tea and other goodies, but food is quite expensive"
}
},
{
"city": "Kraków",
"country": "PL",
"name": "Konfederacka 4",
"address": "Konfederacka 4",
"coordinates": ["50.049941", "19.926583"],
"description": {
"internet": "password encrypted, stable and fast",
"power_outlets": "two per table",
"seating": "wooden chairs",
"service": "very nice, at the bar, there is also a friendly cat",
"provision": "great coffee, freshly squizzed juice and tapas",
"hours": "Mon-Sun 10-22"
},
"link": {"Facebook": "https://www.facebook.com/konfederacka4"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Le Scandale",
"address": "Plac Nowy",
"coordinates": ["50.052021", "19.944696"],
"description": {
"internet": "good wifi, open network",
"power_outlets": "I saw few outside in the garden, but haven't tried plugging inside",
"seating": "comfortable chairs and sofas, I could sit there for hours",
"service": "very nice, but they make sure you don't have empty glass in front of you",
"provision": "good coffee, awesome tomato soup, normal prices"
},
"link": {"Homepage":"http://www.lescandale.pl/kazimierz/onas.html", "Facebook":"http://www.facebook.com/LeScandale"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Moment",
"address": "the corner of Plac Nowy and Jozefa street",
"coordinates": ["50.051001", "19.945856"],
"description": {
"internet": "reasonable connection speed, works only in the room on the right from the entrance",
"power_outlets": "there are few easily accessible, if not you can always unplug one of the lamps ;",
"seating": "comfortable sofas and chairs",
"service": "great guys that will keep the track of your empty glass",
"provision": "awesome food, good coffee"
},
"link": {"Homepage":"http://momentcafe.pl"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Tajemniczy Ogród",
"address": "Plac Nowy 9",
"coordinates": ["50.052021", "19.944696"],
"description": {
"internet": "very good fast and stable wifi, open network",
"power_outlets": "need to unplug a lamp but there's almost one per table",
"seating": "wooden chars or comfortable sofas depends on the room, easy to find comfortable place",
"service": "nice, order at the bar but they usually bring coffee to the table",
"provision": "good coffee, didn't check the food though"
},
"link": {"Homepage":"http://www.tajemniczyogrod.pl/plac", "Facebook":"http://www.facebook.com/pages/tajemniczy-ogr%C3%B3d/107118389369660"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Lunch Box Cafe",
"address": "Starowiślna 22 (wejście od Dietla)",
"coordinates": ["50.05673", "19.94518"],
"description": {
"internet": "very good, fast and stable wifi, open network",
"power_outlets": "free 3-nest socket close to the main entrance and the other one near the wall",
"seating": "wooden chairs",
"service": "very nice, order at the bar",
"provision": "good coffee, teas, soups, salads and sandwiches, quite cheap",
"hours": "Mon-Sat 7-19, Sun 7.30-19"
},
"link": {"Homepage":"http://lunchboxcafe.pl/", "Facebook":"http://pl-pl.facebook.com/pages/LUNCH-BOX-CAFE/123777694381442"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Columbus Coffee",
"address": "Starowiślna 27",
"coordinates": ["50.056680", "19.944859"],
"description": {
"internet": "very good, fast and stable wifi",
"power_outlets": "Plenty, nearly in every seat there are some around",
"seating": "sofas and wooden chairs",
"service": "very nice, order at the bar",
"provision": "ok coffee, shakes, salads and sandwiches",
"hours": "Mon-Fri 7-21, Sat 8-21, Sun 9-20"
},
"link": {"Homepage":"http://www.columbuscoffee.pl", "Facebook":"https://www.facebook.com/ColumbusCoffee"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Korek Eco Resto Bar",
"address": "Czysta 8",
"coordinates": ["50.060445", "19.937936"],
"description": {
"internet": "very good, fast and stable wifi, password protected",
"power_outlets": "single sockets",
"seating": "good chairs, sofas",
"service": "very nice, order at the table/bar",
"provision": "good coffee, teas, soups, salads and sandwiches, cakes",
"hours": "Mon-Sun 8.30 - 22.00"
},
"link": {"Homepage":"http://www.korekrestobar.pl"}
},
{
"city": "Kraków",
"country": "PL",
"name": "Tektura",
"address": "Krupnicza 7",
"coordinates": ["50.063573", "19.931117"],
"description": {
"internet": "very fast and stable wifi, password at the bar",
"power_outlets": "can be easily found, mostly one per table",
"seating": "wooden chairs, couches, benches",
"service": "nice and knowledgeable, order at the bar",
"provision": "very good coffee, beer, tarts, muffins and many more",
"hours": "Mon-Fri 8-22, Sat-Sun 9-22"
},
"link": {"Facebook":"https://www.facebook.com/pages/Tektura/356751461078030"}
},
{
"city": "Poznań",
"country": "PL",
"name": "Kukania",
"address": "Wojskowa 4, CityPark",
"coordinates": "",
"description": {
"internet": "good wifi, ask for password",
"power_outlets": "A few nearby every table",
"seating": "Comfortable chairs, a little too small tables for 2+ people",
"service": "Great service. You can ask for VIP room, if you want to talk with bigger group of people in private.",
"provision": "Great coffee (Mundo Novo: http://www.unoespresso.pl/nasza_oferta/kawa/41/52.html) and delicious salads with rucola.",
"hours": "Mon-Fri 8-22, Sat-Sun 10-22"
},
"link": {"Homepage":"http://www.kukania.pl/", "Facebook":"https://www.facebook.com/pages/Kukania-CafeBar/124864080931538"}
},
{
"city": "Szczecin",
"country": "PL",
"name": "Starbucks Coffee",
"address": "Galeria KASKADA",
"coordinates": "",
"description": {
"internet": "Free WiFi, but not so fast",
"power_outlets": "On the walls",
"seating": "Chairs and sofas",
"service": "Self-service",
"provision": "Coffee (recommend the Skinny Vanilla Latte), Tea, Sandwiches, Muffins, etc.",
"hours": "Mon-Fri between 9-11 to 21-22, Sat/Sun between 9-11 to 19-22"
},
"link": {"Homepage":"http://www.facebook.com/pages/Starbucks-Szczecin/144523252310659"}
},
{
"city": "Szczecin",
"country": "PL",
"name": "Fabryka",
"address": "Księcia Bogusława X",
"coordinates": ["53.430465", "14.54426"],
"description": {
"internet": "free wifi, good connection. There also should be some hotspots",
"power_outlets": "almost every table has an easy access to a power outlet",
"seating": "chairs & sofas",
"service": "nice guys",
"provision": "great coffee and food plus decent prices",
"hours": "Opens at 7.30, so it's good if you need to start early"
},
"link": { "Facebook":"http://www.facebook.com/fabrykanadeptaku"}
},
{
"city": "Warszawa",
"country": "PL",
"name": "Tarabuk",
"address": "Browarna, Powiśle",
"coordinates": "",
"description": {
"internet": "wifi (~2Mbit/s)",
"power_outlets": "Generally available if you sit close to a wall",
"seating": "chairs, sofas, few really comfy armchairs",
"service": "excellent",
"provision": "coffee, tea, the ginger drink and other beverages. Food: \"a delicious tart. Cakes.\""
},
"link": {"Homepage":"http://www.tarabuk.pl/", "Facebook":"http://pl-pl.facebook.com/Tarabuk"}
},
{
"city": "Warszawa",
"country": "PL",
"name": "W Biegu Cafe",
"address": "Świętokrzyska 18, near Tube station",
"coordinates": "",
"description": {
"internet": "wifi (~2Mbit/s)",
"power_outlets": "Generally available if you sit close to a wall",
"seating": "chairs, bar stools, sofas, few really comfy armchairs and a lot of space",
"service": "good",
"provision": "coffee, tea, cakes and what's important salads and sandwiches."
},
"link": {"Homepage":"http://www.wbiegucafe.pl/", "Facebook":"http://www.facebook.com/wbiegucafebyjacobskronung"}
},
{
"city": "Wojnicz",
"country": "PL",
"name": "Missterium",
"address": "Krakowska 111, near exit from road no 4",
"coordinates": ["49.95888", "20.81786"],
"description": {
"internet": "wifi (~2Mbit/s)",
"power_outlets": "Generally available if you sit close to a wall",
"seating": "comfy chairs, nice fireplace in the center",
"service": "good",
"provision": "coffee, tea, good pizza."
},
"link": {"Homepage":"http://www.missterium.pl/"}
},
{
"city": "London",
"country": "GB",
"name": "Cafe Vintage",
"address": "88 Mountgrove Road London N5 2LT, near Arsenal Tube",
"coordinates": "",
"description": {
"internet": "wifi (~4Mbit/s)",
"power_outlets": "A few, and I bought them extensions which are available",
"seating": "Chairs, in the window and in the room. Good, working bathroom",
"service": "excellent",
"provision": "coffee, tea, cakes, sandwiches, drinks and vintage clothes."
},
"link": {"Homepage":"http://www.cafevintage.co.uk/"}
},
{
"city": "London",
"country": "GB",
"name": "Departure Cafe",
"address": "649/651 Commercial Road, Limehouse, London E14 7LW",
"coordinates": "",
"description": {
"internet": "wifi (~8Mbit/s)",
"power_outlets": "Plenty, 2 or 4 next to each desk, sofa or table",
"seating": "Old sofas, chairs, table and chairs, art rooms, balcony, anywhere really",
"service": "Everyone here is so nice, it feels wrong calling it service. Awesome",
"provision": "coffee, tea, sandwiches, muffins, sweets, homemade things people bring in"
},
"link": {"Homepage":"http://www.depart.in/"}
},
{
"city": "London",
"country": "GB",
"name": "Scandinavian Kitchen",
"address": "61 Great Titchfield Street, London W1W 7PP",
"coordinates": "",
"description": {
"internet": "free, WPA-protected Wi-Fi (~10 Mbps), stable and speedy",
"power_outlets": "few are present, at least in the basement room",
"seating": "chairs, single/double tables, and a big table for group of 5-6 people available in the basement room",
"service": "ordering over the counter but staff is happy to bring drinks/food to the table, they are really nice and friendly anyway",
"provision": "hot and cold drinks, snacks, sweets and hot food during lunchtime; scandinavian deli also available"
},
"link": {"Homepage":"http://www.scandikitchen.co.uk/"}
},
{
"city": "Vilnius",
"country": "LT",
"name": "CoffeInn",
"address": "17 Vilnius st.",
"coordinates": "",
"description": {
"internet": "wifi free",
"power_outlets": "Almost everywhere",
"seating": "Simple tables, few sitbags",
"service": "Great. Food great. Coffee great. Everything - great.",
"provision": "coffee, tea, sandwiches, muffins, sweets"
},
"link": {"Homepage":"http://coffee-inn.lt/"}
},
{
"city": "Stockholm",
"country": "SE",
"name": "Il Caffè",
"address": "Södermannagatan 23",
"coordinates": ["59.313163","18.080807"],
"description": {
"internet": "wifi free",
"power_outlets": "Every two tables",
"seating": "Normal tables",
"service": "Greeat coffee, great sandwitches",
"provision": "coffee, tea, sandwiches, muffins, sweets"
},
"link": {"Homepage":"http://ilcaffe.se/"}
},
{
"city": "Stockholm",
"country": "SE",
"name": "Cafe Gråmunken",
"address": "Västerlånggatan 18",
"coordinates": ["59.325478","18.068847"],
"description": {
"internet": "wifi free (password: cafegramunken)",
"power_outlets": "There are a few",
"seating": "Normal tables",
"service": "Greeat hot chocolate",
"provision": "coffee, tea, sandwiches, muffins, sweets"
},
"link": {"Homepage":"https://www.facebook.com/pages/Caf%C3%A9-Gr%C3%A5munken/138341679557900"}
},
{
"city": "Stockholm",
"country": "SE",
"name": "Le Cafe",
"address": "Klarabergsviadukten 61",
"coordinates": ["59.330323","18.05558"],
"description": {
"internet": "wifi free",
"power_outlets": "There are a few",
"seating": "Normal tables",
"service": "Great",
"provision": "coffee, tea, sandwiches, muffins, sweets"
},
"link": {"Homepage":"http://www.lecafe.nu/"}
},
{
"city": "Stockholm",
"country": "SE",
"name": "Cafe Mocco",
"address": "Kommendörsgatan 17 (Nybrogatan)",
"coordinates": ["59.338722","18.079898"],
"description": {
"internet": "wifi free (password: mocco2010)",
"power_outlets": "There are a few",
"seating": "Comfortable tables and couches",
"service": "Great",
"provision": "coffee, tea, sandwiches, muffins, sweets, lunch"
},
"link": {"Homepage":"http://www.mocco.se/?page_id=703"}
},
{
"city": "Stockholm",
"country": "SE",
"name": "Non Solo Bar",
"address": "Odengatan 34",
"coordinates": ["59.345029","18.059034"],
"description": {
"internet": "wifi free",
"power_outlets": "There are a few",
"seating": "Normal tables",
"service": "Great",
"provision": "coffee, tea, sandwiches, muffins, sweets, lunch"
},
"link": {"Homepage":"http://www.nonsolobar.com/nonsolo.swf"}
},
{
"city": "Cologne",
"country": "DE",
"name": "Goldmund Literatur Cafe",
"address": "Glasstraße 2",
"coordinates": ["50.951221","6.919882"],
"description": {
"internet": "wifi, ask for password and an additional Telekom Hotspot",
"power_outlets": "There are a few, no power in the beer garden (obviously)",
"seating": "Normal tables",
"service": "Great",
"provision": "coffee, tea, sandwiches, muffins, sweets, lunch"
},
"link": {"Homepage":"http://www.goldmundkoeln.de"}
},
{
"city": "Lyon",
"country": "FR",
"name": "L'Antre Autre",
"address": "11 rue Terme - Metro Hôtel de Ville",
"coordinates": ["45.769484","4.83162"],
"description": {
"internet": "Free wifi, just ask for the password",
"power_outlets": "There are a few",
"seating": "Comfortable tables and couches",
"service": "Very friendly",
"provision": "Coffee, tea, juices, beers, cake, muffins, etc",
"hours": "Tue 11.30-15, 18.30-23, Wed-Sat 11.30-23"
},
"link": {"Homepage":"http://lantreautre.fr"}
},
{
"city": "Cambridge",
"country": "UK",
"name": "CB1 (oldest active cyber cafe in the World)",
"address": "32 Mill Road, CB1 2AD",
"coordinates": ["52.201168","0.134292"],
"description": {
"internet": "Free wifi, good speed, just ask for the password",
"power_outlets": "There are a few",
"seating": "Comfortable tables, seats and couches",
"service": "Very friendly",
"provision": "Coffee, tea, juices, beers, cake, meals, etc",
"hours": "Mon-Thu 8.00-20.00, Fri-Sun 10.00-20.00"
},
"link": {"Homepage":"http://www.cb1.com/cb2/"}
},
{
"city": "London",
"country": "UK",
"name": "Bread and Bean",
"address": "37 Junction Road, N19 5QU",
"coordinates": ["51.56447","-0.13506"],
"description": {
"internet": "Free wifi, good speed, just ask for the password",
"power_outlets": "2 per table",
"seating": "Comfortable tables, seats and couches",
"service": "Very friendly",
"provision": "Coffee, tea, juices, full menu",
"hours": "Daily 8.00-19.00"
},
"link": {"Homepage":"http://thebreadandbean.co.uk"}
},
{
"city": "Montréal",
"country": "CA",
"name": "Baobab Cafe",
"address": "4800 Wellington",
"coordinates": ["45.457249","-73.567501"],
"description": {
"internet": "Free wifi, good speed, just ask for the password",
"power_outlets": "There are a few",
"seating": "Many tables, seats and couches",
"service": "Very friendly",
"provision": "Coffee, tea, juices, soft drinks, cake, sandwiches, etc",
"hours": "All days 7.00-23.00"
},
"link": {"Homepage":"https://www.facebook.com/pages/Le-Baobab-caf%C3%A9/165900173449505"}
},
{
"city": "St. John's",
"country": "CA",
"name": "Hava Java",
"address": "258 Water St.",
"coordinates": ["47.563712","-52.707507"],
"description": {
"internet": "Free wifi - ask for the password",
"power_outlets": "Plenty",
"seating": "Benches and seats at tables",
"service": "Very friendly",
"provision": "Coffee, tea, other drinks, sandwiches, soups",
"hours": "All days 7.30-18.00"
},
"link": {"Facebook":"https://www.facebook.com/havajava", "Twitter":"https://twitter.com/havajavanl"}
},
{
"city": "Montréal",
"country": "CA",
"name": "Station W",
"address": "3852 Rue Wellington",
"coordinates": ["45.46543, -73.56677"],
"description": {
"internet": "Free wifi, good speed, just ask for the password",
"power_outlets": "There are a few",
"seating": "Many tables, and a large one",
"service": "Very friendly",
"provision": "Coffee, tea, juices, soft drinks, sandwiches, etc",
"hours": "Mon-Fri 7.00-21.00, Sat-Sun 8.00-17.00"
},
"link": {"Homepage":"http://www.station-w.com/"}
},
{
"city": "Prague",
"country": "CZ",
"name": "Pitomá kavárna",
"address": "Preslova 3, 130 00",
"coordinates": ["50.0727490, 14.4067160"],
"description": {
"internet": "Free wifi, password (1111111111)",
"power_outlets": "I didn't find one in my section",
"seating": "Normal tables in two sections",
"service": "Great",
"provision": "Coffee, and food",
"hours": "Mon-Fri 8.30-23.00, Sat-Sun 11.00-23.00"
},
"link": {"Homepage":"http://www.pitoma-kavarna.cz/"}
},
{
"city": "Prague",
"country": "CZ",
"name": "Čajovna Daruma",
"address": "Trojanova 4, 128 00",
"coordinates": ["50.0740050, 14.4145020"],
"description": {
"internet": "Free wifi (you may have DNS problems) (password: 2013Daruma)",
"power_outlets": "There are some, but you need to find them",
"seating": "Many small sections",
"service": "Great",
"provision": "Tea",
"hours": "Mon-Fri 11.00-22.00, Sat-Sun 14.00-22.00"
}
},
{
"city": "Prague",
"country": "CZ",
"name": "Le Petit Cafe",
"address": "Myslíkova 25",
"coordinates": ["50.0780420, 14.4181280"],
"description": {
"internet": "Free wifi (no password)",
"seating": "Small coffee shop",
"service": "Great",
"provision": "Coffee, tea, juice, snacks..."
}
},
{
"city": "Prague",
"country": "CZ",
"name": "Cafe Parisienne",
"address": "Králodvorská 11",
"coordinates": ["50.0881530, 14.4268580"],
"description": {
"internet": "Free wifi (password: parisienne)",
"power_outlets": "I didn't find any",
"seating": "Small coffee shop",
"service": "Great",
"provision": "Coffee, tea, juice, snacks...",
"hours": "Mon-Fri 10.00-22.00, Sat 11.00-22.00"
}
},
{
"city": "Paris",
"country": "FR",
"name": "Les Pères Populaires",
"address": "46 rue de Buzenval",
"coordinates": ["48.8511740, 2.4017840"],
"description": {
"internet": "Free wifi (password: 1avertissementhadopi)",
"power_outlets": "You can find about 5-10",
"seating": "Many places, good for group",
"service": "ok",
"provision": "Coffee, tea, juice, food...",
"hours": "Mon-Fri 09.00-2.00, Sat-Sun 10.00-2.00"
}
},
{
"city": "Prague",
"country": "CZ",
"name": "Nostalgická myš",
"address": "Ve Smečkách 592/22",
"coordinates": ["50.0789430, 14.4271520"],
"description": {
"internet": "Free wifi",
"power_outlets": "You can find them easily",
"seating": "Many places",
"service": "Great",
"provision": "Coffee, tea, juice, snacks...",
"hours": "Mon-Thu 08.00-20.00, Fri 08.00-17.00, Sat-Sun 08.00-20.00"
},
"link": {"Homepage":"http://www.nostalgickamys.cz"}
},
{
"city": "Paris",
"country": "FR",
"name": "L'Arobase",
"address": "52 rue du Chevaleret",
"coordinates": ["48.8286740, 2.3763820"],
"description": {
"internet": "Free wifi (password: chocolat)",
"power_outlets": "Did not check - please update accordingly",
"seating": "Enough seat, does not seems to crowded",
"service": "Good",
"provision": "Coffee, tea, juice, snacks...",
"hours": "Mon-Fri 08.30-21.00, Sat 12.00-19.00"
},
"link": {"Homepage":"http://www.arobasecafe.com/"}
},
{
"city": "London",
"country": "UK",
"name": "Blighty Coffee",
"address": "35-37 Blackstock Road",
"coordinates": ["51.5639220, -0.1029860"],
"description": {
"internet": "Free wifi (blighty-coffee: chrisBlighty / blighty-workspace: workspace)",
"power_outlets": "Not that many, but you can find some",
"seating": "Enough seat on more than one level, and a garden",
"service": "Good",
"provision": "Coffee, tea, juice, pastries...",
"hours": "Mon-Fri 07.30-19.00, Sat 08.30-17.00"
},
"link": {"Homepage":"http://www.blightycoffee.co.uk/"}
},
{
"city": "Saint-Petersburg",
"country": "RU",
"name": "Art. Lebedev Studio's Cafe",
"address": "ul. Zhukovskogo 4",
"coordinates": ["59.936612, 30.350246"],
"description": {
"internet": "Open wifi, stable connection",
"power_outlets": "At some tables, you can ask to be seated near one",
"seating": "Comfortable, wooden chairs with pillows or sofas near windows",
"service": "Good",
"provision": "One of the best coffees in town, store-made pastries, good food, somewhat expensive",
"hours": "Mon-Sun 09.00-23.00"
},
"link": {"Homepage":"http://zhukovskogo.artlebedev.com/"}
},
{
"city": "Brussels",
"country": "BE",
"name": "Karsmakers",
"address": "20 Rue de Trèves - 1050 Ixelles",
"coordinates": ["50.838303, 4.372662"],
"description": {
"internet": "Wifi, connection sometimes slow but ok. No working from there between 12:00 and 14:30",
"power_outlets": "Near some tables, may be already used by someone",
"seating": "Comfortable, various possibilities: sofas, normal tables with chairs, high tables with chairs. Natural light. Nice spaces, very nice terrace.",
"service": "Nice, self-service",
"provision": "Great coffee, store-made pastries, very nice cakes, affordable",
"hours": "Mon-Fri 07.00-18.00"
},
"link": {"Homepage":"http://www.karsmakers.be/"}
},
{
"city": "Paris",
"country": "FR",
"name": "L'Autre Café",
"address": "62 rue Jean-Pierre Timbaud, 75011",
"coordinates": ["48.8667010, 2.3740770"],
"description": {
"internet": "Free Wifi",
"power_outlets": "Did not look for them, but don't think they have many",
"seating": "Many seats, but keep in mind it's a café, but also a restaurant",
"service": "Good",
"provision": "Coffee, drinks, and food",
"hours": "Mon-Sun 08.00-2.00"
},
"link": {"Homepage":"http://www.lautrecafe.com/"}
},
{
"city": "Paris",
"country": "FR",
"name": "Onze Bar",
"address": "83 rue Jean Pierre Timbaud",
"coordinates": ["48.8682340, 2.3780170"],
"description": {
"internet": "Free Wifi",
"power_outlets": "Did not look for them, but don't think they have many",
"seating": "Not too big, but they also have a small terrace.",
"service": "Good",
"provision": "Coffee, beer... (it's more a bar than a coffee shop)",
"hours": "Mon-Sun 09.00-2.00"
},
"link": {"Homepage":"http://www.onzebar.com/"}
},
{
"city": "London",
"country": "UK",
"name": "Timberyard",
"address": "7 Upper St Martin's Lane",
"coordinates": ["51.5126660, -0.1272000"],
"description": {
"internet": "Free Wifi",
"power_outlets": "Many outlets, it's a computer friendly coffee shop",
"seating": "Many, the coffee shop is on two floors",
"service": "Friendly (order and take a seat)",
"provision": "Coffee, tea, sandwiches, muffins...",
"hours": "Mon-Fri 08.00-20.00, Sat 10.00-20.00, Sun 10.00-18.00"
},
"link": {"Homepage":"http://www.timberyardlondon.com/"}
},
{
"city": "London",
"country": "UK",
"name": "Cafe Vintage",
"address": "88 Mountgrove Rd, London N5 2LT, United Kingdom",
"coordinates": ["51.5610906, -0.0972411"],
"description": {
"internet": "Free Wifi",
"power_outlets": "Outlets in the corner seats and on the above level",
"seating": "Various seats, upstairs are better for working",
"service": "Absolutely lovely people and they know their vintage",
"provision": "Coffee, tea, sandwiches, muffins, salads, eggs, panini, jacket potatoes, cakes…",
"hours": "Mon-Fri 08.00-17.00, Sat 10.00-17.00, Sun 10.00-17.00"
},
"link": {"Homepage":"https://twitter.com/cafevintage"}
},
{
"city": "London",
"country": "UK",
"name": "Fink's salt and sweet",
"address": "70 Mountgrove Rd, London N5 2LT, United Kingdom",
"coordinates": ["51.5611881, -0.0963518"],
"description": {
"internet": "Free Wifi",
"power_outlets": "Outlets in the upper seats and on window panels",
"seating": "Various seats, upstairs are better for working",
"service": "Friendly, happy to help with wireless password",
"provision": "Coffees and teas, deli food (cheese platters, artisan food)",
"hours": "not defined yet"
},
"link": {"Homepage":"http://finks.co.uk/"}
},
{
"city": "Paris",
"country": "FR",
"name": "Au Chat Noir",
"address": "76 rue Jean-Pierre Timbaud",
"coordinates": ["48.8672750, 2.3759130"],
"description": {
"internet": "Free Wifi (password: 74chatnoir)",
"power_outlets": "I only found one",
"seating": "Good enough",
"service": "Good",
"provision": "Coffee, tea, and small snacks",
"hours": "N/A"
}
},
{
"city": "London",
"country": "UK",
"name": "The CoffeeWorks Project ",
"address": "96-98 Islington High Street",
"coordinates": ["51.5033630, -0.1276250"],
"description": {
"internet": "Free Wifi (the password is on the wall on the second floor)",
"power_outlets": "Outlets are available, but not everywhere",
"seating": "Various seats, upstairs are better for working, and there is a garden at the back",
"service": "Friendly",
"provision": "Coffees and teas with light snacks (muffins, breakfast)",
"hours": "Mon-Fri 07.30-18.00, Sat 09.00-18.00, Sun 10.00-16.00"
},
"link": {"Homepage":"http://coffeeworksproject.com/"}
},
{
"city": "San Francisco",
"country": "US",
"name": "Joy's Place",
"address": "611 Post St",
"coordinates": ["37.7877290, -122.4120040"],
"description": {
"internet": "Free Wifi (the password is john611post)",
"power_outlets": "Not many outlets, but there are some, look on the wall with the bench",
"seating": "Can seat about 30 people",
"service": "Friendly, but the music is a bit loud",
"provision": "Coffees, teas, panini, and desserts)",
"hours": "Mon-Sun 09.00-24.00"
},
"link": {"Homepage":"http://www.joysplacecafe.com/"}
},
{
"city": "San Francisco",
"country": "US",
"name": "Cafe Venue",
"address": "67 5th St",
"coordinates": ["37.7832470,-122.4067610"],
"description": {
"internet": "Free Wifi (the password is cafevenue1995)",
"power_outlets": "I did not find any",
"seating": "Many places but seems quite popular",
"service": "Good",
"provision": "Coffees, teas, salads, sandwiches...)",
"hours": "Mon-Fri 07.00-15.30, Sat 8.00-14.30"
},
"link": {"Homepage":"http://www.cafevenue.com/"}
},
{
"city": "San Francisco",
"country": "US",
"name": "Saint Frank Coffee",
"address": "2340 Polk St",
"coordinates": ["37.7984730, -122.4220260"],
"description": {
"internet": "Free Wifi",
"power_outlets": "I did not find any",
"seating": "Mostly stools",
"service": "Good",
"provision": "Coffees, teas, muffins, cookies...)",
"hours": "Mon-Sun 07.00-19.00"
},
"link": {"Homepage":"http://saintfrankcoffee.com/"}
},
{
"city": "London",
"country": "UK",
"name": "Full of Beans Play Cafe",
"address": "69 Highbury Park",
"coordinates": ["51.5560330, -0.0982900"],
"description": {
"internet": "Free Wifi",
"power_outlets": "There are some, but not at all tables",
"seating": "Enough seating for about 20 people",
"service": "Great, and there is a playing area if you have kids",
"provision": "Coffees, teas, muffins, cookies...)",
"hours": "Mon-Fri 08.30-18.00, Sat-Sun 9.30-18.00"
},
"link": {"Homepage":"http://www.fullofbeanscafe.co.uk/"}
},
{
"city": "Lviv",
"country": "Ukraine",
"name": "Kredens",
"address": "37 Prospekt Svobody",
"coordinates": ["49.84308", "24.026064"],
"description": {
"internet": "Free wifi, nice speed, password protected",
"power_outlets": "A lot of them",
"seating": "Both tables and comfy chairs. Has a couple of long tables.",
"service": "Order at the bar, very friendly",
"provision": "Coffee, tea, hot chocolate and many others coffee-based drinks",
"hours": "Mon-Sun 08.00-23.00"
},
"link": {"Homepage":"http://www.kredens.com.ua/en/", "Facebook":"https://www.facebook.com/kredenscoffee"}
},
{
"city": "Lviv",
"country": "Ukraine",
"name": "CoMMuna",
"address": "1 Halytska str.",
"coordinates": ["49.841015", "24.03112"],
"description": {