-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHelpSeekingStackExchange.json
More file actions
15276 lines (15276 loc) · 602 KB
/
HelpSeekingStackExchange.json
File metadata and controls
15276 lines (15276 loc) · 602 KB
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
{
"Posts" : [{
"ViewCount" : "52",
"Labels" : {
"HS" : [
"DQ",
"SK",
"SK"
],
"CP" : ""
},
"Title" : "Is there any difference?",
"Score" : "-1",
"OwnerDisplayName" : "",
"OwnerUserId" : "111481",
"Body" : "Is there any fundamental difference in meaning here?\n\nI would understand perfectly if the woman had done something wrong and another woman were blaming her but this isn't the case.\nI would understand perfectly if the woman did something wrong and another woman were blaming her but this isn't the case. \n",
"ClosedDate" : "2015-05-02T02:47:03.430",
"Tags" : "<differences>",
"LastEditorDisplayName" : "",
"CommentCount" : "2",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242715",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T01:33:40.937",
"AcceptedAnswerId" : "",
"Sentences" : [
"Is there any fundamental difference in meaning here?",
"I would understand perfectly if the woman had done something wrong and another woman were blaming her but this isn't the case.",
"I would understand perfectly if the woman did something wrong and another woman were blaming her but this isn't the case. \n"
],
"CreationDate" : "2015-05-01T00:05:05.213"
}, {
"ViewCount" : "59",
"Labels" : {
"HS" : [
"SK",
"SK",
"DQ",
"SK",
"DQ",
"SK"
],
"CP" : ""
},
"Title" : "If A subtends B, can B also subtend A?",
"Score" : "3",
"OwnerDisplayName" : "",
"OwnerUserId" : "16723",
"Body" : "I wrote:\n\nThings farther away subtend smaller angles at the eye.\n\nWiktionary has this example of the usage of \"subtend:\"\n\nA 43\u00b0 angle subtends an arc about \u00be meter long on a circle with a radius of 1 meter.\n\nCan we say both that an angle subtends an arc and that the arc subtends the angle, or is my usage wrong?\nThe etymology is \"stretch under,\" and \"under\" doesn't seem to imply any such distinction in a general context like this, where our geometrical figure has no particular orientation with respect to the earth.\nAs a side note, are there examples of correct usage where A subtends B, and neither A nor B is an angle? As a trivial example, I suppose we could have a solid angle rather than a plane angle.",
"ClosedDate" : "",
"Tags" : "<usage><mathematics>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "2015-05-01T02:25:25.463",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242716",
"LastEditorUserId" : "16723",
"LastActivityDate" : "2015-05-01T16:22:54.123",
"AcceptedAnswerId" : "242820",
"Sentences" : [
"I wrote:\n\nThings farther away subtend smaller angles at the eye.",
"Wiktionary has this example of the usage of \"subtend:\"\n\nA 43\u00b0 angle subtends an arc about \u00be meter long on a circle with a radius of 1 meter.",
"Can we say both that an angle subtends an arc and that the arc subtends the angle, or is my usage wrong?",
"The etymology is \"stretch under,\" and \"under\" doesn't seem to imply any such distinction in a general context like this, where our geometrical figure has no particular orientation with respect to the earth.",
"As a side note, are there examples of correct usage where A subtends B, and neither A nor B is an angle?",
"As a trivial example, I suppose we could have a solid angle rather than a plane angle."
],
"CreationDate" : "2015-05-01T00:14:21.767"
}, {
"ViewCount" : "76",
"Labels" : {
"HS" : [
"SK",
"IS",
"IS"
],
"CP" : ""
},
"Title" : "What does \"all stand\" mean?",
"Score" : "1",
"OwnerDisplayName" : "",
"OwnerUserId" : "111513",
"Body" : "I have to know what \"all stand\" means for a final test tomorrow. I've looked all over Google, with not a trace of what it may mean. It's a term used by sailors, that's the extent of my knowledge.",
"ClosedDate" : "",
"Tags" : "<meaning>",
"LastEditorDisplayName" : "",
"CommentCount" : "1",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242725",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T01:41:27.753",
"AcceptedAnswerId" : "242732",
"Sentences" : [
"I have to know what \"all stand\" means for a final test tomorrow.",
"I've looked all over Google, with not a trace of what it may mean.",
"It's a term used by sailors, that's the extent of my knowledge."
],
"CreationDate" : "2015-05-01T01:19:10.260"
}, {
"ViewCount" : "127",
"Labels" : {
"HS" : [
"DQ",
"DQ",
"SK",
"IS"
],
"CP" : ""
},
"Title" : "UK English pronunciation of word \"language\" please?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119120",
"Body" : "What is the correct British English pronunciation of the word language please?\nThroughout my education in New Zealand and South Africa the first g was a soft sound as in bang? Here in Australia, on the ABC English pronunciation radio programme it is pronounced lanGuage with the first g being a hard emphasis.\nEager to learn.",
"ClosedDate" : "",
"Tags" : "<pronunciation><phonology><insular-english><antipodean-english>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "2015-05-01T06:01:45.677",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "1",
"ID" : "242726",
"LastEditorUserId" : "2085",
"LastActivityDate" : "2015-05-01T06:01:45.677",
"AcceptedAnswerId" : "",
"Sentences" : [
"What is the correct British English pronunciation of the word language please?",
"Throughout my education in New Zealand and South Africa the first g was a soft sound as in bang?",
"Here in Australia, on the ABC English pronunciation radio programme it is pronounced lanGuage with the first g being a hard emphasis.",
"Eager to learn."
],
"CreationDate" : "2015-05-01T01:19:11.740"
}, {
"ViewCount" : "80",
"Labels" : {
"HS" : [
"SK",
"SK",
"IS",
"SK",
"DQ"
],
"CP" : ""
},
"Title" : "What is the correct method to make a commonly repeated project name stand out?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119117",
"Body" : "I have a project titled \"Around the World.\"\nI refer to this project often in text. I have been instructed not to use quotes, but I am unsure of the best way to identify this phrase as the project name without quotes.\nsample:\n\nThe aim of the \u2018Around the World\u2019 exercise as detailed in section 4.2.2.\n\nShould I use italic, or hyphens?",
"ClosedDate" : "",
"Tags" : "<grammar><idioms>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "2015-05-01T02:23:17.943",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242727",
"LastEditorUserId" : "85526",
"LastActivityDate" : "2015-05-01T02:23:17.943",
"AcceptedAnswerId" : "242737",
"Sentences" : [
"I have a project titled \"Around the World.\"",
"I refer to this project often in text.",
"I have been instructed not to use quotes, but I am unsure of the best way to identify this phrase as the project name without quotes.",
"sample:\n\nThe aim of the \u2018Around the World\u2019 exercise as detailed in section 4.2.2.",
"Should I use italic, or hyphens?"
],
"CreationDate" : "2015-05-01T01:28:31.920"
}, {
"ViewCount" : "352",
"Labels" : {
"HS" : [
"SK",
"DQ",
"IS"
],
"CP" : ""
},
"Title" : "Alternatives to \"Such As\"",
"Score" : "1",
"OwnerDisplayName" : "",
"OwnerUserId" : "119121",
"Body" : "\nIt will be more difficult for Bobby to behave well if Peggy is aggressive, such as hitting him or teasing him.\n\nWhat is the right clause, expression or phrase to use instead of such as. That doesn't seem to sound right.",
"ClosedDate" : "2015-05-01T15:56:58.267",
"Tags" : "<expressions><phrase-requests><synonyms><clauses>",
"LastEditorDisplayName" : "",
"CommentCount" : "2",
"LastEditDate" : "2015-05-01T07:10:07.797",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "3",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242728",
"LastEditorUserId" : "115841",
"LastActivityDate" : "2015-05-01T07:10:07.797",
"AcceptedAnswerId" : "",
"Sentences" : [
"\nIt will be more difficult for Bobby to behave well if Peggy is aggressive, such as hitting him or teasing him.",
"What is the right clause, expression or phrase to use instead of such as.",
"That doesn't seem to sound right."
],
"CreationDate" : "2015-05-01T01:32:26.933"
}, {
"ViewCount" : "176",
"Labels" : {
"HS" : [
"IS",
"IS",
"IS",
"HR"
],
"CP" : ""
},
"Title" : "Is there any difference in meaning between \"ill-treat\" and \"mistreat\"?",
"Score" : "2",
"OwnerDisplayName" : "",
"OwnerUserId" : "119119",
"Body" : "I'm aware they are synonyms, but all the same I'm interested in knowing if one word is usually used more in one particular context, for example, or reserved for such a context. Or whether either one of the verbs connotes a stronger action than the other. Any information\/comments would be appreciated. Thanks.",
"ClosedDate" : "",
"Tags" : "<meaning><verbs>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242731",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-02T03:52:40.143",
"AcceptedAnswerId" : "",
"Sentences" : [
"I'm aware they are synonyms, but all the same I'm interested in knowing if one word is usually used more in one particular context, for example, or reserved for such a context.",
"Or whether either one of the verbs connotes a stronger action than the other.",
"Any information\/comments would be appreciated.",
"Thanks."
],
"CreationDate" : "2015-05-01T01:37:28.110"
}, {
"ViewCount" : "275",
"Labels" : {
"HS" : [
"SK",
"ER",
"DQ",
"DQ",
"IS",
"USI"
],
"CP" : ""
},
"Title" : "How to pronounce \"p\" in \"hospital\" and why?",
"Score" : "1",
"OwnerDisplayName" : "",
"OwnerUserId" : "81946",
"Body" : "I've pronounced \"p\" in \"hospital\" as \"p\" for many years and just noticed that some people pronounced it as \"b\". Please refer to http:\/\/dictionary.cambridge.org\/pronunciation\/british\/hospital and https:\/\/www.youtube.com\/watch?v=3LBBfQd9c24.\nWhich one is correct, \"p\" or \"b\"? Or maybe both of them are correct?\nAny comment is appreciated. ;-)",
"ClosedDate" : "",
"Tags" : "<pronunciation>",
"LastEditorDisplayName" : "",
"CommentCount" : "5",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242734",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-11T06:21:19.083",
"AcceptedAnswerId" : "",
"Sentences" : [
"I've pronounced \"p\" in \"hospital\" as \"p\" for many years and just noticed that some people pronounced it as \"b\".",
"Please refer to http:\/\/dictionary.cambridge.org\/pronunciation\/british\/hospital and https:\/\/www.youtube.com\/watch?v=3LBBfQd9c24.",
"Which one is correct, \"p\" or \"b\"?",
"Or maybe both of them are correct?",
"Any comment is appreciated.",
";-)"
],
"CreationDate" : "2015-05-01T01:51:58.847"
}, {
"ViewCount" : "562",
"Labels" : {
"HS" : [
"SK",
"DQ",
"DQ",
"DQ"
],
"CP" : ""
},
"Title" : "Mother love or mother's love?",
"Score" : "3",
"OwnerDisplayName" : "",
"OwnerUserId" : "118201",
"Body" : "I found the following lines from a book written on philosophy:\n\"The love of a mother for her child is neither Buddhist nor Christian: it is mother love.\"\nIs it possible to express \"mother love\" as it is? Shouldn't the word 'mother' be subjected to Possessive case and make it \"mother's\" love? Or is it just a proofing error? ",
"ClosedDate" : "",
"Tags" : "<possessive>",
"LastEditorDisplayName" : "",
"CommentCount" : "2",
"LastEditDate" : "2015-05-01T03:47:06.240",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "5",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242747",
"LastEditorUserId" : "118201",
"LastActivityDate" : "2015-05-01T07:24:23.880",
"AcceptedAnswerId" : "",
"Sentences" : [
"I found the following lines from a book written on philosophy:\n\"The love of a mother for her child is neither Buddhist nor Christian: it is mother love.\"",
"Is it possible to express \"mother love\" as it is?",
"Shouldn't the word 'mother' be subjected to Possessive case and make it \"mother's\" love?",
"Or is it just a proofing error? "
],
"CreationDate" : "2015-05-01T03:41:57.293"
}, {
"ViewCount" : "47",
"Labels" : {
"HS" : [
"SK",
"SK",
"DQ"
],
"CP" : ""
},
"Title" : "Using long \"e\" when pronouncing \"the\"",
"Score" : "1",
"OwnerDisplayName" : "",
"OwnerUserId" : "119131",
"Body" : "I have noticed a regrettable trend toward using the short \"e\" when pronouncing \"the\" before words beginning with a vowel: \"thuh Earth\"; thuh older one\". This used to be a cultural symbol (e.g., old movies) of illiteracy and still sounds so to me. Is there any specific recommendation on this other than taste and pleasing the ear?",
"ClosedDate" : "2015-05-02T02:48:25.253",
"Tags" : "<received-pronunciation>",
"LastEditorDisplayName" : "",
"CommentCount" : "1",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242751",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T04:36:26.677",
"AcceptedAnswerId" : "",
"Sentences" : [
"I have noticed a regrettable trend toward using the short \"e\" when pronouncing \"the\" before words beginning with a vowel: \"thuh Earth\"; thuh older one\".",
"This used to be a cultural symbol (e.g., old movies) of illiteracy and still sounds so to me.",
"Is there any specific recommendation on this other than taste and pleasing the ear?"
],
"CreationDate" : "2015-05-01T04:23:51.363"
}, {
"ViewCount" : "41",
"Labels" : {
"HS" : [
"DQ",
"DQ",
"DQ"
],
"CP" : ""
},
"Title" : "Is the statement ending with \"for\" considered proper?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "18206",
"Body" : "What would be a better and more formal way out of the two below:\nThe capability was not catered for.\n\nor \nWe did not cater for this capability.\n\nOr perhaps these are fully interchangeable?",
"ClosedDate" : "2015-05-01T05:23:33.067",
"Tags" : "<formality>",
"LastEditorDisplayName" : "",
"CommentCount" : "1",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242754",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T04:44:17.250",
"AcceptedAnswerId" : "242756",
"Sentences" : [
"What would be a better and more formal way out of the two below:\nThe capability was not catered for.",
"or \nWe did not cater for this capability.",
"Or perhaps these are fully interchangeable?"
],
"CreationDate" : "2015-05-01T04:33:22.453"
}, {
"ViewCount" : "1578",
"Labels" : {
"HS" : [
"DQ",
"SK",
"SK",
"SK",
"SK",
"IS"
],
"CP" : ""
},
"Title" : "Word for a person who talks without content",
"Score" : "6",
"OwnerDisplayName" : "",
"OwnerUserId" : "119133",
"Body" : "What is a word for a person who reiterates without adding any new content? (This person is not necessarily talkative per se.) Example of a conversation by such a person would be:\n\n\"You know if we do this xyz, it will be good. No one has done xyz so it is going to be great if we finish xyz, I don't think anyone has done this. By summer if this is done then we can send xyz, of course we have to do it before and it's gonna be great and we have to keep doing xyz unless someone will do it, but no one has done it yet, it is going to be great if we do xyz.\"\n\nIt is not overzeal; it is just my example which came out to be like this.",
"ClosedDate" : "2015-05-01T17:03:53.413",
"Tags" : "<single-word-requests>",
"LastEditorDisplayName" : "",
"CommentCount" : "10",
"LastEditDate" : "2015-05-01T13:36:35.930",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "13",
"ParentId" : "",
"FavoriteCount" : "1",
"ID" : "242760",
"LastEditorUserId" : "244",
"LastActivityDate" : "2015-05-18T09:30:04.170",
"AcceptedAnswerId" : "",
"Sentences" : [
"What is a word for a person who reiterates without adding any new content?",
"(This person is not necessarily talkative per se.)",
"Example of a conversation by such a person would be:\n\n\"You know if we do this xyz, it will be good.",
"No one has done xyz so it is going to be great if we finish xyz, I don't think anyone has done this.",
"By summer if this is done then we can send xyz, of course we have to do it before and it's gonna be great and we have to keep doing xyz unless someone will do it, but no one has done it yet, it is going to be great if we do xyz.\"",
"It is not overzeal; it is just my example which came out to be like this."
],
"CreationDate" : "2015-05-01T05:00:27.613"
}, {
"ViewCount" : "589",
"Labels" : {
"HS" : [
"IS",
"DQ",
"SK",
"DQ",
"IS",
"IS",
"HR"
],
"CP" : ""
},
"Title" : "What's the term for using the wrong word because it sounds the same?",
"Score" : "2",
"OwnerDisplayName" : "",
"OwnerUserId" : "119137",
"Body" : "I was reading about various terms for incorrect words, but they didn't seem to fit. I saw a post where someone said \"what do you like to do when you're board?\". That kind of thing. Also, would that be considered a mistake in grammar? I didn't think so, but my friend insists it is.\nI'm not sure if there even is a word for that kind of mistake, but was just curious about it. Thanks!",
"ClosedDate" : "",
"Tags" : "<word-usage>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "1",
"ID" : "242766",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T07:25:27.507",
"AcceptedAnswerId" : "",
"Sentences" : [
"I was reading about various terms for incorrect words, but they didn't seem to fit.",
"I saw a post where someone said \"what do you like to do when you're board?\".",
"That kind of thing.",
"Also, would that be considered a mistake in grammar?",
"I didn't think so, but my friend insists it is.",
"I'm not sure if there even is a word for that kind of mistake, but was just curious about it.",
"Thanks!"
],
"CreationDate" : "2015-05-01T05:25:03.120"
}, {
"ViewCount" : "69",
"Labels" : {
"HS" : [
"SK",
"SK",
"DQ",
"SK"
],
"CP" : ""
},
"Title" : "Is the use of \"Them\" right here?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119139",
"Body" : "On StackOverFlow, the users who do not put anything in the profile have this displayed.\n\"Apparently, this user prefers to keep an air of mystery about them.\".\nShould it not be him\/her?\nClarifying before hand that English is not my strong point.",
"ClosedDate" : "2015-05-01T19:34:36.070",
"Tags" : "<grammar><grammatical-structure>",
"LastEditorDisplayName" : "",
"CommentCount" : "1",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242773",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T06:48:46.493",
"AcceptedAnswerId" : "",
"Sentences" : [
"On StackOverFlow, the users who do not put anything in the profile have this displayed.",
"\"Apparently, this user prefers to keep an air of mystery about them.\".",
"Should it not be him\/her?",
"Clarifying before hand that English is not my strong point."
],
"CreationDate" : "2015-05-01T06:39:24.660"
}, {
"ViewCount" : "1566",
"Labels" : {
"HS" : [
"SK",
"SK",
"SK",
"DQ",
"SK",
"SK",
"DQ"
],
"CP" : ""
},
"Title" : "English equivalent of \"a**holes don't have horns\"",
"Score" : "14",
"OwnerDisplayName" : "",
"OwnerUserId" : "77339",
"Body" : "We have this expression in Hindi slang. Situation:\n\nA: \"I can't believe he treated me like that. I was stupid to trust him\"\nB: \"Don't beat yourself up. How were you supposed to know he would stoop so low? After all, a**holes don't walk around with horns on their\n heads\"\n\nWhat B is trying to say is that bad people don't have distinctive physical characteristics. They look like normal people and there's no way to tell them apart.\nIs there some English expression that conveys this?",
"ClosedDate" : "",
"Tags" : "<phrase-requests><translation><pejorative-language>",
"LastEditorDisplayName" : "",
"CommentCount" : "12",
"LastEditDate" : "2015-05-02T10:08:14.733",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "7",
"ParentId" : "",
"FavoriteCount" : "3",
"ID" : "242780",
"LastEditorUserId" : "77339",
"LastActivityDate" : "2015-05-02T10:08:14.733",
"AcceptedAnswerId" : "242842",
"Sentences" : [
"We have this expression in Hindi slang.",
"Situation:\n\nA: \"I can't believe he treated me like that.",
"I was stupid to trust him\"\nB: \"Don't beat yourself up.",
"How were you supposed to know he would stoop so low?",
"After all, a**holes don't walk around with horns on their\n heads\"\n\nWhat B is trying to say is that bad people don't have distinctive physical characteristics.",
"They look like normal people and there's no way to tell them apart.",
"Is there some English expression that conveys this?"
],
"CreationDate" : "2015-05-01T07:22:23.620"
}, {
"ViewCount" : "187",
"Labels" : {
"HS" : [
"DQ",
"DQ",
"SK",
"DQ"
],
"CP" : ""
},
"Title" : "Drop by\/in to a large place",
"Score" : "2",
"OwnerDisplayName" : "",
"OwnerUserId" : "106250",
"Body" : "Drop by\/in is usually used for a casual visit to small places like someone's office or house, but what about a larger locale? For example, can you say...?\n\nNext time you drop by Toronto, please call me.\n\nWhat alternatives do you suggest?",
"ClosedDate" : "",
"Tags" : "<phrase-usage>",
"LastEditorDisplayName" : "",
"CommentCount" : "1",
"LastEditDate" : "2015-05-01T09:29:04.010",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242790",
"LastEditorUserId" : "114389",
"LastActivityDate" : "2015-05-01T12:14:00.920",
"AcceptedAnswerId" : "",
"Sentences" : [
"Drop by\/in is usually used for a casual visit to small places like someone's office or house, but what about a larger locale?",
"For example, can you say...?",
"Next time you drop by Toronto, please call me.",
"What alternatives do you suggest?"
],
"CreationDate" : "2015-05-01T08:12:43.023"
}, {
"ViewCount" : "69",
"Labels" : {
"HS" : [
"SK",
"SK",
"DQ",
"IS",
"DQ",
"HR"
],
"CP" : ""
},
"Title" : "Can I describe time as \"organic\"?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119145",
"Body" : "I'm looking for a word to describe the other face or trait of time which is not man-made and has no time-stamp to it.\nA (very) general example is that there are \"morning\" and \"night\" people who react (to time) and perform differently at different hour of the day.\nIs \"organic\" a fitting word to use?\nI would like to say something along the lines of \"time is an organic resource\". Would that be wrong?\nThank you in advance.",
"ClosedDate" : "",
"Tags" : "<single-word-requests>",
"LastEditorDisplayName" : "",
"CommentCount" : "3",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242791",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T13:56:21.123",
"AcceptedAnswerId" : "",
"Sentences" : [
"I'm looking for a word to describe the other face or trait of time which is not man-made and has no time-stamp to it.",
"A (very) general example is that there are \"morning\" and \"night\" people who react (to time) and perform differently at different hour of the day.",
"Is \"organic\" a fitting word to use?",
"I would like to say something along the lines of \"time is an organic resource\".",
"Would that be wrong?",
"Thank you in advance."
],
"CreationDate" : "2015-05-01T08:50:48.957"
}, {
"ViewCount" : "99",
"Labels" : {
"HS" : [
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"HR",
"USI"
],
"CP" : ""
},
"Title" : "Am I syntactically wrong in these sentences?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119147",
"Body" : "I have recently written a few sentences for discussion of rhetorical ways in writing. The outcome turned out to be so unexpected that I was blamed for how wrong I syntactically was. So I cordially wish to get an exact answer upon whether I was syntactically wrong. Here are the sentences:\nA house was bought by Allen last Sunday.\nA house had Allen bought last Sunday.\nAllen had a house purchased last Sunday.\nAllen made a purchase for house last Sunday.\nLast Sunday was the time for Allen to buy his house.\nLast Sunday witnessed Allen along his purchase of house.\nBuying a house became true for Allen last Sunday.\nThanks for your warmhearted help in the answers. :)",
"ClosedDate" : "2015-05-02T02:47:42.843",
"Tags" : "<grammar><expressions>",
"LastEditorDisplayName" : "",
"CommentCount" : "3",
"LastEditDate" : "2015-05-01T09:35:22.460",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242795",
"LastEditorUserId" : "119147",
"LastActivityDate" : "2015-05-01T11:34:22.183",
"AcceptedAnswerId" : "",
"Sentences" : [
"I have recently written a few sentences for discussion of rhetorical ways in writing.",
"The outcome turned out to be so unexpected that I was blamed for how wrong I syntactically was.",
"So I cordially wish to get an exact answer upon whether I was syntactically wrong.",
"Here are the sentences:\nA house was bought by Allen last Sunday.",
"A house had Allen bought last Sunday.",
"Allen had a house purchased last Sunday.",
"Allen made a purchase for house last Sunday.",
"Last Sunday was the time for Allen to buy his house.",
"Last Sunday witnessed Allen along his purchase of house.",
"Buying a house became true for Allen last Sunday.",
"Thanks for your warmhearted help in the answers.",
":)"
],
"CreationDate" : "2015-05-01T09:05:44.650"
}, {
"ViewCount" : "1262",
"Labels" : {
"HS" : [
"SK",
"SK",
"SK",
"DQ"
],
"CP" : ""
},
"Title" : "What is a similar word to \"comprehensive\" that doesn't suggest absolutely everything will be covered?",
"Score" : "6",
"OwnerDisplayName" : "",
"OwnerUserId" : "119149",
"Body" : "I'm putting together a proposal for a website and one of the things that we're providing is a knowledge base for users to find solutions to their problems.\nI'd like to imply that the KB will have a lot of information in it, but don't want to suggest that it'll cover everything the user could ever need, as comprehensive does. Vast also feels like it's implying that the KB will be ... well, vast, which it won't necessarily.\nIs there a more suitable word?",
"ClosedDate" : "",
"Tags" : "<single-word-requests><synonyms>",
"LastEditorDisplayName" : "",
"CommentCount" : "5",
"LastEditDate" : "2015-05-01T15:13:22.207",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "6",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242798",
"LastEditorUserId" : "62605",
"LastActivityDate" : "2015-05-01T18:28:09.177",
"AcceptedAnswerId" : "242804",
"Sentences" : [
"I'm putting together a proposal for a website and one of the things that we're providing is a knowledge base for users to find solutions to their problems.",
"I'd like to imply that the KB will have a lot of information in it, but don't want to suggest that it'll cover everything the user could ever need, as comprehensive does.",
"Vast also feels like it's implying that the KB will be ... well, vast, which it won't necessarily.",
"Is there a more suitable word?"
],
"CreationDate" : "2015-05-01T09:33:33.330"
}, {
"ViewCount" : "394",
"Labels" : {
"HS" : [
"DQ",
"DQ"
],
"CP" : ""
},
"Title" : "\"Boyfriend\" and \"girlfriend\" usage",
"Score" : "1",
"OwnerDisplayName" : "",
"OwnerUserId" : "13877",
"Body" : "Why is it customary for a heterosexual woman to refer to her heterosexual female friend as a \"girlfriend\",but not the case for a heterosexual man and his male buddy to call one another \"boyfriends\"?\nHow did our language evolve this way,and is it similar in other languages throughout the world?",
"ClosedDate" : "",
"Tags" : "<usage>",
"LastEditorDisplayName" : "",
"CommentCount" : "15",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "0",
"ID" : "242806",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T17:02:11.023",
"AcceptedAnswerId" : "",
"Sentences" : [
"Why is it customary for a heterosexual woman to refer to her heterosexual female friend as a \"girlfriend\",but not the case for a heterosexual man and his male buddy to call one another \"boyfriends\"?",
"How did our language evolve this way,and is it similar in other languages throughout the world?"
],
"CreationDate" : "2015-05-01T10:21:33.537"
}, {
"ViewCount" : "212",
"Labels" : {
"HS" : [
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"DQ",
"DQ",
"SK"
],
"CP" : ""
},
"Title" : "Capitalization in merged company name",
"Score" : "3",
"OwnerDisplayName" : "",
"OwnerUserId" : "119152",
"Body" : "I own a company called Find My Bus Ltd that brands itself as Find My Bus.\nYesterday we sat down and had a discussion regarding the name and all came to the agreement that it didn't represent the company as we originally wanted it to. Seeing three separate words in a name that when thought of without any context sounds quite funky, we decided it would be better to merge the words into one name.\nWe aren't the first to do this, in fact it is becoming a trend to merge words into one name. For example: DigitalOcean, StatusCake.\nIn my opinion both of those names look fine because they consist of two words. However, when you do this with Find My Bus you see: FindMyBus.\nIs it just me, or does it look wrong having three words merged and capitalized? Would it be better to use Findmybus or perhaps FindmyBus?\nApologies if this seems like I'm running a poll, I'm not, I just simply would like to ask users with experience in the English language which looks the most appropriate for a company name. ",
"ClosedDate" : "2015-05-03T01:30:42.980",
"Tags" : "<grammar>",
"LastEditorDisplayName" : "",
"CommentCount" : "8",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "4",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242809",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-13T06:33:58.687",
"AcceptedAnswerId" : "242816",
"Sentences" : [
"I own a company called Find My Bus Ltd that brands itself as Find My Bus.",
"Yesterday we sat down and had a discussion regarding the name and all came to the agreement that it didn't represent the company as we originally wanted it to.",
"Seeing three separate words in a name that when thought of without any context sounds quite funky, we decided it would be better to merge the words into one name.",
"We aren't the first to do this, in fact it is becoming a trend to merge words into one name.",
"For example: DigitalOcean, StatusCake.",
"In my opinion both of those names look fine because they consist of two words.",
"However, when you do this with Find My Bus you see: FindMyBus.",
"Is it just me, or does it look wrong having three words merged and capitalized?",
"Would it be better to use Findmybus or perhaps FindmyBus?",
"Apologies if this seems like I'm running a poll, I'm not, I just simply would like to ask users with experience in the English language which looks the most appropriate for a company name. "
],
"CreationDate" : "2015-05-01T11:15:33.823"
}, {
"ViewCount" : "199",
"Labels" : {
"HS" : [
"SK",
"DQ",
"IS"
],
"CP" : ""
},
"Title" : "What does \u00cf mean in a play?",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "89332",
"Body" : "I just saw this in a play that I'm reading (on p24 of this version of A View From the Bridge by Arthur Miller):\n\nEnter Beatrice with coffee. \u00ef\n\nWhat does the \u00ef represent \/ mean? I can't find it anywhere else in the text where someone enters.",
"ClosedDate" : "",
"Tags" : "<symbols>",
"LastEditorDisplayName" : "",
"CommentCount" : "4",
"LastEditDate" : "2015-05-01T11:42:14.653",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "0",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242813",
"LastEditorUserId" : "89332",
"LastActivityDate" : "2015-05-01T11:42:14.653",
"AcceptedAnswerId" : "",
"Sentences" : [
"I just saw this in a play that I'm reading (on p24 of this version of A View From the Bridge by Arthur Miller):\n\nEnter Beatrice with coffee.",
"\u00ef\n\nWhat does the \u00ef represent \/ mean?",
"I can't find it anywhere else in the text where someone enters."
],
"CreationDate" : "2015-05-01T11:30:41.150"
}, {
"ViewCount" : "105",
"Labels" : {
"HS" : [
"SK",
"DQ",
"SK",
"DQ",
"DQ",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK",
"SK"
],
"CP" : ""
},
"Title" : "I will offer up a few bits of advice (???)",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "61240",
"Body" : "I think that this means simply \"I'll give you a few of advice.\"\nMy question is how \"offer up\" and \"offer\" are different. \nIn the dictionary, \"offer up\" is to worship or present as an act of worship, which I don't think is this case.\nAlso \"a few bits of advice\" is commonly used? Or is this because the author who wrote this is a programmer?\nNote: As an ESL person, most cases, meaning of what native speakers say presumably can be understood like this question. But the nuance of them is not clear especially in the case that speakers want to express their secondary intention indirectly. This sentence came from a programming book. Usually, coding book does not use such expression as \"offer up\". Also, there are many Jargons used by only computer science people. So, I wondered the possibility of the other meanings than dictionary meanings. Also, suddenly I thought that \"a bits of advice\" might be a tweak too for fun because the author used exaggeration in the \"offer up\". ",
"ClosedDate" : "2015-05-02T11:16:41.817",
"Tags" : "<phrases>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "2016-02-08T13:29:15.050",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242818",
"LastEditorUserId" : "18696",
"LastActivityDate" : "2016-02-08T13:29:15.050",
"AcceptedAnswerId" : "242822",
"Sentences" : [
"I think that this means simply \"I'll give you a few of advice.\"",
"My question is how \"offer up\" and \"offer\" are different.",
"In the dictionary, \"offer up\" is to worship or present as an act of worship, which I don't think is this case.",
"Also \"a few bits of advice\" is commonly used?",
"Or is this because the author who wrote this is a programmer?",
"Note: As an ESL person, most cases, meaning of what native speakers say presumably can be understood like this question.",
"But the nuance of them is not clear especially in the case that speakers want to express their secondary intention indirectly.",
"This sentence came from a programming book.",
"Usually, coding book does not use such expression as \"offer up\".",
"Also, there are many Jargons used by only computer science people.",
"So, I wondered the possibility of the other meanings than dictionary meanings.",
"Also, suddenly I thought that \"a bits of advice\" might be a tweak too for fun because the author used exaggeration in the \"offer up\". "
],
"CreationDate" : "2015-05-01T12:17:23.853"
}, {
"ViewCount" : "68",
"Labels" : {
"HS" : [
"DQ",
"SK"
],
"CP" : ""
},
"Title" : "Is this a dangling participle? \"To use the computer, it need to be powered.\"",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119159",
"Body" : "Is this sentence correct?\nTo use the computer, it need to be powered.",
"ClosedDate" : "2015-05-02T00:09:03.050",
"Tags" : "<grammar><dangling-participles>",
"LastEditorDisplayName" : "",
"CommentCount" : "2",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "1",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242821",
"LastEditorUserId" : "",
"LastActivityDate" : "2015-05-01T13:26:20.890",
"AcceptedAnswerId" : "242830",
"Sentences" : [
"Is this sentence correct?",
"To use the computer, it need to be powered."
],
"CreationDate" : "2015-05-01T12:25:21.723"
}, {
"ViewCount" : "739",
"Labels" : {
"HS" : [
"SK",
"SK",
"SK",
"DQ"
],
"CP" : ""
},
"Title" : "Is \"Next to that\" really an alternative to \"Additionally\" or \"Moreover\"?",
"Score" : "7",
"OwnerDisplayName" : "",
"OwnerUserId" : "10228",
"Body" : "I see many of my compatriots use the phrase \"Next to that\" at the start of a sentence to mean \"Additionally\", \"Moreover\", \"Furthermore\" or \"In addition\".\nThe reason for this, I feel, may be that the Dutch word \"daarnaast\" (literally: \"there\" + \"next to\"\/\"beside\") can be used both as a conjunction referring to physical proximity and as a member of the \"Additionally\" family of words.\nI believe this particular use of \"next to\" in English to be incorrect or at least uncommon, but I haven't found a good source to back up this opinion. Could someone enlighten me here?",
"ClosedDate" : "",
"Tags" : "<phrases><word-usage><conjunctions>",
"LastEditorDisplayName" : "",
"CommentCount" : "3",
"LastEditDate" : "2015-05-04T06:33:09.113",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",
"AnswerCount" : "2",
"ParentId" : "",
"FavoriteCount" : "",
"ID" : "242823",
"LastEditorUserId" : "10228",
"LastActivityDate" : "2015-05-06T07:22:28.400",
"AcceptedAnswerId" : "",
"Sentences" : [
"I see many of my compatriots use the phrase \"Next to that\" at the start of a sentence to mean \"Additionally\", \"Moreover\", \"Furthermore\" or \"In addition\".",
"The reason for this, I feel, may be that the Dutch word \"daarnaast\" (literally: \"there\" + \"next to\"\/\"beside\") can be used both as a conjunction referring to physical proximity and as a member of the \"Additionally\" family of words.",
"I believe this particular use of \"next to\" in English to be incorrect or at least uncommon, but I haven't found a good source to back up this opinion.",
"Could someone enlighten me here?"
],
"CreationDate" : "2015-05-01T12:45:46.480"
}, {
"ViewCount" : "250",
"Labels" : {
"HS" : [
"DQ"
],
"CP" : ""
},
"Title" : "Usage of \"Of\" and \"for\"",
"Score" : "0",
"OwnerDisplayName" : "",
"OwnerUserId" : "119160",
"Body" : "Is there a general rule governing the usage of \"Of\" and \"For\" when used in the following way:\nWhich is correct \"My love of animals\" or \"My love for animals\" ?",
"ClosedDate" : "",
"Tags" : "<prepositions>",
"LastEditorDisplayName" : "",
"CommentCount" : "0",
"LastEditDate" : "",
"PostTypeID" : "1",
"CommunityOwnedDate" : "",