-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbs.paris.js
1605 lines (1605 loc) · 194 KB
/
bs.paris.js
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
const mock = {
"question": "What do I need to know for my first stay in Paris? I will be there from June to August. For example: laws, language tips, places, customs, travel hacks, food, night life, dress, people, etc.",
"relatedQuestions": [
"People of France, I'm an American traveling to Paris in two weeks. What customs are considered proper French etiquette, and what should I avoid doing?",
"What should I know before travelling to Paris?",
"What are must sees for a 4 day trip to Paris?",
"How do I avoid looking like a tourist in Paris?",
"What are some non-cliché things to do in Paris for a 2-3 day trip? What are some things to see that tourists often miss out on in Paris?",
"What are the best secret things to do in Paris? I'm in Paris for six months and would like to discover the hidden part of the town. Does anyone have any ideas?"
],
"answers": [
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">The other answers sum it all up, more or less; moreover</span></p> <ol class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: decimal; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Paris is a very safe city... but for the touristy parts (pickpockets) --beware especially in the RER from CDG!</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don't behave touristy! (big expensive-looking camera on you navel...know what I mean),</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Explore! You want to see Notre Dame and le Louvre and... le Canal Saint Martin, la Cité des Sciences, le musée Marmottan (see </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/What-are-the-most-interesting-museums-in-Paris\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">What are the most interesting museums in Paris?</a><span style=\"font-weight: normal; font-style: normal; background: none;\">), le Palais de la Découverte...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">You're staying for some time : become </span><span style=\"font-weight: normal; font-style: italic; background: none;\">un habitué</span><span style=\"font-weight: normal; font-style: normal; background: none;\"> (a regular) in one or two cafés near your place and elsewhere: very quickly people will recognize you; you'll know you're in when the waiter gives you 'the usual' before you have to order...then you can chat...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If you like your coffee the US way, order \"</span><span style=\"font-weight: normal; font-style: italic; background: none;\">un café américain</span><span style=\"font-weight: normal; font-style: normal; background: none;\">\" with a smile...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don't take answers as rebuttals; people are busy, or they don't speak English, whatever; try someone else...eventually you'll find someone who's glad to help;(see </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/Why-do-Parisians-have-a-reputation-and-or-a-stereotype-for-being-rude\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Why do Parisians have a reputation and/or a stereotype for being rude?</a><span style=\"font-weight: normal; font-style: normal; background: none;\">)</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Yes please do dress up a bit; jeans and a plain shirt will do ; and -yes- we don't give a damn your being a Dodgers fan...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Clothing: why not keep a part of your budget to buy a few things here, (beautiful hat shops if you like that)?</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">When you enter a shop or a bus or a train, do take off your backpack </span><span style=\"font-weight: normal; font-style: italic; background: none;\">please</span><span style=\"font-weight: normal; font-style: normal; background: none;\">! Not everyone does it but </span><span style=\"font-weight: normal; font-style: italic; background: none;\">please</span><span style=\"font-weight: normal; font-style: normal; background: none;\">...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If you're in for that kind of things you can find vintage clothes and shoes at reasonable prices (see </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/Where-are-the-best-flea-markets-in-Paris\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Where are the best flea markets in Paris?</a><span style=\"font-weight: normal; font-style: normal; background: none;\"> and </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/Where-are-best-vintage-stores-in-Paris\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Where are best vintage stores in Paris?</a><span style=\"font-weight: normal; font-style: normal; background: none;\">),</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Look for special interest shops: vintage movie posters, vinyls, photo cameras, comics, militaria... you'll find most anything!</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Paris is one of the first cities in the world for movie theaters per inhabitants! Many movies are in English w/ French subtitles (look for \"v.o.s.t.\"); why not have a Humphrey Bogart or Stanley Donen festival while you're here?</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If you stay in a flat, shop and cook if you can: look for the open air or closed markets and get yourself good vegetables, fruits, cheeses (</span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/What-are-the-best-places-to-buy-cheese-in-Paris\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">What are the best places to buy cheese in Paris?</a><span style=\"font-weight: normal; font-style: normal; background: none;\">), meat... try wineshops: ask the salesperson, they'll help you discover new things; you can find delicious wines at 5-10 euro...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Enjoy bread and pastries (see </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/What-are-the-best-boulangeries-and-patisseries-in-Paris-for-each-arrondissement\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">What are the best boulangeries and patisseries in Paris for each arrondissement?</a><span style=\"font-weight: normal; font-style: normal; background: none;\">),</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">You don't say why you're staying in Paris; will you have time to take a cooking (evening) class? Then you can bring back your (new?) talents to the States...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If you get to know people and are invited for dinner, bring a good bottle of wine and/or a bunch of flowers.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Find before leaving what you could bring from the States as possible presents over here...</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Also see here </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/What-things-do-I-need-to-know-if-I-am-visiting-Paris-for-the-first-time/answer/Yves-Granger\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Yves Granger's answer to What things do I need to know if I am visiting Paris for the first time?</a></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">And here </span><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/What-should-I-never-do-in-Paris/answer/Yves-Granger\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Yves Granger's answer to What should I never do in Paris?</a></li></ol><p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Enjoy!</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-1363708-200-tkrnaxvfrsbrgfdkdzyhofxkwicivbwe.jpeg",
"name": "Yves Granger",
"description": "lives in Paris",
"urlEncode": "Yves-Granger"
},
"date": "2016-05-27T16:00:00.000Z",
"propositions": [
{
"content": "but for the touristy parts (pickpockets) --beware especially in the RER from CDG!",
"concept": "tourists",
"content_typofree": "but for the touristy parts pickpockets beware especially in the re from cd",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "Don't behave touristy",
"concept": "tourists",
"content_typofree": "don't behave touristy",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "You want to see Notre Dame and le Louvre and... le Canal Saint Martin, la Cité des Sciences, le musée Marmottan (see What are the most interesting museums in Paris?), le Palais de la Découverte...",
"concept": "paris",
"content_typofree": "you want to see not re dame and be louvre and be canal saint martin la city de sciences be muse marmot an see what are the most interesting museums in paris be palais de la do converter",
"subconcept": "museums",
"concept_original": "paris"
},
{
"content": "become un habitué (a regular) in one or two cafés near your place and elsewhere",
"concept": "bistros",
"content_typofree": "become in habitat a regular in one or two cafes near your place and elsewhere",
"subconcept": "cafes",
"concept_original": "bistros"
},
{
"content": "If you like your coffee the US way, order \"un café américain\" with a smile...",
"concept": "bistros",
"content_typofree": "if you like your coffee the us way order in cafe american with a smile",
"subconcept": "cafes",
"concept_original": "bistros"
},
{
"content": "Don't take answers as rebuttals;",
"concept": "croissants",
"content_typofree": "don't take answers as rebuttals",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "Yes please do dress up a bit;",
"concept": "paris",
"content_typofree": "yes please do dress up a bit",
"subconcept": "parisians",
"concept_original": "paris"
},
{
"content": "When you enter a shop or a bus or a train, do take off your backpack please!",
"concept": "tourists",
"content_typofree": "when you enter a shop or a bus or a train do take off your backpack please",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "why not keep a part of your budget to buy a few things here, (beautiful hat shops if you like that)?",
"concept": "bistros",
"content_typofree": "why not keep a part of your budget to buy a few things here beautiful hat shops if you like that",
"subconcept": "shops",
"concept_original": "bistros"
},
{
"content": "If you're in for that kind of things you can find vintage clothes and shoes at reasonable prices",
"concept": "clothes",
"content_typofree": "if you re in for that kind of things you can find vintage clothes and shoes at reasonable prices",
"subconcept": "shoes",
"concept_original": "others"
},
{
"content": "Look for special interest shops",
"concept": "bistros",
"content_typofree": "look for special interest shops",
"subconcept": "shops",
"concept_original": "bistros"
},
{
"content": "why not have a Humphrey Bogart or Stanley Donen festival while you're here?",
"concept": "paris",
"content_typofree": "why not have a humphrey bogart or stanley done festival while you re here",
"subconcept": "parisians",
"concept_original": "paris"
},
{
"content": "If you stay in a flat, shop and cook if you can",
"concept": "bistros",
"content_typofree": "if you stay in a flat shop and cook if you can",
"subconcept": "shops",
"concept_original": "bistros"
},
{
"content": "Enjoy bread and pastries",
"concept": "croissants",
"content_typofree": "enjoy bread and pastries",
"subconcept": "pastries",
"concept_original": "croissants"
},
{
"content": "will you have time to take a cooking (evening) class?",
"concept": "cuisine",
"content_typofree": "will you have time to take a cooking evening class",
"subconcept": "waiter",
"concept_original": "french"
},
{
"content": "If you get to know people and are invited for dinner, bring a good bottle of wine and/or a bunch of flowers.",
"concept": "clothes",
"content_typofree": "if you get to know people and are invited for dinner bring a good bottle of wine and or a bunch of flowers",
"subconcept": "wines",
"concept_original": "wine"
},
{
"content": "Find before leaving what you could bring from the States as possible presents over here...",
"concept": "tourists",
"content_typofree": "find before leaving what you could bring from the states as possible presents over here",
"subconcept": "expatriates",
"concept_original": "others"
}
],
"collapsed": "false",
"similarAnswers": [
6,
12,
3,
8,
9,
13,
14,
15,
16,
19
],
"statisticsData": {
"views": 32100,
"upvotes": 185
}
},
{
"html": "<ol class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: decimal; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do not best-friend-forever the first person you meet after a 2 minute conversation.<br></span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do not find everything so amazing and cool. This and the previous remark really have been recurrent regarding Americans abroad. Very enthusiastic without judging first the tone of the group and sometimes flaking out.<br></span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do not automatically regroup with fellow expatriates, it is tempting but really, what's the point?<br></span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do have croissant or pain au chocolat Sunday morning. No question, it's mandatory. <br></span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do \"waste\" some time on the terasse of a random cafe, alone, possibly with a book, and look at that random passerby</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do enjoy but really, go back to the previous point and take the time to breathe and explore, not just running everywhere</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do speak french if you want to but please do not say 1 word out of context and expect people to understand. Rather, construct full sentences, even if bad ones, and don't be afraid to repeat, especially if it is the first sentence in a conversation.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">revise a bit your history book, that applies to every country one visits but it's always safe to study a bit how two countries, the one you come from and the one you are exploring, are intimately connected and how.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">do not get offended when people are sarcastic or ironic, yes even the waiter who expects his tip. It is a way to tease each other, sometimes it is harsh but it is part of the culture to judge each other boundaries and wit. See it as an opportunity rather than a threat really.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">since you will be there during the Summer, if you dare, try the Velib. It's damn cheap and convenient if only you are able to slalom between buses, trucks and cars!</span></li></ol>",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-1074367-200-osQbovi9Drkltq02WySjmRSAlO9UwVeN.jpeg",
"name": "Fabien Benetou",
"description": "I sweat to make software creative.",
"urlEncode": "Fabien-Benetou"
},
"date": "2012-05-01T16:00:00.000Z",
"propositions": [
{
"content": "do not best-friend-forever the first person you meet after a 2 minute conversation.",
"concept": "croissants",
"content_typofree": "do not best friend forever the first person you meet after a 2 minute conversation",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "do not find everything so amazing and cool.",
"concept": "others",
"content_typofree": "do not find everything so amazing and cool",
"subconcept": "good",
"concept_original": "wine"
},
{
"content": "do have croissant or pain au chocolat Sunday morning.",
"concept": "croissants",
"content_typofree": "do have croissant or pain a chocolate sunday morning",
"subconcept": "pastries",
"concept_original": "croissants"
},
{
"content": "do \"waste\" some time on the terasse of a random cafe, alone, possibly with a book, and look at that random passerby",
"concept": "bistros",
"content_typofree": "do waste some time on the erase of a random cafe alone possibly with a book and look at that random passerby",
"subconcept": "cafes",
"concept_original": "bistros"
},
{
"content": "do speak french if you want to but please do not say 1 word out of context and expect people to understand.",
"concept": "french",
"content_typofree": "do speak french if you want to but please do not say 1 word out of context and expect people to understand",
"subconcept": "parisians",
"concept_original": "french"
},
{
"content": "revise a bit your history book",
"concept": "french",
"content_typofree": "revise a bit your history book",
"subconcept": "history",
"concept_original": "french"
},
{
"content": "do not automatically regroup with fellow expatriates",
"concept": "tourists",
"content_typofree": "do not automatically regroup with fellow expatriates",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "do not get offended when people are sarcastic or ironic, yes even the waiter who expects his tip.",
"concept": "cuisine",
"content_typofree": "do not get offended when people are sarcastic or ironic yes even the waiter who expects his tip",
"subconcept": "waiter",
"concept_original": "french"
},
{
"content": "try the Velib.",
"concept": "others",
"content_typofree": "try the valid",
"subconcept": "valid",
"concept_original": "wine"
}
],
"collapsed": "false",
"similarAnswers": [],
"statisticsData": {
"views": 3100,
"upvotes": 32
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">From an American who has been living in Paris for the last year:</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Number One Rule - Anytime you go to a shop, restaurant or other establishment, the first thing you do/say is, “Bon jour, madame (or monsieur).” This is a very strict protocol here in France.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Rule Two - Speak softly. As an American, I have been embarrassed on the Metro by hearing how loud and obnoxious other Americans can sound. French passengers, who speak much more quietly, are put off by this conduct.</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-116695972-200-zfujypugqmutidfhlkdyjwyxestmijyz.jpeg",
"name": "Charles Schwartz",
"description": "Retired attorney",
"urlEncode": "Charles-Schwartz-5"
},
"date": "2016-05-30T16:00:00.000Z",
"propositions": [
{
"content": "Anytime you go to a shop, restaurant or other establishment, the first thing you do/say is, “Bon jour, madame (or monsieur).”",
"concept": "croissants",
"content_typofree": "anytime you go to a shop restaurant or other establishment the first thing you do say is bon jour madame or monsieur",
"subconcept": "jour",
"concept_original": "french"
},
{
"content": "Speak softly.",
"concept": "french",
"content_typofree": "speak softly",
"subconcept": "parisians",
"concept_original": "french"
}
],
"collapsed": "true",
"statisticsData": {
"views": 11600,
"upvotes": 32
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Do:</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"></span></p> <ul class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: disc; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Always say \"bon jour\" (or \"bon soir\") and au revoir when entering and exiting a retail establishment (restaurants, stores, etc.) (respectively) Americans typically don't do this, but it's considered a bit rude in Paris. </span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Make at least a token effort to speak French. Even if you suck at it (as I do.)</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Pack comfortable walking shoes -- and USE THEM. Walking and wandering is the best thing to do in Paris. Even natives do it all the time.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Stop in plenty of bakeries to enjoy the brioches, croissants, and pastries. Do this often. I don't care if you're on a no-carb diet, screw the diet while you're in Paris. </span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If you plan to visit any museums at all (and why wouldn't you??) </span><span style=\"font-weight: bold; font-style: normal; background: none;\">definitely</span><span style=\"font-weight: normal; font-style: normal; background: none;\"> plan ahead -- get the Paris Museum Pass beforehand to avoid the long, long ticket lines at the actual museum. There are a number of places you can do this, or (I believe) you can go online.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Spend at least a few hours just sitting outside at a cafe, sipping coffee, nibbling on a pastry and watching the world go by.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Keep in mind that Paris is a major, world city. The same safety precautions you need to take in New York City or Chicago or London or Shanghai or Madrid, you also need to take in Paris: be aware of your surroundings, keep your wallet in your front pocket, be on guard when a stranger is within arm's reach, etc. The same manners are also required: don't just stop in the middle of the sidewalk and expect people not to shove you or curse at you, don't meander around, don't walk in a large group that takes up the entire sidewalk, etc.</span></li></ul><p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"></span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Don't:</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"></span></p> <ul class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: disc; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Refer to a waiter as \"Garcon.\" (He is simply \"Monsieur,\" and if you must get his attention, acceptable phrases to use are \"S'il vous plait\" or \"Excusez-moi.\")</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Wait for the waiter to bring you the check. Lingering after the meal is much more acceptable and common in Paris than it is in the U.S., so if you want the check, you must ask for it.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Suggest to a French waiter that \"all wines are the same.\" (I heard this done once.) The poor waiter nearly burst a blood vessel in restraining himself from punching them in the nose.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Insult people or establishments in English, assuming the locals don't understand you. They probably do.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Wear a baseball cap or sweats, unless you are at a gym or playing a sport. (Not just in Paris, but EVER.)</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Wear a fannie pack or old-person jeans (mom jeans, etc.), EVER,</span></li></ul>",
"author": {
"avatar": "https://qsf.fs.quoracdn.net/-4-images.new_grid.profile_default.png-26-688c79556f251aa0.png",
"name": "Kent Fung",
"description": "spends far too much time thinking about food.",
"urlEncode": "Kent-Fung"
},
"date": "2012-04-30T16:00:00.000Z",
"propositions": [
{
"content": "Always say \"bon jour\" (or \"bon soir\") and au revoir when entering and exiting a retail establishment (restaurants, stores, etc.)",
"concept": "croissants",
"content_typofree": "always say bon jour or bon soil and a renoir when entering and exiting a retail establishment restaurants stores etc",
"subconcept": "jour",
"concept_original": "french"
},
{
"content": "Make at least a token effort to speak French.",
"concept": "french",
"content_typofree": "make at least a token effort to speak french",
"subconcept": "parisians",
"concept_original": "french"
},
{
"content": "Pack comfortable walking shoes -- and USE THEM.",
"concept": "clothes",
"content_typofree": "pack comfortable walking shoes and use them",
"subconcept": "shoes",
"concept_original": "others"
},
{
"content": "Stop in plenty of bakeries to enjoy the brioches, croissants, and pastries.",
"concept": "cuisine",
"content_typofree": "stop in plenty of bakeries to enjoy the brooches croissants and pastries",
"subconcept": "restaurants",
"concept_original": "french"
},
{
"content": "If you plan to visit any museums at all (and why wouldn't you??) definitely plan ahead",
"concept": "croissants",
"content_typofree": "if you plan to visit any museums at all and why wouldn't you definitely plan ahead",
"subconcept": "tour",
"concept_original": "croissants"
},
{
"content": "Spend at least a few hours just sitting outside at a cafe",
"concept": "bistros",
"content_typofree": "spend at least a few hours just sitting outside at a cafe",
"subconcept": "cafes",
"concept_original": "bistros"
},
{
"content": "The same safety precautions you need to take in New York City or Chicago or London or Shanghai or Madrid, you also need to take in Paris",
"concept": "tourists",
"content_typofree": "the same safety precautions you need to take in new york city or chicago or london or shanghai or madrid you also need to take in paris",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "Refer to a waiter as \"Garcon.\"",
"concept": "croissants",
"content_typofree": "refer to a waiter as garcon",
"subconcept": "jour",
"concept_original": "french"
},
{
"content": "Wait for the waiter to bring you the check.",
"concept": "cuisine",
"content_typofree": "wait for the waiter to bring you the check",
"subconcept": "waiter",
"concept_original": "french"
},
{
"content": "Suggest to a French waiter that \"all wines are the same.\"",
"concept": "clothes",
"content_typofree": "suggest to a french waiter that all wines are the same",
"subconcept": "wines",
"concept_original": "wine"
},
{
"content": "Insult people or establishments in English, assuming the locals don't understand you.",
"concept": "croissants",
"content_typofree": "insult people or establishments in english assuming the locals don't understand you",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "Wear a baseball cap or sweats, unless you are at a gym or playing a sport.",
"concept": "clothes",
"content_typofree": "wear a baseball cap or sweats unless you are at a gym or playing a sport",
"subconcept": "shoes",
"concept_original": "others"
},
{
"content": "Wear a fannie pack or old-person jeans (mom jeans, etc.)",
"concept": "clothes",
"content_typofree": "wear a fannie pack or old person jeans mon jeans etc",
"subconcept": "shoes",
"concept_original": "others"
}
],
"collapsed": "false",
"similarAnswers": [],
"statisticsData": {
"views": 3100,
"upvotes": 27
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">I am surprised that nobody has mentioned about Paris’s arrondissments (divisions).</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Paris is divided into 20 arrondissments. They’re arranged clockwise like a snail shell from the city center.</span></p> <div class=\"q-box qu-mx--n_medium\" style=\"box-sizing: border-box;\"><div class=\"CssComponent-sc-1oskqb9-0 QTextImage___StyledCssComponent-sc-1yi3aau-0 ilDNcJ\"><div class=\"q-box unzoomed\" style=\"box-sizing: border-box; margin-bottom: 1em;\"><img class=\"q-image qu-display--block\" src=\"https://qph.fs.quoracdn.net/main-qimg-bbc6663b2d8ec6841121f612ebd23fbe.webp\" style=\"box-sizing: border-box; max-width: 100%; margin-left: auto; margin-right: auto;\"></div></div></div> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">So, which is the best one to stay?</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">A lot depends on how many days you're going to spend in Paris, if its a short visit you should stay in 1–6 arrondissments so that you don't lose much of your precious time getting back and forth to the center.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">For a first timer 3rd & 4th (Le Marais) would be good.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">8th arrondissement of Paris, which has Avenue des Champs-Élysées is an outstanding area to live in Paris if you can afford. It has many high end hotels, restaurants and bars. This area never sleeps.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Montmartre, 18th arr. is beautiful, it is situated on a hill and provides great views, Many street painters and the famous sacre couer church can be seen here. It is relatively less expensive but has a bad reputation among tourists. I lived here once, experienced nothing bad but still it is best avoided. If you decide to book your accommodation here, do your homework properly. Never book here if you're on a short visit.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If I have confused you by suggesting too many areas you can always stay at 7 arrondissment, because….Eiffel tower.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Let’s talk about public transportation.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Paris’s public transport is awesome. With options like </span><span style=\"font-weight: bold; font-style: normal; background: none;\">metro, buses, trams and RER(rail),</span><span style=\"font-weight: normal; font-style: normal; background: none;\"> you will never have to walk or take taxis.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Metro </span><span style=\"font-weight: normal; font-style: normal; background: none;\">is the best and most useful among all. Metro stations are generally located 500 meters away from each other. There are </span><span style=\"font-weight: bold; font-style: normal; background: none;\">16 metro lines.</span></p> <div class=\"q-box qu-mx--n_medium\" style=\"box-sizing: border-box;\"><div class=\"CssComponent-sc-1oskqb9-0 QTextImage___StyledCssComponent-sc-1yi3aau-0 ilDNcJ\"><div class=\"q-box unzoomed\" style=\"box-sizing: border-box; margin-bottom: 1em;\"><img class=\"q-image qu-display--block\" src=\"https://qph.fs.quoracdn.net/main-qimg-5e8905b916278d762149e45ec1750988.webp\" style=\"box-sizing: border-box; max-width: 100%; margin-left: auto; margin-right: auto;\"></div></div></div> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">One metro ticket costs around 2 euros, and it can be used for 90 minutes after the first use.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If you want to save some money on transport you can buy </span><span style=\"font-weight: bold; font-style: normal; background: none;\">Paris transport pass</span><span style=\"font-weight: normal; font-style: normal; background: none;\">. It is best for tourists staying from 1 day to a week. With this pass you can take any mode of transportation, which includes Metro, Bus, Tram and RER.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">In zones 1 to 3</span><span style=\"font-weight: normal; font-style: normal; background: none;\"> : travels in Paris and the close suburbs</span></p> <div class=\"q-box qu-mx--n_medium\" style=\"box-sizing: border-box;\"><div class=\"CssComponent-sc-1oskqb9-0 QTextImage___StyledCssComponent-sc-1yi3aau-0 ilDNcJ\"><div class=\"q-box unzoomed\" style=\"box-sizing: border-box; margin-bottom: 1em;\"><img class=\"q-image qu-display--block\" src=\"https://qph.fs.quoracdn.net/main-qimg-a96ba3e3888dfcab76be20e73560e93a.webp\" style=\"box-sizing: border-box; max-width: 100%; margin-left: auto; margin-right: auto;\"></div></div></div> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">In zones 1 to 5</span><span style=\"font-weight: normal; font-style: normal; background: none;\"> : travels in Paris, the close suburbs & until Orly/CDG airports, Disneyland and Versailles</span></p> <div class=\"q-box qu-mx--n_medium\" style=\"box-sizing: border-box;\"><div class=\"CssComponent-sc-1oskqb9-0 QTextImage___StyledCssComponent-sc-1yi3aau-0 ilDNcJ\"><div class=\"q-box unzoomed\" style=\"box-sizing: border-box; margin-bottom: 1em;\"><img class=\"q-image qu-display--block\" src=\"https://qph.fs.quoracdn.net/main-qimg-f5a48790946a5da0d6dea916e907c197.webp\" style=\"box-sizing: border-box; max-width: 100%; margin-left: auto; margin-right: auto;\"></div></div></div> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">You can buy it at any metro station or here online, </span><span class=\"q-inline\" style=\"box-sizing: border-box; display: inline;\"><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"booking.parisinfo.com\" href=\"http://booking.parisinfo.com/il4-offer_i149-paris-visite-pass-pass-transport.aspx\" target=\"_blank\" rel=\"noopener nofollow\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Paris Visite Pass - Transport ticket - Paris Tourist Office</a><span class=\"q-inlineBlock qu-verticalAlign--text-bottom\" width=\"16px\" name=\"ExternalLink\" style=\"box-sizing: border-box; display: inline-block; width: 16px; height: 16px; flex-shrink: 0; line-height: 0; margin-left: 2px;\"><span class=\"CssComponent__CssInlineComponent-sc-1oskqb9-1 Icon___StyledCssInlineComponent-sc-11tmcw7-0 bxnMMA\"><svg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g id=\"external_link\" class=\"icon_svg-stroke\" stroke=\"#666\" stroke-width=\"1.5\" fill=\"none\" fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"17 13.5 17 19.5 5 19.5 5 7.5 11 7.5\"></polyline><path d=\"M14,4.5 L20,4.5 L20,10.5 M20,4.5 L11,13.5\"></path></g></svg></span></span></span><span style=\"font-weight: normal; font-style: normal; background: none;\"> it is called Paris visite pass.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">I am not sure but I have read that a monthly transport pass has been introduced recently, it costs 70 euros. </span><span class=\"q-inline\" style=\"box-sizing: border-box; display: inline;\"><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.telegraph.co.uk\" href=\"http://www.telegraph.co.uk/news/worldnews/europe/france/11288392/Paris-introduces-new-monthly-transport-pass-fixed-at-70.html\" target=\"_blank\" rel=\"noopener nofollow\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Paris introduces new monthly transport pass fixed at €70</a><span class=\"q-inlineBlock qu-verticalAlign--text-bottom\" width=\"16px\" name=\"ExternalLink\" style=\"box-sizing: border-box; display: inline-block; width: 16px; height: 16px; flex-shrink: 0; line-height: 0; margin-left: 2px;\"><span class=\"CssComponent__CssInlineComponent-sc-1oskqb9-1 Icon___StyledCssInlineComponent-sc-11tmcw7-0 bxnMMA\"><svg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g id=\"external_link\" class=\"icon_svg-stroke\" stroke=\"#666\" stroke-width=\"1.5\" fill=\"none\" fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"17 13.5 17 19.5 5 19.5 5 7.5 11 7.5\"></polyline><path d=\"M14,4.5 L20,4.5 L20,10.5 M20,4.5 L11,13.5\"></path></g></svg></span></span></span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Helpful french phrases</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">Hello-Bonjour, </span><span style=\"font-weight: normal; font-style: italic; background: none;\">overuse this word. Even if you don’t know french at all, start your conversation with this.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">Do you speak English? - Parlez-vous anglais?</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">Yes- Oui</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">No - Non</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">No thank you </span><span style=\"font-weight: bold; font-style: normal; background: none;\">- </span><span style=\"font-weight: bold; font-style: italic; background: none;\">Non, merci, </span><span style=\"font-weight: normal; font-style: italic; background: none;\">if someone is being over friendly or following you to sell something you can use this.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">I need help- j'ai besoin d'aide</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: italic; background: none;\">Thank you - Merci, </span><span style=\"font-weight: normal; font-style: italic; background: none;\">overuse this word, be thankful.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Food is delicious everywhere, eat at small restaurants and cafes. Don’t forget to visit a french bakery.</span></p> <ul class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: disc; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Beware of pickpockets in metros and tourist areas. It is better to keep wallet and mobile in front pocket rather rare. Be attentive.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Dress well, don’t wear tennis shoes.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Wear perfumes and deodorants.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">It is not necessary to tip the waiter.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don’t speak to strangers, strangers won’t speak to you.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don’t trust strangers.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Try to blend in the crowd, don’t stand out.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Try not to look like a tourist, unless you’re at Eiffel tower.</span></li></ul><div class=\"q-box qu-mx--n_medium\" style=\"box-sizing: border-box;\"><div class=\"CssComponent-sc-1oskqb9-0 QTextImage___StyledCssComponent-sc-1yi3aau-0 ilDNcJ\"><div class=\"q-box unzoomed\" style=\"box-sizing: border-box; margin-bottom: 1em;\"><img class=\"q-image qu-display--block\" src=\"https://qph.fs.quoracdn.net/main-qimg-9b80d7e49ae7fcf5100cacc426abf41e.webp\" style=\"box-sizing: border-box; max-width: 100%; margin-left: auto; margin-right: auto;\"></div></div></div> <ul class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: disc; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Sit for hours in the gardens around Eiffel tower and talk to your partner/friends, take a lot of photos, just relax and don’t rush from attraction to attraction.</span></li></ul>",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-99332380-200-tlylczmnkceacuwiakdcubbqwcejoeeb.jpeg",
"name": "Kaushal Barot",
"description": "Indian backpacker in Europe",
"urlEncode": "Kaushal-Barot-2"
},
"date": "2017-05-25T16:00:00.000Z",
"propositions": [
{
"content": "With options like metro, buses, trams and RER(rail), you will never have to walk or take taxis.",
"concept": "tourists",
"content_typofree": "with options like metro buses trams and re rail you will never have to walk or take taxis",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "For a first timer 3rd & 4th (Le Marais) would be good.",
"concept": "clothes",
"content_typofree": "for a first timer 3rd 4th be maris would be good",
"subconcept": "shoes",
"concept_original": "others"
},
{
"content": "Food is delicious everywhere, eat at small restaurants and cafes. Don’t forget to visit a french bakery.",
"concept": "cuisine",
"content_typofree": "food is delicious everywhere eat at small restaurants and cafes don't forget to visit a french bakery",
"subconcept": "restaurants",
"concept_original": "french"
},
{
"content": "Dress well, don’t wear tennis shoes.",
"concept": "tourists",
"content_typofree": "dress well don't wear tennis shoes",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "Beware of pickpockets in metros and tourist areas.",
"concept": "tourists",
"content_typofree": "beware of pickpockets in metros and tourist areas",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "Wear perfumes and deodorants.",
"concept": "clothes",
"content_typofree": "wear perfumes and deodorants",
"subconcept": "shoes",
"concept_original": "others"
},
{
"content": "It is not necessary to tip the waiter.",
"concept": "cuisine",
"content_typofree": "it is not necessary to tip the waiter",
"subconcept": "waiter",
"concept_original": "french"
},
{
"content": "Don’t speak to strangers, strangers won’t speak to you.",
"concept": "croissants",
"content_typofree": "don't speak to strangers strangers wont speak to you",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "Try to blend in the crowd, don’t stand out.",
"concept": "tourists",
"content_typofree": "try to blend in the crowd don't stand out",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "Try not to look like a tourist, unless you’re at Eiffel tower.",
"concept": "tourists",
"content_typofree": "try not to look like a tourist unless you re at eiffel tower",
"subconcept": "expatriates",
"concept_original": "others"
}
],
"collapsed": "false",
"statisticsData": {
"views": 3500,
"upvotes": 27
},
"similarAnswers": []
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"www.quora.com\" href=\"https://www.quora.com/profile/Emily-Anderson-1\" target=\"_top\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Emily Anderson</a><span style=\"font-weight: normal; font-style: normal; background: none;\"> and I went to Paris last year for our honeymoon. She'd been there before but it was my first trip abroad. We did a bit of research before we went and ended up having a great time. We even found the locals to be very friendly. Here's a list of tips in no particular order that we followed:<br></span></p> <ol class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: decimal; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Learn a few words and phrases. Be able to count to ten. Be able to say hello, and goodbye, please and thank you. </span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">NEVER walk up to someone and start talking non-french. Learn \"Non, je ne parle pas français. parlez vous anglais?\" People are happier when you put in a small effort. Basically, make sure you know the most important rules and taboos about going into shops, restaurants, etc.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">We tried to specifically dress non-American. No shorts, bright colors or high top white sneakers. I wore a lot of button downs and slacks with driver. There was no doubt that we were Americans, but we were hoping to not stand out as tourists from a distance.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Beware of pickpockets and other scam artists. We saw a bunch in public areas, such as near the Eiffel tower. They are pretty easy to avoid when you know what they are doing.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">We used </span><span class=\"q-inline\" style=\"box-sizing: border-box; display: inline;\"><a class=\"q-box Link___StyledBox-t2xg9c-0 roKEj QTextLink___StyledLink-sc-1ho51qd-0 gwAtHk qu-cursor--pointer qu-hover--textDecoration--underline\" title=\"airbnb.com\" href=\"http://airbnb.com/\" target=\"_blank\" rel=\"noopener nofollow\" style=\"box-sizing: border-box; border-radius: inherit; font-weight: normal; font-style: normal; background: none;\">Airbnb</a><span class=\"q-inlineBlock qu-verticalAlign--text-bottom\" width=\"16px\" name=\"ExternalLink\" style=\"box-sizing: border-box; display: inline-block; width: 16px; height: 16px; flex-shrink: 0; line-height: 0; margin-left: 2px;\"><span class=\"CssComponent__CssInlineComponent-sc-1oskqb9-1 Icon___StyledCssInlineComponent-sc-11tmcw7-0 bxnMMA\"><svg width=\"24px\" height=\"24px\" viewBox=\"0 0 24 24\"><g id=\"external_link\" class=\"icon_svg-stroke\" stroke=\"#666\" stroke-width=\"1.5\" fill=\"none\" fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"17 13.5 17 19.5 5 19.5 5 7.5 11 7.5\"></polyline><path d=\"M14,4.5 L20,4.5 L20,10.5 M20,4.5 L11,13.5\"></path></g></svg></span></span></span><span style=\"font-weight: normal; font-style: normal; background: none;\"> for booking a flat and loved it. It was private, clean large and close to the center of town. </span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Check Yelp, Foursquare etc before trying a new restaurant. It helps avoid tourist traps that will do shady things like overcharge.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">When entering shops or restaurants, always greet a clerk or shop keep immediately. It is rude if you don't, sort of in the same was as a person bumping into you not saying \"excuse me.\" </span></li></ol><p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"><br>We looked at the trip as we were going over to someone else's house (country) and it was up to us to know the rules, customs and etiquette. I think we did a good job as, without exception, we dealt with very nice, friendly people. I can't wait to do it again some day. :)</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-2071036-200-gaajvibtunxqycsywpdszhwaomcbsgcg.jpeg",
"name": "Andrew Stein",
"description": "skeptic by day, skeptic by night.",
"urlEncode": "Andrew-Stein-1"
},
"date": "2014-09-11T16:00:00.000Z",
"propositions": [
{
"content": "Learn a few words and phrases.",
"concept": "french",
"content_typofree": "learn a few words and phrases",
"subconcept": "history",
"concept_original": "french"
},
{
"content": "NEVER walk up to someone and start talking non-french.",
"concept": "french",
"content_typofree": "never walk up to someone and start talking non french",
"subconcept": "parisians",
"concept_original": "french"
},
{
"content": "We tried to specifically dress non-American.",
"concept": "paris",
"content_typofree": "we tried to specifically dress non american",
"subconcept": "parisians",
"concept_original": "paris"
},
{
"content": "Beware of pickpockets and other scam artists.",
"concept": "tourists",
"content_typofree": "beware of pickpockets and other scam artists",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "We used Airbnb for booking a flat and loved it.",
"concept": "tourists",
"content_typofree": "we used airbus for booking a flat and loved it",
"subconcept": "apartment",
"concept_original": "others"
},
{
"content": "Check Yelp, Foursquare etc before trying a new restaurant.",
"concept": "cuisine",
"content_typofree": "check yelp foursquare etc before trying a new restaurant",
"subconcept": "restaurant",
"concept_original": "french"
},
{
"content": "When entering shops or restaurants, always greet a clerk or shop keep immediately.",
"concept": "croissants",
"content_typofree": "when entering shops or restaurants always greet a clerk or shop keep immediately",
"subconcept": "jour",
"concept_original": "french"
}
],
"collapsed": "false",
"similarAnswers": [],
"statisticsData": {
"views": 4700,
"upvotes": 15
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">As a French who now lives in London, I'm going to confirm some of my compatriots suggestions :</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Do not BFF the first person you met too quickly.<br>French tend to be a bit colder than English-speakers but if you can pass the 1st stage of friendship, it usually mean something deeper.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Do have a croissant, a pain au chocolat (my favorite) and feel free to try as many bakery as possible (you have no idea how much I miss that...).</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Try to speak a bit of French, to show that you're willing to try.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- DO NOT insult people in English, even if many French are bad in English, they will understand those. However, feel free to do so if you don't mind your interlocutor to understand your insults :)</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- No tips necessary in restaurant, café...</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Careful with the pickpockets in the Métro (tube, underground, subway... you name it), especially around touristy places (on Line 1, also called Ligne 1, the yellow one).<br>The less touristy you look, the safer you are.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Take a day to walk from the cathedral of Notre-Dame to the Arc-de-Triomphe.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Go to La Défense (the business district) on a sunny Sunday.<br></span></p> <div class=\"q-box qu-mx--n_medium\" style=\"box-sizing: border-box;\"><div class=\"CssComponent-sc-1oskqb9-0 QTextImage___StyledCssComponent-sc-1yi3aau-0 ilDNcJ\"><div class=\"q-box unzoomed\" style=\"box-sizing: border-box; margin-bottom: 1em;\"><img class=\"q-image qu-display--block\" src=\"https://qph.fs.quoracdn.net/main-qimg-b37635f3360b2fd67f0ce3ddd01cedaf.webp\" style=\"box-sizing: border-box; max-width: 100%; margin-left: auto; margin-right: auto;\"></div></div></div> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"><br>- French people can be rude. As a French, even I, think we are (especially Parisians...).</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- \"Putain\" can mean an infinity of things depending on the situation and the tone. Even though it literally means \"whore\", it can be good or bad.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Paris is great but IT IS NOT the all French-experience!<br>Go to Reims (45min of TGV from Paris), Rennes, Lille, Lyon, Bordeaux, Strasbourg... all those cities are way more friendly than Paris on many aspects (and a lot smaller).</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">There are many other stuff that might be worth mentioned but nothing else come to my mind at the moment.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Have fun in Paris!</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-2324491-200-sfkiujhayacsjvqcwmmxkauqxktqeozw.jpeg",
"name": "Romain Deville",
"description": "Londoner, IT MSc Student, Geek",
"urlEncode": "Romain-Deville"
},
"date": "2012-05-08T16:00:00.000Z",
"propositions": [
{
"content": "Do not BFF the first person you met too quickly.",
"concept": "croissants",
"content_typofree": "do not off the first person you met too quickly",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "Do have a croissant, a pain au chocolat (my favorite) and feel free to try as many bakery as possible",
"concept": "croissants",
"content_typofree": "do have a croissant a pain a chocolate my favourite and feel free to try as many bakery as possible",
"subconcept": "pastries",
"concept_original": "croissants"
},
{
"content": "Try to speak a bit of French, to show that you're willing to try.",
"concept": "french",
"content_typofree": "try to speak a bit of french to show that you re willing to try",
"subconcept": "parisians",
"concept_original": "french"
},
{
"content": "DO NOT insult people in English",
"concept": "croissants",
"content_typofree": "do not insult people in english",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "No tips necessary in restaurant, café...",
"concept": "cuisine",
"content_typofree": "no tips necessary in restaurant cafe",
"subconcept": "waiter",
"concept_original": "french"
},
{
"content": "Careful with the pickpockets in the Métro",
"concept": "tourists",
"content_typofree": "careful with the pickpockets in the metro",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "Take a day to walk from the cathedral of Notre-Dame to the Arc-de-Triomphe.",
"concept": "croissants",
"content_typofree": "take a day to walk from the cathedral of not re dame to the arc de triumph",
"subconcept": "tour",
"concept_original": "croissants"
},
{
"content": "Go to La Défense (the business district) on a sunny Sunday.",
"concept": "tourists",
"content_typofree": "go to la defense the business district on a sunny sunday",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "French people can be rude.",
"concept": "paris",
"content_typofree": "french people can be rude",
"subconcept": "parisians",
"concept_original": "paris"
},
{
"content": "\"Putain\" can mean an infinity of things depending on the situation and the tone.",
"concept": "others",
"content_typofree": "put in can mean an infinity of things depending on the situation and the tone",
"subconcept": "good",
"concept_original": "wine"
},
{
"content": "Paris is great but IT IS NOT the all French-experience!",
"concept": "paris",
"content_typofree": "paris is great but it is not the all french experience",
"subconcept": "museums",
"concept_original": "paris"
}
],
"collapsed": "false",
"similarAnswers": [],
"statisticsData": {
"views": 1900,
"upvotes": 12
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Transportation :</span><span style=\"font-weight: normal; font-style: normal; background: none;\"> </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don't buy tickets, buy a NAVIGO pass, 70€ a month and you'll be able to use every public transportations as much as you want. A ticket which allows you to make one trip on one service (metro, bus, RER or tram) is 2.5€.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"><br></span><span style=\"font-weight: bold; font-style: normal; background: none;\">Buying stuff/services :</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Everything is closed on Sundays. you'll find some shops open until 12AM on Sundays but 90% of the things are closed (except fast food chains).</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">After 2AM nothing is open: no transportation, no fast food, no bars (maybe 10-15 bars which are open until 5AM, but that is not a lot).</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Small talk : </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">According to my American English teacher it is common to do smalltalk with strangers.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">We don't speak to strangers, ever.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If someone speaks to you, he will be after something, cigarettes, money, or just to rob you. It is a good idea to not speak to strangers.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">People :</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don't be offended if people are reluctant to talk with you, remember, you are a stranger, they're going to think that you want their money.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Second, the average Parisian is either : going to work (and as a rule, is running late) or going to see some friends, some of them probably waiting for him/her so he/she is trying to be as fast as possible.</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-49554640-200-edpeizgosnafwldmjyehwywvsvintwct.jpeg",
"name": "Bernard Thongvanh",
"description": "lives in Paris",
"urlEncode": "Bernard-Thongvanh"
},
"date": "2016-02-22T16:00:00.000Z",
"propositions": [
{
"content": "Don't buy tickets, buy a NAVIGO pass",
"concept": "croissants",
"content_typofree": "don't buy tickets buy a nav go pass",
"subconcept": "tour",
"concept_original": "croissants"
},
{
"content": "Everything is closed on Sundays.",
"concept": "croissants",
"content_typofree": "everything is closed on sundays",
"subconcept": "tour",
"concept_original": "croissants"
},
{
"content": "We don't speak to strangers, ever.",
"concept": "tourists",
"content_typofree": "we don't speak to strangers ever",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "Don't be offended if people are reluctant to talk with you",
"concept": "croissants",
"content_typofree": "don't be offended if people are reluctant to talk with you",
"subconcept": "conversation",
"concept_original": "french"
}
],
"collapsed": "true",
"statisticsData": {
"views": 3200,
"upvotes": 8
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Quick tip on the Louvre if you go: don't wait in the hours-long line to get in by the main entrance (glass pyramid). Way down at the end of the Musee there are two lion statues and an almost unknown entrance. No line, no waiting!</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-808816-200-ruerthnjalqjddnpcurvigsodgqnamic.jpeg",
"name": "Kate Hutchinson",
"description": "in love with Paris",
"urlEncode": "Kate-Hutchinson-1"
},
"date": "2012-06-24T16:00:00.000Z",
"propositions": [
{
"content": "Quick tip on the Louvre if you go: don't wait in the hours-long line to get in by the main entrance (glass pyramid).",
"concept": "croissants",
"content_typofree": "quick tip on the louvre if you go don't wait in the hours long line to get in by the main entrance glass pyramid",
"subconcept": "tour",
"concept_original": "croissants"
}
],
"collapsed": "true",
"statisticsData": {
"views": 937,
"upvotes": 7
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Well, I'm going to try to help you out a little bit (I'm French…).<br></span></p> <ol class=\"q-box\" style=\"box-sizing: border-box; direction: ltr; overflow-wrap: break-word; list-style: decimal; margin-bottom: 1em; margin-right: 2em;\"><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don't try to rush towards the very touristic places. As in many cities, what matters most is to feel the atmosphere of Paris. Nobody cares that you went to the Louvre or the Eiffel Tower.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Museum: go to the \"Centre Georges Pompidou\" and the \"Musée de l'Orangerie\" (not matter what Lonely Planet says). If you have time, the \"musée Dali\", \"le musée d'Orsay\", and \"La Pinacothèque\" (often very busy) are nice. I don't even think you should go to the Louvre (it's really boring). Just wander around, the area is very nice.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Current exhibitions: http://en.parisinfo.com/shows-exhibitions-paris/</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Language: if you can't speak French… you can't speak French, and it does not matter. Just know that most French people don't speak English properly, be patient.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">French people are rude.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Restaurant: the tip in France has NOTHING to do with the tip in the US or Canada. Why? Because the service is included in the price in France (and all prices include VAT). If you are happy with the service, then leave one or two euros. If that is a fancy restaurant, maybe 5 or 10, but not 15% of the bill! The fact that the tip is already included often explains why the waiter won't be as nice with as he/she would have been in the US.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Try not to ask American coffees and taste \"un café\" or \"un allongé\" (\"café\" with a more water, but still really different from a filter coffee you might get in the US). In case you would not feel well, there are more and more Starbucks in Paris :).</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0.7em;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Go to a bakery, it will be a new world for you.</span></li><li class=\"q-relative\" style=\"box-sizing: border-box; position: relative; margin-left: 2em; padding-bottom: 0px;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">The metro is well developed, but avoid it around 9/10 in the morning and 5/6 in the afternoon, it will be really crowded. Since you have two months you can do a lot walking, that will allow you to feel the atmosphere of the city.</span></li></ol><p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"><br>I could say a lot more but it is endless. Feel free to contact me if you have questions (I can give you some advice during your stay!).</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-545523-200-jnmhrwxdxfuhzbxbxmyzkvrfxedneepw.jpeg",
"name": "Emmanuel Nataf",
"description": "Founder at Reedsy. Street Photographer.",
"urlEncode": "Emmanuel-Nataf"
},
"date": "2012-05-08T16:00:00.000Z",
"propositions": [
{
"content": "Don't try to rush towards the very touristic places.",
"concept": "tourists",
"content_typofree": "don't try to rush towards the very touristic places",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "Museum: go to the \"Centre Georges Pompidou\" and the \"Musée de l'Orangerie\"",
"concept": "paris",
"content_typofree": "museum go to the centre georges pompidou and the muse de loran erie",
"subconcept": "museums",
"concept_original": "paris"
},
{
"content": "Current exhibitions: http://en.parisinfo.com/shows-exhibitions-paris/",
"concept": "paris",
"content_typofree": "current exhibitions happen paris info com shows exhibitions paris",
"subconcept": "museums",
"concept_original": "paris"
},
{
"content": "if you can't speak French… you can't speak French, and it does not matter.",
"concept": "french",
"content_typofree": "if you can't speak french you can't speak french and it does not matter",
"subconcept": "parisians",
"concept_original": "french"
},
{
"content": "French people are rude.",
"concept": "paris",
"content_typofree": "french people are rude",
"subconcept": "parisians",
"concept_original": "paris"
},
{
"content": "Because the service is included in the price in France (and all prices include VAT)",
"concept": "croissants",
"content_typofree": "because the service is included in the price in france and all prices include vat",
"subconcept": "tour",
"concept_original": "croissants"
},
{
"content": "Try not to ask American coffees and taste \"un café\" or \"un allongé\"",
"concept": "bistros",
"content_typofree": "try not to ask american coffees and taste in cafe or in a long",
"subconcept": "cafes",
"concept_original": "bistros"
},
{
"content": "Go to a bakery, it will be a new world for you.",
"concept": "cuisine",
"content_typofree": "go to a bakery it will be a new world for you",
"subconcept": "restaurants",
"concept_original": "french"
},
{
"content": "The metro is well developed, but avoid it around 9/10 in the morning and 5/6 in the afternoon, it will be really crowded.",
"concept": "tourists",
"content_typofree": "the metro is well developed but avoid it around 9 10 in the morning and 5 6 in the afternoon it will be really crowded",
"subconcept": "metro",
"concept_original": "croissants"
}
],
"collapsed": "false",
"similarAnswers": [],
"statisticsData": {
"views": 1100,
"upvotes": 6
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Don't be offended when people aren't friendly, it's just not their way to be openly friendly. It might seem rude, but it's mainly a cultural difference, mixed with weariness of tourists.<br> <br>Try to speak French if you can, don't assume everyone will speak English. Even a simple, </span><span style=\"font-weight: normal; font-style: italic; background: none;\">Bonjour, je ne parle pas tres bien le francais</span><span style=\"font-weight: normal; font-style: normal; background: none;\">, seems like an effort.<br> <br>Eat the bread. It's fantastic. Don't bother with most of the touristy restaurants. If they have a menu in English, run away. <br> <br>Go to Laduree and have high tea with macaroons. <br> <br>Don't order Coke. Wine is cheaper. Seriously. And the Coke is never cold.<br> <br>Bring sneakers and walk around as much of Paris as possible. If you're a runner, try to run in the parks, there will be other runners there (they don't run on the road as much). If you run at 7am, Paris is quiet, empty and beautiful.<br> <br>Dress up, or you will feel like a slob compared to French people. Do you have black clothes? Bring them, and a scarf. Don't wear a baseball cap, basketball shorts, or a hoodie.</span></p> ",
"author": {
"avatar": "https://qsf.fs.quoracdn.net/-4-images.new_grid.profile_default.png-26-688c79556f251aa0.png",
"name": "Kate Ta",
"description": "obsessed with coffee and beaches, could happily live in Barneys",
"urlEncode": "Kate-Ta"
},
"date": "2012-04-30T16:00:00.000Z",
"propositions": [
{
"content": "Don't be offended when people aren't friendly, it's just not their way to be openly friendly.",
"concept": "croissants",
"content_typofree": "don't be offended when people are not friendly its just not their way to be openly friendly",
"subconcept": "conversation",
"concept_original": "french"
},
{
"content": "Try to speak French if you can, don't assume everyone will speak English.",
"concept": "french",
"content_typofree": "try to speak french if you can don't assume everyone will speak english",
"subconcept": "parisians",
"concept_original": "french"
},
{
"content": "Eat the bread.",
"concept": "croissants",
"content_typofree": "eat the bread",
"subconcept": "pastries",
"concept_original": "croissants"
},
{
"content": "Go to Laduree and have high tea with macaroons.",
"concept": "croissants",
"content_typofree": "go to lauren and have high tea with macaroons",
"subconcept": "pastries",
"concept_original": "croissants"
},
{
"content": "Don't order Coke. Wine is cheaper.",
"concept": "clothes",
"content_typofree": "don't order coke wine is cheaper",
"subconcept": "wines",
"concept_original": "wine"
},
{
"content": "Bring sneakers and walk around as much of Paris as possible.",
"concept": "paris",
"content_typofree": "bring sneakers and walk around as much of paris as possible",
"subconcept": "museums",
"concept_original": "paris"
},
{
"content": "Dress up, or you will feel like a slob compared to French people.",
"concept": "paris",
"content_typofree": "dress up or you will feel like a slob compared to french people",
"subconcept": "parisians",
"concept_original": "paris"
}
],
"collapsed": "false",
"statisticsData": {
"views": 1200,
"upvotes": 6
},
"similarAnswers": []
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">By all means you MUST go (early in your stay, and probably often) to Shakespeare & Co., the largest (and funkiest) English language bookstore in continental Europe.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2011/12/14/1323896188976/Shakespeare-and-Company-b-006.jpg</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Although founder and proprietor George Whitman passed away earlier this year at the age of 98, the bookstore (now operated by George's daughter) remains the center of traveling Americans in Paris.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"></span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-304227-200-DqNMNqKzCh6gwQNzevNGtpyZrIwvqDPR.jpeg",
"name": "David S. Rose",
"description": "Million-miler Road Warrior",
"urlEncode": "David-S-Rose"
},
"date": "2012-04-29T16:00:00.000Z",
"propositions": [
{
"content": "By all means you MUST go (early in your stay, and probably often) to Shakespeare & Co.",
"concept": "croissants",
"content_typofree": "by all means you must go early in your stay and probably often to shakespeare co",
"subconcept": "tour",
"concept_original": "croissants"
}
],
"collapsed": "true",
"statisticsData": {
"views": 1000,
"upvotes": 6
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Safety</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Okay so it's really just common sense, nothing specific to Paris. As a French tourist, I actually had a few accidents of this kind in San Francisco, Athens.. so here are few simple tips taken from close observation: <br> <br>Keep your money and luggages close to you or your eyes. Remember that ziplocks can be unzipped. </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Be cautious of people who seem to be on the lookout, waiting to propose help to tourists. They are mostly certainly here for the money. Of course some are genuine people, who want to practise english, so don’t be rude, just cautious, say \"non merci\" with a smile in case of doubt. </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">If they are polite most people won't insist, while if they are fishers they will want to talk more and get closer, reach to you. It is probably better (and more effective!) to ask important questions to local shops and officials, people used to talk to tourists.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Thieves / scammers / pickpockets hot spots:</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\"> - Delivery machines / ATMs (never spotted one, but I know they do)<br> - in the metro when the signal is ringing<br> - in the metro escalators, trying to reach into bags: elevators make this operation easy (I spotted one </span><span style=\"font-weight: normal; font-style: italic; background: none;\">la main dans le sac</span><span style=\"font-weight: normal; font-style: normal; background: none;\">)<br> - when people leave their cellphone resting on the cafe table while chatting: one moment of distraction (eg. someone showing you a map over the table) and abracadabra<br> - in front of bars at night, where people are drunk (this time we busted one </span><span style=\"font-weight: normal; font-style: italic; background: none;\">sur le fait</span><span style=\"font-weight: normal; font-style: normal; background: none;\">)</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">I never saw myself a thieve who was acting 100% alone, they always had accomplices in backup, so be wary of that, too.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: bold; font-style: normal; background: none;\">Eating</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- use Yelp, Foursquare, internet guides..! :)</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- In case of doubt or no wifi, go where the locals go. It's probably because the place is nice, or famous, or cheap. Good chances the food is good, too.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- Avoid empty places. They are probably okay, but you are here to experience something special, not just sushis / pizza / fastfoods, right? </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- prices in standard restaurants (for instance, in bistrots) are between 9€/15€ for a simple lunch meal without dessert or appetizer, 20€/25€ for full course. And if you take the full package (French wine) it can easily climb to +50€.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- I've noticed that waiters are mostly rudes in the noisy, crowded Parisian terrace cafes, and much, much friendlier in the smaller places, those where you don't have to shout \"garçon!\" ten times to get heard. </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">In large Parisian cafes, waiters have to deal with many people at a time so they typically wait for you to call them, and don't have much time to chat (especially in english). Still, it can appears rude (especially when the waiter don't show up or don't respond to your signal :)<br>In small restaurants, they have less customers per waiter so they can take the time to explain the menu, can sometimes afford to chat a bit..</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- You can leave tip if you liked a place, it's always welcome. Personally I leave 1 or 2 euros from time to time, and check-in / leave a review (a good review is a nice tip for a business :)</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">- If you can afford it (it is about 2x to 3x more expensive than normal restaurants), you should try at least one upscale restaurant (gastronomique, or even </span><span style=\"font-weight: normal; font-style: italic; background: none;\">étoilé</span><span style=\"font-weight: normal; font-style: normal; background: none;\">), it can be an amazing experience. </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">Gastronomy and haute cuisine is really something fascinating I think in France (and in the world in general): basically, we have to eat to survive, in some kind of crude ritual. But humanity managed to upgrade this primitive constraint to something to be proud of, an art form, with experimentations and careful choices of processes, ingredients, flavors, shapes and colors.</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-928488-200-pntttfvysctcppurgipfzebwfmhwpzei.jpeg",
"name": "Julian Bilcke",
"description": "lives in Vincennes, France",
"urlEncode": "Julian-Bilcke"
},
"date": "2016-02-07T16:00:00.000Z",
"propositions": [
{
"content": "Keep your money and luggages close to you or your eyes.",
"concept": "tourists",
"content_typofree": "keep your money and luggage close to you or your eyes",
"subconcept": "expatriates",
"concept_original": "others"
},
{
"content": "Be cautious of people who seem to be on the lookout, waiting to propose help to tourists.",
"concept": "tourists",
"content_typofree": "be cautious of people who seem to be on the lookout waiting to propose help to tourists",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "use Yelp, Foursquare, internet guides..!",
"concept": "cuisine",
"content_typofree": "use yelp foursquare internet guides",
"subconcept": "restaurant",
"concept_original": "french"
},
{
"content": "In case of doubt or no wifi, go where the locals go.",
"concept": "tourists",
"content_typofree": "in case of doubt or no wifi go where the locals go",
"subconcept": "pickpockets",
"concept_original": "croissants"
},
{
"content": "Avoid empty places.",
"concept": "tourists",
"content_typofree": "avoid empty places",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "prices in standard restaurants (for instance, in bistrots) are between 9€/15€ for a simple lunch meal without dessert or appetizer, 20€/25€ for full course.",
"concept": "bistros",
"content_typofree": "prices in standard restaurants for instance in bistros are between 9 15 for a simple lunch meal without dessert or appetizer 20 25 for full course",
"subconcept": "lunch",
"concept_original": "bistros"
},
{
"content": "I've noticed that waiters are mostly rudes in the noisy, crowded Parisian terrace cafes,",
"concept": "bistros",
"content_typofree": "have noticed that waiters are mostly rules in the noisy crowded parisian terrace cafes",
"subconcept": "cafes",
"concept_original": "bistros"
},
{
"content": "You can leave tip if you liked a place, it's always welcome.",
"concept": "bistros",
"content_typofree": "you can leave tip if you liked a place its always welcome",
"subconcept": "shops",
"concept_original": "bistros"
},
{
"content": "If you can afford it (it is about 2x to 3x more expensive than normal restaurants), you should try at least one upscale restaurant (gastronomique, or even étoilé),",
"concept": "bistros",
"content_typofree": "if you can afford it it is about 2x to 3x more expensive than normal restaurants you should try at least one upscale restaurant gastronomy que or even toil",
"subconcept": "lunch",
"concept_original": "bistros"
},
{
"content": "Gastronomy and haute cuisine is really something fascinating I think in France (and in the world in general):",
"concept": "cuisine",
"content_typofree": "gastronomy and hate cuisine is really something fascinating i think in france and in the world in general",
"subconcept": "restaurants",
"concept_original": "french"
}
],
"collapsed": "true",
"statisticsData": {
"views": 1100,
"upvotes": 5
}
},
{
"html": "<p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">1. Consider an apartment versus a hotel. More space, probably a little less expensive, and better for longer stays.</span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">2. As someone already said, you want to be a 5-10 minute walk from a major metro station: Bastille, Charles de Gaulle, and Republic are good options. </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">3. Spend a day in the tourist areas right near the Seine, then avoid it at all costs. The food/drinks are overpriced and not even close to the quality of local places. (Edit: Except Al Dar, which has some of the best Lebanese food in Paris). </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 1em; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">4. Walk around / use the metro. The best times I had in Paris were due to walking around and stumbling/staggering into new places. </span></p> <p class=\"q-text qu-display--block\" style=\"box-sizing: border-box; margin-bottom: 0px; overflow-wrap: anywhere; word-break: break-word; direction: ltr; text-align: start;\"><span style=\"font-weight: normal; font-style: normal; background: none;\">5. Chez Louisette. Hysterical, fun, and good food.</span></p> ",
"author": {
"avatar": "https://qph.fs.quoracdn.net/main-thumb-4053600-200-y8pmhk3m0K3U76UvTV0v2vCyUOfca9EV.jpeg",
"name": "Damion Robinson",
"description": "Startup Attorney | startupattorney.co",
"urlEncode": "Damion-Robinson-1"
},
"date": "2012-04-30T16:00:00.000Z",
"propositions": [
{
"content": "Consider an apartment versus a hotel.",
"concept": "tourists",
"content_typofree": "consider an apartment versus a hotel",
"subconcept": "apartment",
"concept_original": "others"
},
{
"content": "As someone already said, you want to be a 5-10 minute walk from a major metro station:",
"concept": "tourists",
"content_typofree": "as someone already said you want to be a 5 10 minute walk from a major metro station",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "Spend a day in the tourist areas right near the Seine, then avoid it at all costs.",
"concept": "tourists",
"content_typofree": "spend a day in the tourist areas right near the seine then avoid it at all costs",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "Walk around / use the metro.",
"concept": "tourists",
"content_typofree": "walk around use the metro",
"subconcept": "metro",
"concept_original": "croissants"
},
{
"content": "Chez Louisette",
"concept": "croissants",
"content_typofree": "chez louise the",