forked from sebischair/NLU-Evaluation-Corpora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebApplicationsCorpus.json
2890 lines (2890 loc) · 186 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",
"entities": [
{
"text": "Facebook",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"answer": {
"text": "<p><a href=\"https://plus.google.com/\">Google+</a>?</p>\n",
"author": "Alex"
},
"training": false,
"inputs": [
"It's an alternative to Facebook.",
"It is an alternative to Facebook.",
"An alternative to Facebook.",
"There is an alternative to Facebook.",
"Facebook is an alternative to it.",
"Alternative to Facebook.",
"The alternative to Facebook is not the same.",
"Facebook is an alternative.",
"The alternative is to use Facebook.",
"Facebook is an alternative to that.",
"Alternative to Facebook"
],
"match": "Alternative to ENTITYNOUN",
"templates": [
"Alternative to ENTITYNOUN",
"Alternatives to ENTITYNOUN with more features?",
"Deleting an account(website) from ENTITYNOUN?",
"Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"How do I delete my ENTITYNOUN account?",
"Is there a catch to ENTITYNOUN's Premier account type?"
]
},
{
"author": "Ivo Flipse",
"url": "http://webapps.stackexchange.com/questions/1/how-do-i-delete-my-facebook-account",
"entities": [
{
"text": "Facebook",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How do I get rid of my Facebook account?",
"I don't know how to uninstall my Facebook account.",
"How do I remove my account from Facebook?",
"How do I get rid of my account on Facebook?",
"How do I uninstall my Facebook account?",
"How do I uninstall my account on Facebook?",
"I don't know how to remove my Facebook account.",
"How do I stop using Facebook?",
"How do I delete my Facebook account?"
],
"match": "How do I delete my ENTITYNOUN account?",
"templates": [
"How do I delete my ENTITYNOUN account?",
"How to delete a ENTITYNOUN account",
"ENTITYNOUN search engine alternatives",
"How do I disable the spam filter in ENTITYNOUN?",
"Alternatives to discontinued ENTITYNOUN Appointment Slots",
"Alternative to ENTITYNOUN"
]
},
{
"author": "Ivo Flipse",
"url": "http://webapps.stackexchange.com/questions/1562/are-there-any-good-pandora-alternatives-with-general-availability-outside-the-us",
"entities": [
{
"text": "Pandora",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Are there any good Pandora alternatives with general availability outside the US?"
],
"match": "Are there any good ENTITYNOUN alternatives with general availability outside the US?",
"templates": [
"Are there any good ENTITYNOUN alternatives with general availability outside the US?",
"Any alternatives to ENTITYNOUN?",
"How to retrieve forgotten ENTITYNOUN Admin password",
"How can I permanently delete my ENTITYNOUN account?",
"How do I sync ENTITYNOUN with my ENTITYNOUN?",
"How can I delete my ENTITYNOUN account?"
]
},
{
"author": "Clare Macrae",
"url": "http://webapps.stackexchange.com/questions/18975/is-it-possible-to-export-my-data-from-trello-to-back-it-up",
"entities": [
{
"text": "Trello",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is it possible to back up my data from Trello?",
"Is it possible to back up my data in Trello?",
"Is there a way to back up my data from Trello?",
"Is it possible to back up my data with Trello?",
"Is it possible to back up my data using Trello?",
"Is it possible to back my data up from Trello?",
"Is it possible to back up my data from the Trello platform?",
"Is it possible to export my data from Trello to back it up?"
],
"match": "Is it possible to export my data from ENTITYNOUN to back it up?",
"templates": [
"Is it possible to export my data from ENTITYNOUN to back it up?",
"How do I transfer my photos from ENTITYNOUN to ENTITYNOUN?",
"How to send messages to spam in ENTITYNOUN filter?",
"How do I change my password on ENTITYNOUN?",
"How do I delete my ENTITYNOUN account?",
"How to retrieve forgotten ENTITYNOUN Admin password"
]
},
{
"author": "Itamar",
"url": "http://webapps.stackexchange.com/questions/28590/is-there-an-online-alternative-to-igoogle",
"entities": [
{
"text": "iGoogle",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is there an alternative to iGoogle online?",
"I want to know if there is an online alternative to iGoogle.",
"I wonder if there is an online alternative to iGoogle.",
"Is there an online alternative to iGoogle"
],
"match": "Is there an online alternative to ENTITYNOUN",
"templates": [
"Is there an online alternative to ENTITYNOUN",
"Are there any good ENTITYNOUN alternatives with general availability outside the US?",
"How to change my ENTITYNOUN password or delete the account?",
"ENTITYNOUN recover password while logged in Iphone",
"Is it possible to export my data from ENTITYNOUN to back it up?",
"How do I change my password on ENTITYNOUN?"
]
},
{
"author": "Rich Armstrong",
"url": "http://webapps.stackexchange.com/questions/18961/how-can-i-remove-myself-from-a-trello-organization",
"entities": [
{
"text": "Trello",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is it possible to remove myself from a Trello organization?",
"How can I get out of a Trello organization?",
"I don't know how to remove myself from a Trello organization.",
"Is it possible to remove myself from a Trello organization.",
"What can I do to remove myself from a Trello organization?",
"How can I remove myself from a Trello organization?"
],
"match": "How can I remove myself from a ENTITYNOUN organization?",
"templates": [
"How can I remove myself from a ENTITYNOUN organization?",
"How do I delete my ENTITYNOUN account?",
"Any alternatives to ENTITYNOUN for your domain?",
"Mark large numbers of messages as \"not spam\"",
"Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"ENTITYNOUN Contact Synchronization on the iPhone 3G"
]
},
{
"author": "x3ja",
"url": "http://webapps.stackexchange.com/questions/79/how-do-i-transfer-my-photos-from-flickr-to-picasa",
"entities": [
{
"text": "Flickr",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
},
{
"text": "Picasa",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is it possible to transfer my photos from Flickr to Picasa?",
"I want to transfer my photos from Flickr to Picasa.",
"How do I transfer my photos from Flickr to Picasa?"
],
"match": "How do I transfer my photos from ENTITYNOUN to ENTITYNOUN?",
"templates": [
"How do I transfer my photos from ENTITYNOUN to ENTITYNOUN?",
"How can I backup my ENTITYNOUN hosted blog?",
"Q&A Platform similar to ENTITYNOUN model?",
"What are alternatives to ENTITYNOUN for spam filtering?",
"How can I delete my ENTITYNOUN account?",
"How can I get ENTITYNOUN search to show only matches within 5 miles of me?"
]
},
{
"author": "Ivo Flipse",
"url": "http://webapps.stackexchange.com/questions/3/how-do-i-sync-google-calendar-with-my-outlook-calendar",
"entities": [
{
"text": "Google Calendar",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
},
{
"text": "Outlook Calendar",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How do I sync Google Calendar with my Outlook Calendar?"
],
"match": "How do I sync ENTITYNOUN with my ENTITYNOUN?",
"templates": [
"How do I sync ENTITYNOUN with my ENTITYNOUN?",
"How do I sync ENTITYNOUN ENTITYNOUN & ENTITYNOUN?",
"How to change my ENTITYNOUN password or delete the account?",
"How do I disable the spam filter in ENTITYNOUN?",
"Deleting an account(website) from ENTITYNOUN?",
"Does moving a mail to the IMAP spam folder trains ENTITYNOUN's spam filter?"
]
},
{
"author": "InquilineKea",
"url": "http://webapps.stackexchange.com/questions/17484/archive-export-all-the-blog-entries-from-a-rss-feed-in-google-reader",
"entities": [
{
"text": "Google Reader",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Archive/export all the blog entries from a RSS feed in Google Reader"
],
"match": "Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"templates": [
"Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"How can I backup my ENTITYNOUN hosted blog?",
"ENTITYNOUN recover password while logged in Iphone",
"Q&A Platform similar to ENTITYNOUN model?",
"When I move spam to my inbox it goes back into the spam again",
"Deleting an account(website) from ENTITYNOUN?"
]
},
{
"entities": [
{
"text": "160by2",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"training": false,
"inputs": [
"How can I get rid of my 160by2 account?",
"I don't know how to remove my 160by2 account.",
"I don't know how to uninstall my 160by2 account.",
"What can I do to remove my 160by2 account?",
"How can I delete my 160by2 account?"
],
"match": "How can I delete my ENTITYNOUN account?",
"templates": [
"How can I delete my ENTITYNOUN account?",
"How do I delete my ENTITYNOUN account?",
"Is there a HTML alternative to ENTITYNOUN?",
"How to retrieve a stolen ENTITYNOUN account's password?",
"Good wireframing apps?",
"Can I Share/Sync My ENTITYNOUN Web Albums Automatically to My ENTITYNOUN Account?"
]
},
{
"author": "tobeannounced",
"url": "http://webapps.stackexchange.com/questions/3557/how-can-i-permanently-delete-my-yahoo-mail-account",
"entities": [
{
"text": "Yahoo mail",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is it possible to permanently remove my Yahoo mail account?",
"How can I stop using my Yahoo mail account?",
"I don't know how to permanently remove my Yahoo mail account.",
"How can I get rid of my Yahoo mail account?",
"How can I uninstall my Yahoo mail account?",
"How can I remove my Yahoo mail account?",
"How can I permanently delete my Yahoo mail account?"
],
"match": "How can I permanently delete my ENTITYNOUN account?",
"templates": [
"How can I permanently delete my ENTITYNOUN account?",
"How do I delete my ENTITYNOUN account?",
"How do I disable the spam filter in ENTITYNOUN?",
"Alternatives to discontinued ENTITYNOUN Appointment Slots",
"Sync not export ENTITYNOUN events with ENTITYNOUN calendar",
"ENTITYNOUN Bookmarks and ENTITYPRODUCT Bookmark Sync -- Different?"
]
},
{
"author": "Joel Dean",
"url": "http://webapps.stackexchange.com/questions/31784/deleting-an-accountwebsite-from-google-analytics",
"entities": [
{
"text": "Google Analytics",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Deleting an account(website) from Google Analytics?"
],
"match": "Deleting an account(website) from ENTITYNOUN?",
"templates": [
"Deleting an account(website) from ENTITYNOUN?",
"How can I permanently delete my ENTITYNOUN account?",
"How do I change my password on ENTITYNOUN?",
"Is it possible to export my data from ENTITYNOUN to back it up?",
"Stopping spam emails in ENTITYNOUN by pattern",
"How do I transfer my photos from ENTITYNOUN to ENTITYNOUN?"
]
},
{
"author": "Tshepang",
"url": "http://webapps.stackexchange.com/questions/9638/how-to-delete-my-imgur-account",
"entities": [
{
"text": "imgur",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How to remove my account from imgur?",
"Is it possible to remove my imgur account?",
"How can I remove my account from imgur?",
"How do I remove my account from imgur?",
"How to get rid of my imgur account?",
"How to get rid of my account on imgur?",
"Is there a way to remove my imgur account?",
"Is there a way to remove my account from imgur?",
"How to delete my imgur account?"
],
"match": "How to delete my ENTITYNOUN account?",
"templates": [
"How to delete my ENTITYNOUN account?",
"How can I delete my ENTITYNOUN account?",
"ENTITYNOUN (registration bypasser) alternative that doesn't suck?",
"How do I sync ENTITYNOUN ENTITYNOUN & ENTITYNOUN?",
"How can I sync my ENTITYNOUN with ENTITYNOUN?",
"Does marking an email as spam in ENTITYNOUN affect the filter for everyone?"
]
},
{
"author": "Jerry101",
"url": "http://webapps.stackexchange.com/questions/103536/how-to-change-my-uber-password-or-delete-the-account",
"entities": [
{
"text": "Uber",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How to change my Uber password or delete the account?"
],
"match": "How to change my ENTITYNOUN password or delete the account?",
"templates": [
"How to change my ENTITYNOUN password or delete the account?",
"How to delete a ENTITYNOUN account",
"Mark large numbers of messages as \"not spam\"",
"Embedding stop time in a ENTITYNOUN video link",
"Any alternatives to ENTITYNOUN for your domain?",
"Totally Blocking Spam To ENTITYNOUN Account"
]
},
{
"author": "Abhijeet",
"url": "http://webapps.stackexchange.com/questions/23501/how-to-delete-a-sify-mail-account",
"entities": [
{
"text": "Sify Mail",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How to get rid of a Sify Mail account.",
"Sify Mail account can be deleted.",
"How to remove a Sify Mail account.",
"There is a Sify Mail account that needs to be deleted.",
"There is a Sify Mail account.",
"The Sify Mail account needs to be deleted.",
"The Sify Mail account can be deleted.",
"A Sify Mail account can be deleted.",
"How to uninstall a Sify Mail account.",
"How to get rid of a Sify Mail account",
"How to delete a Sify Mail account"
],
"match": "How to delete a ENTITYNOUN account",
"templates": [
"How to delete a ENTITYNOUN account",
"How can I remove myself from a ENTITYNOUN organization?",
"ENTITYNOUN (registration bypasser) alternative that doesn't suck?",
"Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"What are the alternatives to ENTITYNOUN/Meetup for Event Planning",
"Can I Share/Sync My ENTITYNOUN Web Albums Automatically to My ENTITYNOUN Account?"
]
},
{
"author": "Alex",
"url": "http://webapps.stackexchange.com/questions/52015/how-to-permanently-delete-a-37signals-id",
"entities": [
{
"text": "37signals",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How to permanently remove a 37signals ID.",
"A 37signals ID can be permanently deleted.",
"There is a 37signals ID.",
"A 37signals ID can be deleted permanently.",
"There is a 37signals ID that needs to be permanently deleted.",
"How to permanently remove a 37signals ID",
"A 37signals ID can be deleted.",
"How to remove a 37signals ID.",
"How to permanently destroy a 37signals ID.",
"How to permanently uninstall a 37signals ID.",
"How to permanently delete a 37signals ID"
],
"match": "How to permanently delete a ENTITYNOUN ID",
"templates": [
"How to permanently delete a ENTITYNOUN ID",
"How to change my ENTITYNOUN password or delete the account?",
"ENTITYNOUN Contact Synchronization on the iPhone 3G",
"Do emails auto-forwarded from one ENTITYNOUN account to another stop if marked as spam?",
"Does moving a mail to the IMAP spam folder trains ENTITYNOUN's spam filter?",
"How to remove spam filter for ENTITYNOUN Apps email"
]
},
{
"author": "citadelgrad",
"url": "http://webapps.stackexchange.com/questions/5578/how-can-i-delete-my-hunch-account",
"entities": [
{
"text": "Hunch",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"How can I get rid of my Hunch account?",
"I don't know how to remove my Hunch account.",
"I don't know how to uninstall my Hunch account.",
"How can I stop using my Hunch account?",
"How do I remove my account from Hunch?",
"How can I remove my account from Hunch?",
"How can I delete my Hunch account?"
],
"match": "How can I delete my ENTITYNOUN account?",
"templates": [
"How can I delete my ENTITYNOUN account?",
"How do I delete my ENTITYNOUN account?",
"How can I auto-delete some spam from ENTITYNOUN?",
"Mark large numbers of messages as \"not spam\"",
"Discarding spam mail faster in ENTITYNOUN",
"Photo Sharing Site (alternative to ENTITYNOUN) supporting ENTITYNOUN sign in?"
]
},
{
"author": "Andrew Андрей Листочкин",
"url": "http://webapps.stackexchange.com/questions/2049/any-alternatives-to-google-apps-for-your-domain",
"entities": [
{
"text": "Google Apps",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is there any other way to use Google Apps for your domain?",
"Is there any other way to use your domain with Google Apps?",
"Is there any other way to use Google Apps for your domain.",
"Any alternatives to Google Apps for your domain?"
],
"match": "Any alternatives to ENTITYNOUN for your domain?",
"templates": [
"Any alternatives to ENTITYNOUN for your domain?",
"Alternatives to ENTITYNOUN",
"How do I delete my ENTITYNOUN profile?",
"ENTITYNOUN user set up through ENTITYNOUN Apps can't change their password",
"Stopping spam emails in ENTITYNOUN by pattern",
"How can I export track.scrobble data from ENTITYNOUN?"
]
},
{
"author": "R.K.",
"url": "http://webapps.stackexchange.com/questions/5118/evernote-alternative",
"entities": [
{
"text": "Evernote",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"There is an alternative to Evernote.",
"An alternative to Evernote.",
"It's an alternative to Evernote.",
"This is an alternative to Evernote.",
"It is an alternative to Evernote.",
"The alternative is Evernote.",
"There is an alternative to the service Evernote.",
"The alternative is called Evernote.",
"It is an alternative to the service Evernote.",
"It's an alternative to the service Evernote.",
"Evernote alternative"
],
"match": "ENTITYNOUN alternative",
"templates": [
"ENTITYNOUN alternative",
"ENTITYNOUN alternatives?",
"How to retrieve forgotten ENTITYNOUN Admin password",
"ENTITYNOUN user set up through ENTITYNOUN Apps can't change their password",
"How do I change my password on ENTITYNOUN?",
"How to send messages to spam in ENTITYNOUN filter?"
]
},
{
"author": "Aaron",
"url": "http://webapps.stackexchange.com/questions/1899/alternatives-to-librarything",
"entities": [
{
"text": "LibraryThing",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"answer": {
"text": "<p>I like <a href=\"http://www.goodreads.com/\" rel=\"nofollow\">goodreads</a></p>\n",
"author": "Philippe Mongeau"
},
"training": false,
"inputs": [
"There are alternatives to LibraryThing.",
"There are other alternatives to LibraryThing.",
"They have alternatives to LibraryThing.",
"You can find alternatives to LibraryThing.",
"There are other options to LibraryThing.",
"There are other ways to approach LibraryThing.",
"Some alternatives to LibraryThing are available.",
"There are other ways to go to LibraryThing.",
"There are other alternatives to the LibraryThing service.",
"There are other alternatives to the LibraryThing.",
"Alternatives to LibraryThing"
],
"match": "Alternatives to ENTITYNOUN",
"templates": [
"Alternatives to ENTITYNOUN",
"Is there an online alternative to ENTITYNOUN",
"How can I get ENTITYNOUN search to show only matches within 5 miles of me?",
"How can I backup my ENTITYNOUN hosted blog?",
"Do emails auto-forwarded from one ENTITYNOUN account to another stop if marked as spam?",
"Does marking an email as spam in ENTITYNOUN affect the filter for everyone?"
]
},
{
"author": "Evan Plaice",
"url": "http://webapps.stackexchange.com/questions/2148/what-are-the-alternatives-to-facebook-meetup-for-event-planning",
"entities": [
{
"text": "Facebook",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"What are the alternatives to Facebook?",
"There are alternatives to Facebook for event planning.",
"Are there alternatives to Facebook for event planning?",
"There are alternatives to Facebook.",
"What are alternatives to Facebook?",
"What are the alternatives to Facebook for event planning?",
"What are the alternatives to Facebook/Meetup for Event Planning"
],
"match": "What are the alternatives to ENTITYNOUN/Meetup for Event Planning",
"templates": [
"What are the alternatives to ENTITYNOUN/Meetup for Event Planning",
"Alternative to ENTITYNOUN",
"How can I backup my ENTITYNOUN hosted blog?",
"How do I sync ENTITYNOUN with my ENTITYNOUN?",
"Sync not export ENTITYNOUN events with ENTITYNOUN calendar",
"Can I Share/Sync My ENTITYNOUN Web Albums Automatically to My ENTITYNOUN Account?"
]
},
{
"author": "tobeannounced",
"url": "http://webapps.stackexchange.com/questions/3391/is-there-a-free-and-privacy-aware-alternative-to-google",
"entities": [
{
"text": "Google",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is there an alternative to Google?",
"Is there a free and privacy-aware alternative to Google?"
],
"match": "Is there a free and privacy-aware alternative to ENTITYNOUN?",
"templates": [
"Is there a free and privacy-aware alternative to ENTITYNOUN?",
"Photo Sharing Site (alternative to ENTITYNOUN) supporting ENTITYNOUN sign in?",
"Embedding stop time in a ENTITYNOUN video link",
"How can I remove myself from a ENTITYNOUN organization?",
"How to send messages to spam in ENTITYNOUN filter?",
"How can I permanently delete my ENTITYNOUN account?"
]
},
{
"author": "Steve Brown",
"url": "http://webapps.stackexchange.com/questions/33904/what-alternatives-to-google-product-search-exist",
"entities": [
{
"text": "Google",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"What alternatives to Google Product Search exist?"
],
"match": "What alternatives to ENTITYNOUN Product Search exist?",
"templates": [
"What alternatives to ENTITYNOUN Product Search exist?",
"Alternative to ENTITYNOUN",
"Change subject line in new ENTITYNOUN compose window",
"Sync not export ENTITYNOUN events with ENTITYNOUN calendar",
"How do I delete my ENTITYNOUN profile?",
"How can I delete my ENTITYNOUN account?"
]
},
{
"author": "Mcradle",
"url": "http://webapps.stackexchange.com/questions/7655/photo-sharing-site-alternative-to-flickr-supporting-openid-sign-in",
"entities": [
{
"text": "flickr",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
},
{
"text": "OpenID",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Photo Sharing Site (alternative to flickr) supporting OpenID sign in?"
],
"match": "Photo Sharing Site (alternative to ENTITYNOUN) supporting ENTITYNOUN sign in?",
"templates": [
"Photo Sharing Site (alternative to ENTITYNOUN) supporting ENTITYNOUN sign in?",
"ENTITYNOUN search engine alternatives",
"How to send messages to spam in ENTITYNOUN filter?",
"Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"How do I delete my ENTITYNOUN account?",
"Change subject line in new ENTITYNOUN compose window"
]
},
{
"author": "grm",
"url": "http://webapps.stackexchange.com/questions/1763/any-good-alternative-to-google-alerts",
"entities": [
{
"text": "Google Alerts",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Any good alternative to Google Alerts?"
],
"match": "Any good alternative to ENTITYNOUN?",
"templates": [
"Any good alternative to ENTITYNOUN?",
"Any alternatives to ENTITYNOUN?",
"Mark large numbers of messages as \"not spam\"",
"ENTITYNOUN not syncing calendars that have been added by URL with Windows 10 Calendar",
"How do I transfer my photos from ENTITYNOUN to ENTITYNOUN?",
"Get rid of Russian junk from my ENTITYNOUN"
]
},
{
"author": "Wil",
"url": "http://webapps.stackexchange.com/questions/3599/good-wireframing-apps",
"entities": [],
"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,
"inputs": [
"Good wireframing apps?",
"Is there any good wireframing apps?",
"Is there good wireframing apps?",
"Is there a good wireframing app?",
"Is there a good wireframing apps?",
"Good wireframing applications?",
"Do you think the wireframing apps are good?",
"There are good wireframing apps.",
"Are there good wireframing apps?",
"How about good wireframing apps?",
"Good wireframing apps?"
],
"match": "Good wireframing apps?",
"templates": [
"Good wireframing apps?",
"Email ENTITYNOUN Form daily?",
"Does moving a mail to the IMAP spam folder trains ENTITYNOUN's spam filter?",
"How can I remove myself from a ENTITYNOUN organization?",
"How can I export track.scrobble data from ENTITYNOUN?",
"How do I transfer my photos from ENTITYNOUN to ENTITYNOUN?"
]
},
{
"author": "Nacho",
"url": "http://webapps.stackexchange.com/questions/24328/is-there-a-html-alternative-to-prezi",
"entities": [
{
"text": "Prezi",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is there an alternative to Prezi?",
"There is an alternative to Prezi.",
"Is there a better way to use Prezi?",
"Is there a way to use Prezi in a different way?",
"Is there another way to use Prezi?",
"Is there an alternative to Prezi.",
"Is there a alternative to Prezi?",
"Is there a way to use Prezi in a different manner?",
"Is there a HTML alternative to Prezi?"
],
"match": "Is there a HTML alternative to ENTITYNOUN?",
"templates": [
"Is there a HTML alternative to ENTITYNOUN?",
"ENTITYNOUN search engine alternatives",
"ENTITYNOUN Contact Synchronization on the iPhone 3G",
"How can I permanently delete my ENTITYNOUN account?",
"How do I sync ENTITYNOUN with my ENTITYNOUN?",
"Is it possible to export my data from ENTITYNOUN to back it up?"
]
},
{
"author": "Julius A",
"url": "http://webapps.stackexchange.com/questions/3784/any-alternatives-to-google-streetview",
"entities": [
{
"text": "Google Streetview",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Any alternatives to Google Streetview?"
],
"match": "Any alternatives to ENTITYNOUN?",
"templates": [
"Any alternatives to ENTITYNOUN?",
"Is there a HTML alternative to ENTITYNOUN?",
"How do I sync ENTITYNOUN with my ENTITYNOUN?",
"How can I get ENTITYNOUN search to show only matches within 5 miles of me?",
"Deleting an account(website) from ENTITYNOUN?",
"Email ENTITYNOUN Form daily?"
]
},
{
"author": "Ben",
"url": "http://webapps.stackexchange.com/questions/5011/zencoder-alternatives",
"entities": [
{
"text": "Zencoder",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"Is there any Zencoder alternatives?",
"Is there a Zencoder alternative?",
"Zencoder alternatives?",
"Is there an alternative to Zencoder?",
"Are there Zencoder alternatives?",
"Do you have alternatives to Zencoder?",
"What about Zencoder alternatives?",
"Is there any other Zencoder alternatives?",
"What are the Zencoder alternatives?",
"What are Zencoder alternatives?",
"Zencoder alternatives?"
],
"match": "ENTITYNOUN alternatives?",
"templates": [
"ENTITYNOUN alternatives?",
"What alternatives to ENTITYNOUN Product Search exist?",
"Email ENTITYNOUN Form daily?",
"How do I disable the spam filter in ENTITYNOUN?",
"How do I delete my ENTITYNOUN account?",
"How can I auto-delete some spam from ENTITYNOUN?"
]
},
{
"author": "thSoft",
"url": "http://webapps.stackexchange.com/questions/39518/alternatives-to-discontinued-google-calendar-appointment-slots",
"entities": [
{
"text": "Google Calendar",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"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,
"inputs": [
"There are alternatives to the discontinued Google Calendar Appointment Slots.",
"There are alternatives to discontinued Google Calendar Appointment Slots.",
"There are other alternatives to discontinued Google Calendar Appointment Slots.",
"There are other alternatives to the discontinued Google Calendar Appointment Slots.",
"Alternatives to discontinued Google Calendar Appointment Slots"
],
"match": "Alternatives to discontinued ENTITYNOUN Appointment Slots",
"templates": [
"Alternatives to discontinued ENTITYNOUN Appointment Slots",
"Are there any good ENTITYNOUN alternatives with general availability outside the US?",
"Archive/export all the blog entries from a RSS feed in ENTITYNOUN",
"How can I delete my ENTITYNOUN account?",
"Is there a catch to ENTITYNOUN's Premier account type?",
"ENTITYNOUN Contact Synchronization on the iPhone 3G"
]
},
{
"author": "Simon",
"url": "http://webapps.stackexchange.com/questions/14417/qa-platform-similar-to-stack-exchange-model",
"entities": [
{
"text": "Stack Exchange",
"entityType": "WebService",
"holmesIdentifier": "ENTITYNOUN"
}
],
"answer": {