-
Notifications
You must be signed in to change notification settings - Fork 48
/
WebApplicationsCorpus.json
1736 lines (1736 loc) · 118 KB
/
WebApplicationsCorpus.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "WebApplicationsCorpus",
"desc": "Visit https://github.com/sebischair/NLU-Evaluation-Corpora for more information",
"lang": "en",
"sentences": [
{
"author": "Evan Plaice",
"url": "http://webapps.stackexchange.com/questions/1912/alternative-to-facebook",
"text": "Alternative to Facebook",
"entities": [
{
"text": "Facebook",
"entity": "WebService",
"stop": 2,
"start": 2
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p><a href=\"https://plus.google.com/\">Google+</a>?</p>\n",
"author": "Alex"
},
"training": false
},
{
"author": "Ivo Flipse",
"url": "http://webapps.stackexchange.com/questions/1/how-do-i-delete-my-facebook-account",
"text": "How do I delete my Facebook account?",
"entities": [
{
"text": "Facebook",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>from <a href=\"http://www.facebook.com/group.php?gid=16929680703Blockquote\">here</a>:</p>\n\n<blockquote>\n <p>Go here: \n <a href=\"http://www.facebook.com/help/delete_account\">http://www.facebook.com/help/delete_account</a></p>\n \n <p>Click \"Submit\" and follow the instructions.</p>\n \n <p>Your account will be deactivated for two weeks, and if you DO NOT USE FACEBOOK IN ANY WAY during that period, your account is permanently deleted. </p>\n</blockquote>\n",
"author": "Victor Stanciu"
},
"training": false
},
{
"author": "Ivo Flipse",
"url": "http://webapps.stackexchange.com/questions/1562/are-there-any-good-pandora-alternatives-with-general-availability-outside-the-us",
"text": "Are there any good Pandora alternatives with general availability outside the US?",
"entities": [
{
"text": "Pandora",
"entity": "WebService",
"stop": 4,
"start": 4
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>Have you tried <a href=\"http://grooveshark.com\">Grooveshark</a> ? although you have to have a browser window open, it's still pretty good</p>\n",
"author": "jfoucher"
},
"training": false
},
{
"author": "Clare Macrae",
"url": "http://webapps.stackexchange.com/questions/18975/is-it-possible-to-export-my-data-from-trello-to-back-it-up",
"text": "Is it possible to export my data from Trello to back it up?",
"entities": [
{
"text": "Trello",
"entity": "WebService",
"stop": 8,
"start": 8
}
],
"intent": "Export Data",
"answer": {
"text": "<p>With the release of the <a href=\"https://trello.com/c/RdSTH7no\">Data Export feature</a>, you can now</p>\n\n<ol>\n<li>Go to your board</li>\n<li>Click the \"Board Menu\" button (on the right-hand-side of the screen)</li>\n<li>Select \"Share, Print, and Export\"</li>\n<li>Click \"JSON\"</li>\n</ol>\n\n<p>This will download a copy of your board data.</p>\n\n<p>Pro tips:</p>\n\n<ul>\n<li>You can also just add .json (or /somename.json) to the end of a board or card URL, to get the prompt to save the downloaded file (e.g. <a href=\"https://trello.com/board/welcome-board/4e6a8095efa69909ba007382/somename.json\">https://trello.com/board/welcome-board/4e6a8095efa69909ba007382/somename.json</a>)</li>\n<li>Alternatively, instead of clicking on the \"JSON\" button, you can right-click on it, and copy the URL</li>\n<li>If you have lots of boards that you want to download regularly, you'll have to save all the JSON links somewhere for all your boards, and download each one individually. </li>\n<li>Changing the names of all these individual files for each set of backups could get a little tedious, so one idea would be to create a new folder each time you backup your boards, and then save a set of exported files into that folder.</li>\n</ul>\n",
"author": "Daniel LeCheminant"
},
"training": false
},
{
"author": "Itamar",
"url": "http://webapps.stackexchange.com/questions/28590/is-there-an-online-alternative-to-igoogle",
"text": "Is there an online alternative to iGoogle",
"entities": [
{
"text": "iGoogle",
"entity": "WebService",
"stop": 6,
"start": 6
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>There are few you can explore:</p>\n\n<ul>\n<li><a href=\"http://www.netvibes.com/\" rel=\"nofollow\">Netvibes</a> </li>\n<li><a href=\"http://www.ustart.org/\" rel=\"nofollow\">Ustart</a></li>\n<li><a href=\"http://protopage.com/\" rel=\"nofollow\">ProtoPage</a></li>\n<li><a href=\"http://feedly.com/\" rel=\"nofollow\">Feedly</a></li>\n<li><a href=\"http://myfav.es/\" rel=\"nofollow\">MyFav</a></li>\n<li><a href=\"http://www.aboogy.com/\" rel=\"nofollow\">Aboogy</a></li>\n<li><a href=\"http://iguzu.com/\" rel=\"nofollow\">Iguzu</a></li>\n</ul>\n",
"author": "Sourabhh"
},
"training": false
},
{
"author": "Rich Armstrong",
"url": "http://webapps.stackexchange.com/questions/18961/how-can-i-remove-myself-from-a-trello-organization",
"text": "How can I remove myself from a Trello organization?",
"entities": [
{
"text": "Trello",
"entity": "WebService",
"stop": 7,
"start": 7
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>Suppose you'd joined the \"Twilight Fan Club\" organization on Trello ... but later decide that you don't actually like Twilight all that much, and would like to leave the organization.</p>\n\n<ol>\n<li>Go to the organization page (<a href=\"https://trello.com/twilight\">https://trello.com/twilight</a>)</li>\n<li>Find your avatar in the list of members</li>\n<li>Click on your avatar, and bring up this menu:</li>\n</ol>\n\n<p><img src=\"https://i.stack.imgur.com/3idYM.png\" alt=\"Remove someone from an organization\"></p>\n\n<p>... and then click \"Remove from Organization\"</p>\n\n<p><strong>Note:</strong> Roughly the same process can be followed to remove yourself from a board.</p>\n",
"author": "Daniel LeCheminant"
},
"training": false
},
{
"author": "x3ja",
"url": "http://webapps.stackexchange.com/questions/79/how-do-i-transfer-my-photos-from-flickr-to-picasa",
"text": "How do I transfer my photos from Flickr to Picasa?",
"entities": [
{
"text": "Flickr",
"entity": "WebService",
"stop": 7,
"start": 7
},
{
"text": "Picasa",
"entity": "WebService",
"stop": 9,
"start": 9
}
],
"intent": "Export Data",
"answer": {
"text": "<p>There's a tool called <a href=\"http://www.callingshotgun.net/about/migratr/\" rel=\"noreferrer\"><strong>Migratr</strong></a>, which <a href=\"http://www.lostintechnology.com/windows/how-to-transfer-photos-from-flickr-to-picasa\" rel=\"noreferrer\">makes it easy to transfer your pictures</a> from Flickr to Picasa or vice versa.</p>\n\n<p><a href=\"http://www.lostintechnology.com/wp-content/uploads/2008/11/migratrss-thumb.png\" rel=\"noreferrer\">alt text http://www.lostintechnology.com/wp-content/uploads/2008/11/migratrss-thumb.png</a></p>\n",
"author": "Ivo Flipse"
},
"training": false
},
{
"author": "Ivo Flipse",
"url": "http://webapps.stackexchange.com/questions/3/how-do-i-sync-google-calendar-with-my-outlook-calendar",
"text": "How do I sync Google Calendar with my Outlook Calendar?",
"entities": [
{
"text": "Google Calendar",
"entity": "WebService",
"stop": 5,
"start": 4
},
{
"text": "Outlook Calendar",
"entity": "WebService",
"stop": 9,
"start": 8
}
],
"intent": "Sync Accounts",
"answer": {
"text": "<p>You may want to take a look at <a href=\"http://www.google.com/support/calendar/bin/answer.py?answer=89955\" rel=\"nofollow\">Google's Calendar Sync</a>:</p>\n\n<blockquote>\n <p>Google Calendar Sync allows you to sync events between Google Calendar and Microsoft Outlook Calendar. You'll be able to determine the direction of information flow, as well as the sync frequency. Staying on top of your Google Calendar and Microsoft Outlook Calendar events has never been easier! Here's some good information to know to help you get started with Google Calendar Sync.</p>\n</blockquote>\n\n<p>It lists as only being compatible with Outlook 2003 and 2007, so I'm not sure if it works with Outlook 2010.</p>\n",
"author": "Jared Harley"
},
"training": false
},
{
"author": "InquilineKea",
"url": "http://webapps.stackexchange.com/questions/17484/archive-export-all-the-blog-entries-from-a-rss-feed-in-google-reader",
"text": "Archive/export all the blog entries from a RSS feed in Google Reader",
"entities": [
{
"text": "Google Reader",
"entity": "WebService",
"stop": 13,
"start": 12
}
],
"intent": "Export Data",
"answer": {
"text": "<p>After logging to Google Reader, you can download the last 1000 items of each feed using the url <a href=\"http://www.google.com/reader/atom/feed/%5Bfeed_address%5D?n=1000\">http://www.google.com/reader/atom/feed/[feed_address]?n=1000</a>. If you need to archive more than 1000 items, you have to follow <a href=\"http://www.google.com/support/forum/p/reader/thread?tid=29c0f8a4afeced25&hl=en\">this</a> procedure (the key word is \"continuation parameter\").</p>\n",
"author": "tic"
},
"training": false
},
{
"text": "How can I delete my 160by2 account?",
"intent": "Delete Account",
"entities": [
{
"text": "160by2",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"training": false
},
{
"author": "tobeannounced",
"url": "http://webapps.stackexchange.com/questions/3557/how-can-i-permanently-delete-my-yahoo-mail-account",
"text": "How can I permanently delete my Yahoo mail account?",
"entities": [
{
"text": "Yahoo mail",
"entity": "WebService",
"stop": 7,
"start": 6
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>I used service <a href=\"http://deleteyouraccount.com\" rel=\"nofollow\">deleteyouraccount</a> (quite useful not only for yahoo :) ). However your account will be removed only after 3 months.</p>\n",
"author": "Michael Pakhantsov"
},
"training": false
},
{
"author": "Joel Dean",
"url": "http://webapps.stackexchange.com/questions/31784/deleting-an-accountwebsite-from-google-analytics",
"text": "Deleting an account(website) from Google Analytics?",
"entities": [
{
"text": "Google Analytics",
"entity": "WebService",
"stop": 8,
"start": 7
}
],
"intent": "Delete Account",
"answer": {
"text": "<ol>\n<li>Go to <code>https://www.google.com/analytics</code></li>\n<li>Click the profile that you want to edit</li>\n<li>Click <code>Admin</code> on the right hand side of the screen</li>\n</ol>\n\n<p><img src=\"https://i.stack.imgur.com/ynCW8.png\" alt=\"enter image description here\"></p>\n\n<ol>\n<li>Click the name of the profile from the <code>profiles</code> tab</li>\n<li>Click the <code>profile settings</code> tab</li>\n</ol>\n\n<p><img src=\"https://i.stack.imgur.com/GyYGa.png\" alt=\"enter image description here\"></p>\n\n<ol>\n<li>On the bottom right of the screen click the <code>Delete this profile</code> link and go through the confirmation steps</li>\n</ol>\n\n<p><img src=\"https://i.stack.imgur.com/Jiagf.png\" alt=\"enter image description here\"></p>\n\n<p><strong>Note</strong> that this will permanently delete that profile and all data associated with it. If this profile is used by others and you just want to remove it from your list of profiles than you should ask another Administrator to remove you from the list of users.</p>\n",
"author": "Dez"
},
"training": false
},
{
"author": "Tshepang",
"url": "http://webapps.stackexchange.com/questions/9638/how-to-delete-my-imgur-account",
"text": "How to delete my imgur account?",
"entities": [
{
"text": "imgur",
"entity": "WebService",
"stop": 4,
"start": 4
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>The <a href=\"https://imgur.com/tos\" rel=\"nofollow noreferrer\">Terms of Service</a> say, \"Don't upload copyrighted material, harassment, spam, gore, pornography, or especially child pornography. If you do, we will ban you, delete all your images, report you to the authorities if necessary, and prevent you from viewing any images hosted on Imgur.com.\"</p>\n\n<p>So, I suppose you could try uploading some gore?</p>\n\n<p><img src=\"https://i.stack.imgur.com/s2HyS.jpg\" alt=\"alt text\"></p>\n\n<p><em>Seriously</em>, though, just use the <a href=\"https://imgur.com/contact\" rel=\"nofollow noreferrer\">contact form</a> and request deletion. I'm sure they get them all the time.</p>\n",
"author": "Joel Spolsky"
},
"training": false
},
{
"author": "Jerry101",
"url": "http://webapps.stackexchange.com/questions/103536/how-to-change-my-uber-password-or-delete-the-account",
"text": "How to change my Uber password or delete the account?",
"entities": [
{
"text": "Uber",
"entity": "WebService",
"stop": 4,
"start": 4
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>As far as I can tell, you can't directly change your password the web site or the Android app (I don't know about iOS). You can, however, request that they reset your password.</p>\n\n<ol>\n<li>Log out of the web site (if you're currently logged in)</li>\n<li>Instead of logging back in, click \"Forgot password\"</li>\n<li>Follow the instructions</li>\n</ol>\n",
"author": "aldel"
},
"training": false
},
{
"author": "Abhijeet",
"url": "http://webapps.stackexchange.com/questions/23501/how-to-delete-a-sify-mail-account",
"text": "How to delete a Sify Mail account",
"entities": [
{
"text": "Sify Mail",
"entity": "WebService",
"stop": 5,
"start": 4
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>Send a request email to <code>[email protected]</code> to de-activate / delete your account</p>\n",
"author": "Siva Charan"
},
"training": false
},
{
"author": "Alex",
"url": "http://webapps.stackexchange.com/questions/52015/how-to-permanently-delete-a-37signals-id",
"text": "How to permanently delete a 37signals ID",
"entities": [
{
"text": "37signals",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>To my understanding, deleting a global 37Signals user ID requires a special Support request.</p>\n\n<p>There are various ways to contact 37Signals Support ... assuming you're a Basecamp account owner, you can go here: <a href=\"https://help.37signals.com/bcx/tickets/new\" rel=\"nofollow\">https://help.37signals.com/bcx/tickets/new</a>. Provide them the user's name and email; and let them know you'd like the user's global Launchpad ID to be deleted.</p>\n\n<p>(Alternatively, you could effectively \"disable\" the user by simply removing them from all 37Signals accounts [Basecamp, Highrise, etc.]).</p>\n",
"author": "Dave Clausen"
},
"training": false
},
{
"author": "citadelgrad",
"url": "http://webapps.stackexchange.com/questions/5578/how-can-i-delete-my-hunch-account",
"text": "How can I delete my Hunch account?",
"entities": [
{
"text": "Hunch",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"intent": "Delete Account",
"answer": {
"text": "<p>Steps:</p>\n\n<ol>\n<li>Log in to Hunch.com using the account you want to delete</li>\n<li>Click <code>Settings</code> in the upper right</li>\n<li>Scroll down and click the \"Delete my account\" link near the bottom of the page</li>\n<li>Fill out and submit the deletion form</li>\n</ol>\n",
"author": "dgw"
},
"training": false
},
{
"author": "Andrew Андрей Листочкин",
"url": "http://webapps.stackexchange.com/questions/2049/any-alternatives-to-google-apps-for-your-domain",
"text": "Any alternatives to Google Apps for your domain?",
"entities": [
{
"text": "Google Apps",
"entity": "WebService",
"stop": 4,
"start": 3
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p><a href=\"http://www.zoho.com/\">Zoho</a> offer a pretty comprehensive range of products, most of which are free for a limited number of users/projects/whatever...</p>\n\n<ul>\n<li>Calendar</li>\n<li>Challenge</li>\n<li>Chat</li>\n<li>Creator</li>\n<li>CRM</li>\n<li>Discussions</li>\n<li>Docs</li>\n<li>Gadgets</li>\n<li>Invoice</li>\n<li>Mail</li>\n<li>Meeting</li>\n<li>Notebook</li>\n<li>Office for Microsoft Sharepoint</li>\n<li>People</li>\n<li>Planner</li>\n<li>Polls</li>\n<li>Projects</li>\n<li>Recruit</li>\n<li>Reports</li>\n<li>Sheet</li>\n<li>Show</li>\n<li>Viewer</li>\n<li>Wiki</li>\n<li>Writer</li>\n</ul>\n\n<p>Even though the functionality overlaps, they integrate with Google Apps in some places, so you could have a hybrid solution.</p>\n",
"author": "x3ja"
},
"training": false
},
{
"author": "R.K.",
"url": "http://webapps.stackexchange.com/questions/5118/evernote-alternative",
"text": "Evernote alternative",
"entities": [
{
"text": "Evernote",
"entity": "WebService",
"stop": 0,
"start": 0
}
],
"intent": "Find Alternative",
"answer": {
"text": "<ul>\n<li><a href=\"http://www.memonic.com/\" rel=\"nofollow\">Memonic</a></li>\n<li><a href=\"http://www.reqall.com/\" rel=\"nofollow\">reQall</a></li>\n<li><a href=\"http://www.diigo.com/\" rel=\"nofollow\">diigo</a></li>\n</ul>\n\n<p>All have iOS apps; reQall and diigo have Android apps, as well.</p>\n",
"author": "Alex"
},
"training": false
},
{
"author": "Aaron",
"url": "http://webapps.stackexchange.com/questions/1899/alternatives-to-librarything",
"text": "Alternatives to LibraryThing",
"entities": [
{
"text": "LibraryThing",
"entity": "WebService",
"stop": 2,
"start": 2
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>I like <a href=\"http://www.goodreads.com/\" rel=\"nofollow\">goodreads</a></p>\n",
"author": "Philippe Mongeau"
},
"training": false
},
{
"author": "Evan Plaice",
"url": "http://webapps.stackexchange.com/questions/2148/what-are-the-alternatives-to-facebook-meetup-for-event-planning",
"text": "What are the alternatives to Facebook/Meetup for Event Planning",
"entities": [
{
"text": "Facebook",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>We always use <a href=\"http://www.doodle.com\" rel=\"nofollow\">www.doodle.com</a> to manage our meetings. It's specially helpful to find a time/date slot that fits everybody. Give it a try.</p>\n\n<p>I'm in their Outlook Connector Beta Program, with that, my outlook calendar is always in sync with it.</p>\n\n<p>And here the individual points:<br>\nTo be able to propagate invitations to friends through either email and/or social network(s)<br>\n=> via email<br>\nCan export a specific event entry in vCalendar format<br>\n=> yep<br>\nExposes an external API to retrieve a feed of events for a specific user/group<br>\n=> Yes, they have an API, but couldn't find it now.<br>\nDisplays a link to an RSS/Atom feed of events for a specific user/group<br>\n=> no idea, but there is a subscribe link \nDisplays a list of people who are invited and their status (attending/maybe/not)<br>\n=> Absolutely<br>\nHas a description field for the event<br>\n=> Yes<br>\nHas attached comments<br>\n=> Yes </p>\n",
"author": "Remy"
},
"training": false
},
{
"author": "tobeannounced",
"url": "http://webapps.stackexchange.com/questions/3391/is-there-a-free-and-privacy-aware-alternative-to-google",
"text": "Is there a free and privacy-aware alternative to Google?",
"entities": [
{
"text": "Google",
"entity": "WebService",
"stop": 10,
"start": 10
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>Google now has SSL support, so use <a href=\"https://www.google.com\" rel=\"nofollow\">https://www.google.com</a>. Referrer headers are not sent to the pages you go to from SSL search results, nor are search queries snoopable.</p>\n\n<p>If you want to minimize tracking, block cookies from *.google.com, explicitly enabling cookies for at least mail.google.com, if you use GMail.</p>\n",
"author": "maxwellb"
},
"training": false
},
{
"author": "Steve Brown",
"url": "http://webapps.stackexchange.com/questions/33904/what-alternatives-to-google-product-search-exist",
"text": "What alternatives to Google Product Search exist?",
"entities": [
{
"text": "Google",
"entity": "WebService",
"stop": 3,
"start": 3
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>Personally I like pricegrabber and nextag.</p>\n\n<p><a href=\"http://www.pricegrabber.com\" rel=\"nofollow\">http://www.pricegrabber.com</a></p>\n\n<p><a href=\"http://www.nextag.com/\" rel=\"nofollow\">http://www.nextag.com/</a></p>\n",
"author": "Ram G"
},
"training": false
},
{
"author": "Mcradle",
"url": "http://webapps.stackexchange.com/questions/7655/photo-sharing-site-alternative-to-flickr-supporting-openid-sign-in",
"text": "Photo Sharing Site (alternative to flickr) supporting OpenID sign in?",
"entities": [
{
"text": "flickr",
"entity": "WebService",
"stop": 6,
"start": 6
},
{
"text": "OpenID",
"entity": "WebService",
"stop": 9,
"start": 9
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p><a href=\"http://www.ipernity.com/\" rel=\"nofollow\">Ipernity</a> uses OpenID.</p>\n\n<p>There are several that allow signing in with Facebook credentials (such as <a href=\"http://photobucket.com/\" rel=\"nofollow\">Photobucket</a>). And, of course, everyone in the world has a Google account, so there is <a href=\"http://picasaweb.google.com\" rel=\"nofollow\">PicasaWeb</a>.</p>\n",
"author": "ale"
},
"training": false
},
{
"author": "grm",
"url": "http://webapps.stackexchange.com/questions/1763/any-good-alternative-to-google-alerts",
"text": "Any good alternative to Google Alerts?",
"entities": [
{
"text": "Google Alerts",
"entity": "WebService",
"stop": 5,
"start": 4
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>I find <a href=\"http://www.socialmention.com\" rel=\"nofollow\">Social Mention</a> even more complete than Google Alerts.</p>\n",
"author": "Olivier Lalonde"
},
"training": false
},
{
"author": "Wil",
"url": "http://webapps.stackexchange.com/questions/3599/good-wireframing-apps",
"text": "Good wireframing apps?",
"entities": [],
"intent": "None",
"answer": {
"text": "<p>I love balsamiq mockups: <a href=\"http://www.balsamiq.com/products/mockups\" rel=\"nofollow\">http://www.balsamiq.com/products/mockups</a></p>\n\n<p>They've done a lot to speed up the work (shortcuts, smart functions).</p>\n",
"author": "Eduard Wirch"
},
"training": false
},
{
"author": "Nacho",
"url": "http://webapps.stackexchange.com/questions/24328/is-there-a-html-alternative-to-prezi",
"text": "Is there a HTML alternative to Prezi?",
"entities": [
{
"text": "Prezi",
"entity": "WebService",
"stop": 6,
"start": 6
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>After some time, I'm glad to answer my own question.</p>\n\n<p><a href=\"http://rvl.io\" rel=\"nofollow\">Rvl.io</a> (based on reveal.js) has been launched a few weeks ago and it's great.</p>\n\n<p>[UPDATE] rvl.io is now <a href=\"http://slid.es\" rel=\"nofollow\">slid.es</a></p>\n",
"author": "Nacho"
},
"training": false
},
{
"author": "Julius A",
"url": "http://webapps.stackexchange.com/questions/3784/any-alternatives-to-google-streetview",
"text": "Any alternatives to Google Streetview?",
"entities": [
{
"text": "Google Streetview",
"entity": "WebService",
"stop": 4,
"start": 3
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p><strong>Bing Maps</strong>: <a href=\"http://www.bing.com/maps/\" rel=\"nofollow\">http://www.bing.com/maps/</a></p>\n\n<p><strong>Map Jack</strong>: <a href=\"http://mapjack.com/\" rel=\"nofollow\">http://mapjack.com/</a> is another (as recommended by joyjit below). </p>\n\n<p>See example:\n<a href=\"http://www.bing.com/maps/explore/?FORM=MLOMAP&PUBL=GOOGLE&crea=userid1743go6a1c1270db6e7f374a897e012428c985e#5003/s=w/5872/lat=32.797172&lon=-117.243132&alt=-17.24&z=30&h=70.1&p=2.9&pid=5082\" rel=\"nofollow\">http://www.bing.com/maps/explore/?FORM=MLOMAP&PUBL=GOOGLE&crea=userid1743go6a1c1270db6e7f374a897e012428c985e#5003/s=w/5872/lat=32.797172&lon=-117.243132&alt=-17.24&z=30&h=70.1&p=2.9&pid=5082</a></p>\n\n<p>They also do arial view from planes, so better definition. </p>\n",
"author": "mike the mike"
},
"training": false
},
{
"author": "Ben",
"url": "http://webapps.stackexchange.com/questions/5011/zencoder-alternatives",
"text": "Zencoder alternatives?",
"entities": [
{
"text": "Zencoder",
"entity": "WebService",
"stop": 0,
"start": 0
}
],
"intent": "Find Alternative",
"answer": {
"text": "<ol>\n<li><a href=\"http://encoding.com/\" rel=\"nofollow\">encoding.com</a></li>\n<li><strike><a href=\"http://hdcloud.com/\" rel=\"nofollow\">HD Cloud</a></strike></li>\n<li><a href=\"http://www.ankoder.com/\" rel=\"nofollow\">Ankoder</a></li>\n<li><a href=\"http://www.pandastream.com/\" rel=\"nofollow\">Panda</a></li>\n</ol>\n\n<p><em>HD Cloud is no more, and leads to a parked domain - 10/13</em></p>\n",
"author": "Alex"
},
"training": false
},
{
"author": "thSoft",
"url": "http://webapps.stackexchange.com/questions/39518/alternatives-to-discontinued-google-calendar-appointment-slots",
"text": "Alternatives to discontinued Google Calendar Appointment Slots",
"entities": [
{
"text": "Google Calendar",
"entity": "WebService",
"stop": 4,
"start": 3
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>Now I use <a href=\"http://youcanbook.me/\" rel=\"nofollow\">YouCanBook.Me</a> with the \"On duty events\" hack described <a href=\"http://commons.trincoll.edu/jackdougherty/2012/12/16/youcanbookme/\" rel=\"nofollow\">here</a>. It uses Google Calendar, one can set up multiple profiles (I do it per appointment places I have), and has a lot of configurable options. Since the booking is public, the booking form contains a captcha field, but that is a minor inconvenience.</p>\n",
"author": "thSoft"
},
"training": false
},
{
"author": "Simon",
"url": "http://webapps.stackexchange.com/questions/14417/qa-platform-similar-to-stack-exchange-model",
"text": "Q&A Platform similar to Stack Exchange model?",
"entities": [
{
"text": "Stack Exchange",
"entity": "WebService",
"stop": 7,
"start": 6
}
],
"intent": "Find Alternative",
"answer": {
"text": "<p>See <a href=\"https://meta.stackexchange.com/q/2267/59303\">this question</a> on Meta Stack Overflow.</p>\n\n<p>It has a comprehensive list of clones with which technologies they use etc.</p>\n",
"author": "ChrisF"
},
"training": false
},
{
"author": "Raleigh Buckner",
"url": "http://webapps.stackexchange.com/questions/3670/can-i-share-sync-my-picasa-web-albums-automatically-to-my-facebook-account",
"text": "Can I Share/Sync My Picasa Web Albums Automatically to My Facebook Account?",
"entities": [
{
"text": "Picasa",
"entity": "WebService",
"stop": 6,
"start": 6
},
{
"text": "Facebook",
"entity": "WebService",
"stop": 12,
"start": 12
}
],
"intent": "Sync Accounts",
"answer": {
"text": "<p>Yes you can.</p>\n\n<p>Click here: <a href=\"http://apps.facebook.com/fotofan/\" rel=\"noreferrer\">http://apps.facebook.com/fotofan/</a></p>\n\n<p>Then follow the directions to sync with your Picasa account. It will give your profile a \"Picasa\" tab. \n<a href=\"http://www.freeimagehosting.net/uploads/1b29f95865.png\" rel=\"noreferrer\">alt text http://www.freeimagehosting.net/uploads/1b29f95865.png</a></p>\n",
"author": "mike the mike"
},
"training": false
},
{
"author": "Daniel Bowden",
"url": "http://webapps.stackexchange.com/questions/3337/sync-not-export-facebook-events-with-google-apps-calendar",
"text": "Sync not export Facebook events with Google Apps calendar",
"entities": [
{
"text": "Facebook",
"entity": "WebService",
"stop": 3,
"start": 3
},
{
"text": "Google Apps",
"entity": "WebService",
"stop": 7,
"start": 6
}
],
"intent": "Sync Accounts",
"answer": {
"text": "<p>There's an article on this <a href=\"http://www.insidefacebook.com/2009/02/15/how-to-sync-facebook-events-with-google-calendar/\" rel=\"nofollow\">here</a>. I've not checked that it works, but it seems pretty straight forward. The essence is that instead of importing the calendar, you add the URL of your event feed as a public calendar - here's a summary of the steps:</p>\n\n<ol>\n<li>In Facebook click on \"Events\"</li>\n<li>Click on \"Export Events\" and copy the URL</li>\n<li>In Google Calendar go to \"Add\" under \"Other calendars\" and choose \"Add by URL\"</li>\n<li>Paste the URL you copied from Facebook and click \"Add\"</li>\n</ol>\n\n<p>[Update: to make answer more complete]<br>\nIf you run into issues with private events not showing properly then check out <a href=\"http://eventbusyfix.info/\" rel=\"nofollow\">eventbusyfix.info</a>. This site acts as an inbetween to clear the private flag and enable Gmail to show them properly (Thanks to prestomation for this tip)<br>\n[/Update] </p>\n\n<p>Hope that helps!</p>\n",
"author": "x3ja"
},
"training": false
},
{
"author": "Nick Gotch",
"url": "http://webapps.stackexchange.com/questions/477/how-do-i-sync-facebook-twitter-foursquare",
"text": "How do I sync Facebook Twitter & Foursquare?",
"entities": [
{
"text": "Facebook",
"entity": "WebService",
"stop": 4,
"start": 4
},
{
"text": "Twitter",
"entity": "WebService",
"stop": 5,
"start": 5
},
{
"text": "Foursquare",
"entity": "WebService",
"stop": 7,
"start": 7
}
],
"intent": "Sync Accounts",
"answer": {
"text": "<p>Having every single Foursquare checkin post to twitter has become quite a faux pas, at least among my followers. Some even consider a single tweet (i.e. took over as mayor) to be an automatic-unfollow catalyst. Depends on your audience though, I guess.</p>\n\n<p>One option would be to use the <a href=\"http://apps.facebook.com/selectivetwitter/\" rel=\"nofollow\">Selective Twitter</a> app for Facebook, which only uses tweets that include the \"#fb\" hashtag to update your facebook status. By using this, you could have Foursquare update both facebook and twitter without the tweet again updating facebook; and then for normal tweets that you want to push into facebook, include \"#fb\". It costs you a few characters, but it accomplishes your goal.</p>\n",
"author": "Adam Tuttle"
},
"training": false
},
{
"author": "enigma",
"url": "http://webapps.stackexchange.com/questions/85829/google-calendar-not-syncing-calendars-that-have-been-added-by-url-with-windows-1",
"text": "Google Calendar not syncing calendars that have been added by URL with Windows 10 Calendar",
"entities": [
{
"text": "Google Calendar",
"entity": "WebService",
"stop": 1,
"start": 0
}
],
"intent": "Sync Accounts",
"answer": {
"text": "<p>The solution to this problem is to go to <a href=\"https://calendar.google.com/calendar/syncselect\" rel=\"nofollow\">https://calendar.google.com/calendar/syncselect</a> and tick the calendars you wish to be synchronized. Then go back to Windows Calendar, and refresh the synced calendars. I found the quickest way to do that was to open the settings panel, go to \"Accounts\", select the appropriate account, select \"Change mailbox sync settings\" and toggle the \"Calendar\" option under \"Sync options\" off and then on again to refresh the new list of calendars available to sync from Google.</p>\n\n<p>This appears to be undocumented for Windows, but the solution is shown in Google support with the title \"<a href=\"https://support.google.com/calendar/answer/99358\" rel=\"nofollow\">See Google Calendar events on Apple Calendar</a>\", under the \"Change which calendars get synced\" heading.</p>\n",
"author": "enigma"
},
"training": false
},
{
"author": "Mark Elliot",
"url": "http://webapps.stackexchange.com/questions/6031/google-contact-synchronization-on-the-iphone-3g",
"text": "Google Contact Synchronization on the iPhone 3G",
"entities": [
{
"text": "Google",
"entity": "WebService",
"stop": 0,
"start": 0
}
],
"intent": "Sync Accounts",
"answer": {
"text": "<p>It sounds like your problem is that you had pre-existing contacts on the iPhone which you want to import into Gmail....</p>\n\n<p>I don't believe there is a way to do this. You will have to use <a href=\"http://mail.google.com/support/bin/answer.py?hl=en&answer=14024\" rel=\"nofollow\">one of the import methods</a> to get the contacts on Gmail initially.</p>\n\n<p>Once that is set up, you will be able to create or edit contacts on your iPhone and they will be synced to Gmail.</p>\n",
"author": "Senseful"
},
"training": false
},
{
"author": "Evans",
"url": "http://webapps.stackexchange.com/questions/30236/gmail-user-set-up-through-google-apps-can-t-change-their-password",
"text": "Gmail user set up through Google Apps can't change their password",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 0,
"start": 0
},
{
"text": "Google",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"intent": "Change Password",
"answer": {
"text": "<p>All users should be able to change their passwords by default. From with in the GMail site as a logged in user (GMail or Google Apps), click the button with your email address in the top right of the screen and then select <strong>Account</strong>. From there, select <strong>Security</strong> > <strong>Password management - Change password</strong>.</p>\n\n<p>Google's documentation is linked <a href=\"http://support.google.com/mail/bin/answer.py?hl=en&answer=6567\" rel=\"nofollow\">here</a>, but it seems a bit outdated for gApps users.</p>\n",
"author": "bobmagoo"
},
"training": false
},
{
"author": "Justin Tanner",
"url": "http://webapps.stackexchange.com/questions/4228/how-do-i-change-my-password-on-ebay",
"text": "How do I change my password on ebay?",
"entities": [
{
"text": "ebay",
"entity": "WebService",
"stop": 7,
"start": 7
}
],
"intent": "Change Password",
"answer": {
"text": "<ol>\n<li>Login to eBay</li>\n<li>Click the personal menu in the top left. (It says something like \"Hi Justin!\")</li>\n<li>Click the \"Account settings\" link</li>\n<li>On the \"Account\" tab, click the \"Personal information\" link on the left side</li>\n<li>In the account information section, click the edit button on the row that is for your password</li>\n</ol>\n",
"author": "Phil"
},
"training": false
},
{
"author": "Pacob",
"url": "http://webapps.stackexchange.com/questions/80847/gmail-recover-password-while-logged-in-iphone",
"text": "Gmail recover password while logged in Iphone",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 0,
"start": 0
}
],
"intent": "Change Password",
"answer": {
"text": "<p>[Update] Finally found impossible to use the fact of being logged in the App so I had to go through the painful recovery process that took dozens of tests filling information till I recovered the password.</p>\n",
"author": "Pacob"
},
"training": false
},
{
"author": "phwd",
"url": "http://webapps.stackexchange.com/questions/5347/how-to-retrieve-forgotten-wordpress-admin-password",
"text": "How to retrieve forgotten Wordpress Admin password",
"entities": [
{
"text": "Wordpress",
"entity": "WebService",
"stop": 4,
"start": 4
}
],
"intent": "Change Password",
"answer": {
"text": "<p>Do you remember your FTP account password or your browse filesystem password? If so, FTP into the site, go into the directory you installed WordPress in and look for wp-config.php file. That contains your database's password in clear text. </p>\n\n<p>Not sure what protects phpMyAdmin, but if that's .htaccess or .htpasswd, you can edit or delete that one.</p>\n",
"author": "Alexandre Rafalovitch"
},
"training": false
},
{
"author": "Nam G VU",
"url": "http://webapps.stackexchange.com/questions/14560/how-to-retrieve-a-stolen-yahoo-accounts-password",
"text": "How to retrieve a stolen Yahoo account's password?",
"entities": [
{
"text": "Yahoo",
"entity": "WebService",
"stop": 5,
"start": 5
}
],
"intent": "Change Password",
"answer": {
"text": "<p>From <a href=\"http://pctechnotes.com/how-to-recover-your-hacked-yahoo-account/\" rel=\"nofollow\">here</a>:</p>\n\n<p><strong>How to recover your Hacked Yahoo! Account:</strong></p>\n\n<blockquote>\n <p>“To be able to reset your hacked yahoo\n password just send a mail to Yahoo\n Security Department –\n [email protected].\n always remember to be polite in\n contacting them, tell the whole story,\n don’t blame them for your hacked\n account, tell them when is the last\n time you access your account, supply\n them the password that you last used\n to accessed your account, give them\n all the information you entered when\n you register your account or just the\n information when you last update your\n account.”</p>\n</blockquote>\n",
"author": "Mehper C. Palavuzlar"
},
"training": false
},
{
"author": "Joannes Vermorel",
"url": "http://webapps.stackexchange.com/questions/88857/users-cant-reset-their-passwords-anymore-on-google-apps",
"text": "Users can't reset their passwords anymore on Google Apps?",
"entities": [
{
"text": "Google",
"entity": "WebService",
"stop": 9,
"start": 9
}
],
"intent": "Change Password",
"answer": {
"text": "<p>You'll have to remove the URL's from the SSO Setup section in the Security Page. This is where your Google Apps account is looking for the Change Password URL.</p>\n\n<p><a href=\"https://i.stack.imgur.com/Tm0HP.png\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/Tm0HP.png\" alt=\"enter image description here\"></a></p>\n\n<p>If you have removed it, try to re-enable SSO, press save. Then make sure all the URL's are empty, press save. Lastly untick the SSO option and press save again. Hopefully that will tell your Google Apps that the URL is gone.</p>\n",
"author": "tyelford"
},
"training": false
},
{
"author": "The Disintegrator",
"url": "http://webapps.stackexchange.com/questions/13878/does-moving-a-mail-to-the-imap-spam-folder-trains-gmails-spam-filter",
"text": "Does moving a mail to the IMAP spam folder trains Gmail's spam filter?",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 10,
"start": 10
}
],
"intent": "Filter Spam",
"answer": {
"text": "<p>I was wondering the same thing myself. The answer is Yes.</p>\n\n<blockquote>\n <h3>How is spam handled?</h3>\n \n <p>Gmail's spam filters also work in your IMAP* client by automatically\n diverting messages that are suspected of being unwanted messages into\n '[Gmail]/Spam' and keeping them out of your inbox.</p>\n \n <p>If you find a message that should be marked as spam, just move it to\n '[Gmail]/Spam.' This is just like clicking 'Report Spam' in the Gmail\n web interface and helps us to improve our spam filters.</p>\n \n <p>If you find a message wrongly classified as spam, you can move the\n message out of '[Gmail]/Spam' to the appropriate folder in your\n client.</p>\n \n <p>Note that your client may have its own junk mail filtering technology,\n which is separate from Gmail's spam filtering. We recommend using only\n Gmail's spam filtering and turning off any additional anti-spam or\n junk mail filters within your client. If you still decide to enable\n client side spam filtering, your client will download an extra copy of\n every message.</p>\n \n <p><sub>*IMAP: IMAP (Internet message access protocol) lets you download\n messages from Gmail so you can access your mail with a program like\n Outlook Express or Apple Mail. IMAP syncs the actions you take in\n Outlook Express or Apple Mail with Gmail so if you read a message in\n your mail client, it'll be marked as read in Gmail.</sub></p>\n</blockquote>\n\n<p>Taken from <a href=\"http://mail.google.com/support/bin/answer.py?hl=en&answer=78759\" rel=\"nofollow\">this Google Help Article</a></p>\n",
"author": "Mark G"
},
"training": false
},
{
"author": "kbyrd",
"url": "http://webapps.stackexchange.com/questions/31042/how-can-i-auto-delete-some-spam-from-gmail",
"text": "How can I auto-delete some spam from Gmail?",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 9,
"start": 9
}
],
"intent": "Filter Spam",
"answer": {
"text": "<p>I forward all my mail from one of my Gmail accounts to another Gmail account, including what Gmail would normally filter to the Spam folder. I use the <code>is:spam</code> query with the <code>Never send it to Spam</code> rule in the inbound filter to allow spam to be forwarded. Do note the use of <code>is</code> rather than <code>in</code>.</p>\n\n<p>Therefore, I imagine you could do the same with the following filter:</p>\n\n<p>Contains <code>is:spam (vigara OR cilais)</code>, Action <code>Delete it</code>.</p>\n\n<p>If you wanted to apply the rule universally, you could instead use:</p>\n\n<p>Contains <code>(is:spam OR -is:spam) (vigara OR cilais)</code>, Action <code>Delete it</code>.</p>\n\n<p>Note that <code>Delete it</code> automatically implies <code>Never send it to Spam</code> so you don't need to check the latter check box. In fact, if you check it, Gmail will uncheck it automatically. I am uncertain as to whether this will impact Gmail's internal spam detection heuristics, but I find that improbable.</p>\n\n<p>Caveat: you cannot delete permanently from a filter rule (I imagine Google believes the risk too great and not worth the potential increase in support costs), so those messages would end up in your Trash and get purged after 30 days. This may still be a better situation to find yourself in, depending on your preferences and the volume of spam you get (which could now make it harder for you to recover messages deleted by mistakes).</p>\n\n<p>If cluttering your Trash is not desirable, you could filter those messages to a temporary label instead, then use an Apps Script to periodically delete \"old\" filtered spam from that label. That would ensure that the top of your Trash is clutter-free. If the volume of spam you receive is limited however, deleting might work just fine.</p>\n",
"author": "Phong"
},
"training": false
},
{
"author": "Nick",
"url": "http://webapps.stackexchange.com/questions/54811/when-i-move-spam-to-my-inbox-it-goes-back-into-the-spam-again",
"text": "When I move spam to my inbox it goes back into the spam again",
"entities": [],
"intent": "Filter Spam",
"answer": {
"text": "<p>Okay, this question is still getting a lot of views so I figure it's a good idea to post up the solution for my case at least.</p>\n\n<p>What was happening, is regardless of my Gmail settings, Windows Live Mail was taking over and moving emails back into my spam, even if I used the \"Never send to spam\" filter as recommended by AI E.</p>\n\n<p>To this this, I took the following steps:</p>\n\n<ol>\n<li><p><strong>In Windows Live Mail click the Tools menu, and then click Junk e‑mail Options.</strong></p></li>\n<li><p><strong>Select the protection level you want. In my case I did No automatic filtering which just lets Gmail manage the spam folder entirely on it's own.</strong></p></li>\n</ol>\n\n<p>More info here: <a href=\"http://windows.microsoft.com/en-gb/windows-vista/block-spam-and-other-unwanted-e-mail\" rel=\"nofollow\">http://windows.microsoft.com/en-gb/windows-vista/block-spam-and-other-unwanted-e-mail</a></p>\n\n<p>Hopefully other people find this useful too.</p>\n\n<p>It sounds stupid but I just never thought for a second that Windows Live Mail would so aggressively manage my spam folder, particularly not to constantly move any mail back to the spam after I've flagged it as safe.</p>\n",
"author": "Nick"
},
"training": false
},
{
"author": "sashoalm",
"url": "http://webapps.stackexchange.com/questions/49493/how-to-send-messages-to-spam-in-gmail-filter",
"text": "How to send messages to spam in Gmail filter?",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 7,
"start": 7
}
],
"intent": "Filter Spam",
"answer": {
"text": "<p>I don't believe gmail offers this exact request. Reason being, email marked as spam is used to identify spam globally (not just your account). </p>\n\n<p>Instead you can just create a label called \"myspam\" or anything really.</p>\n\n<ol>\n<li><strong>Create Filter</strong></li>\n<li>From: <code>libero.it</code></li>\n<li>Check [x] Apply the label <img src=\"https://i.stack.imgur.com/SBvCb.png\" alt=\"enter image description here\"></li>\n<li>Click <strong>Choose label...</strong></li>\n<li>Select <strong>New label</strong></li>\n<li>Input <code>myspam</code> <img src=\"https://i.stack.imgur.com/Uan02.png\" alt=\"new label\"></li>\n<li>Click <strong>Create</strong></li>\n</ol>\n",
"author": "justbrowsing"
},
"training": false
},
{
"author": "Senseful",
"url": "http://webapps.stackexchange.com/questions/1307/how-do-i-disable-the-spam-filter-in-gmail",
"text": "How do I disable the spam filter in Gmail?",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 8,
"start": 8
}
],
"intent": "Filter Spam",
"answer": {
"text": "<ol>\n<li>Create a <strong>new filter</strong> in Gmail.</li>\n<li>Enter <code>is:spam</code> in the <strong>Has the words:</strong> field.</li>\n<li>A warning will appear warning you not to use the word <code>is:</code> in the filter, you can safely ignore it by pressing <strong>OK</strong>.</li>\n<li>Check the <strong>Never send it to Spam</strong> checkbox.</li>\n<li>Click <strong>Create Filter</strong>.</li>\n</ol>\n",
"author": "Senseful"
},
"training": false
},
{
"author": "systempuntoout",
"url": "http://webapps.stackexchange.com/questions/10464/how-to-check-your-gmail-spam-label-for-good-emails",
"text": "How to check your Gmail spam label for good emails",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 4,
"start": 4
}
],
"intent": "Filter Spam",
"answer": {
"text": "<p>Just browse the spam and check; you'll get the hang of it pretty fast. Normal emails usually don't have many numbers and strange characters like % or UPPER CASE PRIZES etc. in the message preview, so you can actually browse very quickly. </p>\n\n<p>What I guess you're looking for is an automated way to do this, which would actually be a spam filter. </p>\n",
"author": "pootzko"
},
"training": false
},
{
"text": "Mark large numbers of messages as \"not spam\"",
"intent": "Filter Spam",
"entities": [],
"training": false
},
{
"author": "Howiecamp",
"url": "http://webapps.stackexchange.com/questions/10130/what-are-alternatives-to-postini-for-spam-filtering",
"text": "What are alternatives to Postini for spam filtering?",
"entities": [
{
"text": "Postini",
"entity": "WebService",
"stop": 4,
"start": 4
}
],
"intent": "Filter Spam",
"answer": {
"text": "<p>Leo Laporte gushes about <a href=\"http://mailroute.info/\" rel=\"nofollow\">MailRoute</a>.</p>\n",
"author": "ale"
},
"training": false
},
{
"author": "pahnin",
"url": "http://webapps.stackexchange.com/questions/25581/how-to-remove-spam-filter-for-google-apps-email",
"text": "How to remove spam filter for Google Apps email",
"entities": [
{
"text": "Google",
"entity": "WebService",
"stop": 6,
"start": 6
}
],
"intent": "Filter Spam",
"answer": {
"text": "<p>The DNS record that Google had you add \"to prevent spam\" is a type of <code>TXT</code> record called an <code>SPF</code> (for \"Sender Policy Framework\"). However, it has nothing to do with email that you receive, only email that you send. The SPF basically tells other email servers that only certain locations are authorized to send email on your behalf, in this case, only Google servers.\nWikipedia has a good explanation of <a href=\"http://en.wikipedia.org/wiki/Sender_Policy_Framework\" rel=\"nofollow\">SPF records</a>.</p>\n\n<p>There are several possible reasons that email would not come to your <code>Inbox</code> or <code>Spam</code> folder.</p>\n\n<ul>\n<li>You have forwarding to another address set up. You may also have it set that after messages are forwarded, they are archived or deleted. Check your <code>All Mail</code> and <code>Trash</code> folders to see if there are messages there.</li>\n<li>You may have a filter that is deleting or archiving some messages. To check this, go to the Settings page and open the <code>Filters</code> tab.</li>\n<li>It is possible that mail is not reaching Google's servers. This could be due to several things, including a typo in any of your DNS records, an old MX record that was not removed when you set up Google Apps, or possibly some other reason.</li>\n</ul>\n\n<p>None of these cases has anything to do with Google's spam filter. As far as I know, Google does not make decisions about putting mail in your spam folder or throwing it out. I think that they put it all in the Spam folder and let you handle where ti goes from there (or it gets deleted automatically when it has been there for 30 days).</p>\n",
"author": "Moshe Katz"
},
"training": false
},
{
"author": "Lazer",
"url": "http://webapps.stackexchange.com/questions/5988/does-marking-an-email-as-spam-in-gmail-affect-the-filter-for-everyone",
"text": "Does marking an email as spam in Gmail affect the filter for everyone?",
"entities": [
{
"text": "Gmail",
"entity": "WebService",
"stop": 7,
"start": 7
}