forked from sebischair/NLU-Evaluation-Corpora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAskUbuntuCorpus.json
5421 lines (5421 loc) · 391 KB
/
AskUbuntuCorpus.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": "AskUbuntuCorpus",
"desc": "Visit https://github.com/sebischair/NLU-Evaluation-Corpora for more information",
"lang": "en",
"sentences": [
{
"author": "Olivier Lalonde",
"url": "http://askubuntu.com/questions/14378/what-software-can-i-use-to-view-epub-documents",
"entities": [],
"answer": {
"text": "<p>You can use calibre software for viewing .epub documents.</p>\n\n<p>To install calibre from terminal:</p>\n\n<pre><code>sudo apt-get install calibre\n</code></pre>\n\n<p>Or click the icon below.</p>\n\n<h1><a href=\"http://packages.ubuntu.com/calibre\" rel=\"nofollow noreferrer\">calibre</a> <a href=\"http://apt.ubuntu.com/p/calibre\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install calibre\"></a></h1>\n\n<hr>\n\n<p>If you don't want to launch the full <code>calibre</code> client just to view your ebook files you can add a <code>.desktop</code> launcher to <code>calibre</code>'s inbuilt ebook viewer:</p>\n\n<ol>\n<li><p>Create a new <code>.desktop</code> file in <code>~/.local/share/applications</code>:</p>\n\n<pre><code>gedit ~/.local/share/applications/calibre-ebook-viewer.desktop\n</code></pre></li>\n<li><p>Copy and paste the following passage into the file:</p>\n\n<pre><code>#!/usr/bin/env xdg-open\n\n[Desktop Entry]\nVersion=1.0\nType=Application\nTerminal=false\nIcon=calibre\nExec=ebook-viewer\nName=Calibre Ebook Viewer\nComment=Display .epub files and other ebook formats\nMimeType=application/x-mobipocket-ebook;application/epub+zip;\nStartupWMClass=calibre-ebook-viewer\n</code></pre></li>\n<li><p>Save the file. You should now be able to launch Calibre's inbuilt ebook viewer both from the dash and through the right click \"Open with\" menu.</p></li>\n</ol>\n",
"author": "karthick87"
},
"training": false,
"inputs": [
"Is there any software that I can use to view epub documents?",
"What programs can I use to view epub documents?",
"What is the best software to view epub documents?",
"What software can I use to view books?",
"How can I view epub documents?",
"Is there any software that I can use to view the documents?",
"What programs can I use to view documents?",
"Is there any software that I can use to view documents in epub?",
"What software can I use to view files in epub format?",
"What software can I use to view epub documents?",
"What software can I use to view epub documents?"
],
"match": "What software can I use to view epub documents?",
"templates": [
"What software can I use to view epub documents?",
"Is there any program for fuzzy string matching which provides a match score?",
"Upgrading from Ubuntu ENTITYNOUN to ENTITYNOUN",
"How to upgrade from Ubuntu ENTITYNOUN to ENTITYNOUN?",
"Upgrade ENTITYNOUN to ENTITYNOUN using startup disk",
"How to record my screen?"
]
},
{
"author": "NES",
"url": "http://askubuntu.com/questions/18495/which-pdf-viewer-would-you-recommend",
"entities": [],
"answer": {
"text": "<p>Here are some well known PDF readers:</p>\n\n<ul>\n<li><a href=\"https://www.foxitsoftware.com/products/pdf-reader/\" rel=\"noreferrer\"><strong>Foxit Reader</strong></a> - View, create, convert, annotate, print, collaborate, share, fill forms and sign.</li>\n<li><a href=\"http://packages.ubuntu.com/xpdf\" rel=\"noreferrer\"><strong>xpdf</strong></a> - <a href=\"http://apt.ubuntu.com/p/xpdf\" rel=\"noreferrer\">Install xpdf</a> \"Xpdf is a small and efficient program which uses standard X fonts\". Lightweight, but with outdated interface.</li>\n<li><a href=\"http://packages.ubuntu.com/evince\" rel=\"noreferrer\"><strong>evince</strong></a> - <a href=\"http://apt.ubuntu.com/p/evince\" rel=\"noreferrer\">Install evince</a> Evince is a document viewer for multiple document formats. Used by default on Gnome.</li>\n<li><a href=\"http://packages.ubuntu.com/kpdf\" rel=\"noreferrer\"><strong>kpdf</strong></a> - <a href=\"http://apt.ubuntu.com/p/kpdf\" rel=\"noreferrer\">Install kpdf</a> KPDF is a pdf viewer based on xpdf for KDE 3.</li>\n<li><a href=\"http://packages.ubuntu.com/gv\" rel=\"noreferrer\"><strong>gv</strong></a> - <a href=\"http://apt.ubuntu.com/p/gv\" rel=\"noreferrer\">Install gv</a> - an old lightweight pdf viewer with an old interface. Size of the package is only 580k. gv is an X front-end for the Ghostscript PostScript(TM) interpreter.</li>\n<li><a href=\"http://packages.ubuntu.com/okular\" rel=\"noreferrer\"><strong>okular</strong></a> - <a href=\"http://apt.ubuntu.com/p/okular\" rel=\"noreferrer\">Install okular</a> - KDE pdf viewer, requires many KDE prerequisites. Can easily copy text and images.</li>\n<li>acroread - Adobe Acrobat Reader, no longer supported for Linux by Adobe, seems to be no longer supported by Ubuntu.</li>\n</ul>\n\n<p>Note that most Linux PDF viewers <a href=\"https://www.linux.com/news/software/applications/792447-3-alternatives-to-the-adobe-pdf-reader-on-linux/\" rel=\"noreferrer\">don't provide</a> the advanced capabilities of PDF.</p>\n",
"author": "karthick87"
},
"training": false,
"inputs": [
"Which PDF viewer would you recommend?",
"Which PDF viewer would you use?",
"Which PDF viewer do you recommend?",
"What is the best PDF viewer to use?",
"Which PDF viewer should I use?",
"Which PDF viewer do you prefer?",
"Which PDF viewer is best?",
"Which PDF viewer do you like?",
"Which PDF viewer do you like best?",
"Which PDF viewer would be best?",
"Which PDF Viewer would you recommend?"
],
"match": "Which PDF Viewer would you recommend?",
"templates": [
"Which PDF Viewer would you recommend?",
"Is there any software that will do face recognition in photos?",
"How can I install a ENTITYPRODUCT laser printer on Ubuntu",
"shutdown 5:30pm every day",
"How To Install ENTITYPRODUCT printer in ENTITYNOUN ? I tried the method for LBP2900 but it didnt work",
"Installing ENTITYPRODUCT on Ubuntu ENTITYNOUN"
]
},
{
"author": "RolandiXor",
"url": "http://askubuntu.com/questions/48299/what-ides-are-available-for-ubuntu",
"entities": [],
"answer": {
"text": "<h1><a href=\"http://www.geany.org/\" rel=\"nofollow noreferrer\">Geany</a> <a href=\"https://apps.ubuntu.com/cat/applications/geany\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install geany\"></a></h1>\n\n<blockquote>\n <p>[Geany] is a text editor using the GTK2 toolkit with basic features of an integrated development environment. It was developed to provide a small and fast IDE, which has only a few dependencies from other packages. It supports many filetypes and has some nice features. My favorite so far. </p>\n</blockquote>\n\n<p><a href=\"http://www.geany.org/Main/AllFiletypes\" rel=\"nofollow noreferrer\">Supported File Types</a></p>\n\n<p><img src=\"https://i.stack.imgur.com/gT8HU.png\" alt=\"enter image description here\"></p>\n",
"author": "wojox"
},
"training": false,
"inputs": [
"What are theIDEs available for Ubuntu?",
"What are theIDEs that are available for Ubuntu?",
"What are theIDEs available?",
"What are theIDEs that can be used for Ubuntu?",
"What programs are available for Ubuntu?",
"What are theIDEs available for Linux?",
"What are theIDEs that are available?",
"Is there anyIDEs available for Ubuntu?",
"What are theIDEs that are available for Linux?",
"What are theIDEs that are available forUbuntu?",
"What IDEs are available for Ubuntu?"
],
"match": "What IDEs are available for Ubuntu?",
"templates": [
"What IDEs are available for Ubuntu?",
"What ENTITYPRODUCT clients are available?",
"How to Install ENTITYPRODUCT Laser Printer on Ubuntu?",
"How to Shut down Ubuntu by using keyboard?",
"How to partially upgrade Ubuntu ENTITYNOUN from Ubuntu ENTITYNOUN?",
"Upgrade from ENTITYNOUN to ENTITYNOUN"
]
},
{
"author": "Mark Davidson",
"url": "http://askubuntu.com/questions/622/whats-the-best-mind-mapping-software",
"entities": [],
"answer": {
"text": "<p>I like <a href=\"https://apps.ubuntu.com/cat/applications/freemind\">FreeMind <img src=\"https://i.stack.imgur.com/WMz4X.png\" alt=\"Install freemind\"></a> very much, which is a Java mindmapping tool. Colleagues of me like <a href=\"http://www.xmind.net/\">XMind</a> most.</p>\n",
"author": "ddeimeke"
},
"training": false,
"inputs": [
"What's the best software for mind mapping?",
"What is the best mind mapping software?",
"What is the best software for mind mapping?",
"What's the best mind mapping software?",
"What is the best Mind mapping software?",
"The best mind mapping software?",
"Which Mind Mapping Software is the best?",
"What's the best software to use for mind mapping?",
"What is the best Mind Mapping Software?",
"What's the best Mind mapping software?",
"What's the best Mind Mapping Software?"
],
"match": "What's the best Mind Mapping Software?",
"templates": [
"What's the best Mind Mapping Software?",
"What blog editor software are available?",
"Shutdown after a certain time",
"How Do I Install ENTITYPRODUCT Printer in Ubuntu ENTITYNOUN?",
"Upgrading from ENTITYNOUN to ENTITYNOUN how much space is needed?",
"Is any offline upgrade from ENTITYNOUN to ENTITYNOUN possible?"
]
},
{
"author": "Benjamin",
"url": "http://askubuntu.com/questions/22871/software-to-read-a-qr-code",
"entities": [],
"answer": {
"text": "<p><strong>FOR QR CODE</strong></p>\n\n<p>Install <a href=\"https://launchpad.net/ubuntu/+source/libdecodeqr-examples\" rel=\"nofollow noreferrer\">libdecodeqr-examples</a> from the repositories,</p>\n\n<p>Use the program, <code>libdecodeqr-simpletest</code> provided by the package to read your QR encoded image</p>\n\n<p>EXAMPLE:</p>\n\n<p>running this command to read one of the test samples in the examples img folder</p>\n\n<pre><code>libdecodeqr-simpletest /usr/share/doc/libdecodeqr-examples/img/debian.or.jp.qr.jpg\n</code></pre>\n\n<p>Gives the decoded output in the console.</p>\n\n<pre><code>libdecodeqr version 0.9.3 ($Rev: 42 $)\nSTATUS=2080\n\n\nhttp://www.debian.or.jp \n\nMEBKM:TITLE:DebianJP;URL:http\\://www.debian.or.jp;;\n</code></pre>\n\n<p>as can be seen a url was encoded in the file</p>\n\n<p>There is also a sample application that works with your webcam called libdecodeqr-webcam\nyou need a webcam to use this, I have not tested it.</p>\n\n<p>IF you would like to generate QR code you can install qrencode from the repositories.</p>\n\n<pre><code>cat input.txt | qrencode -s 10 -o test.png\n</code></pre>\n\n<p>The above will encode the information in the input.txt file in an image file called test.png.</p>\n\n<p>or you can input text from the console with;</p>\n\n<pre><code>qrencode -s 10 -o ubuntu.png http://www.ubuntu.com\n</code></pre>\n\n<p>The above will generate a QR encoded image called ubuntu.png with the url <a href=\"http://www.ubuntu.com\" rel=\"nofollow noreferrer\">http://www.ubuntu.com</a> encoded in it. </p>\n\n<p><strong>FOR DATAMATRIX</strong></p>\n\n<p>Install <a href=\"https://launchpad.net/ubuntu/+source/libdmtx-utils\" rel=\"nofollow noreferrer\">libdmtx-utils</a> from the repository and try using the tools it provides.</p>\n\n<p>Libdmtx is a library for reading and writing Data Matrix 2D barcodes,\ntwo-dimensional symbols that hold a dense pattern of data with built-in error\ncorrection.</p>\n\n<pre><code>dmtxwrite - create Data Matrix barcodes, simple example;\n\ndmtxwrite -o image.png input.txt\n</code></pre>\n\n<p>This will encode text contained in input.txt in current directory to an image, image.png in current directory.</p>\n\n<p>dmtxread - scan Data Matrix barcodes, simple example;</p>\n\n<pre><code>dmtxread image.png\n</code></pre>\n\n<p>Reads the encoded image.png and writes the decoded messages to\nstandard output.</p>\n\n<ul>\n<li>See some tips here: <a href=\"http://libdmtx.wikidot.com/helpful-tips\" rel=\"nofollow noreferrer\">http://libdmtx.wikidot.com/helpful-tips</a></li>\n<li>Home page: <a href=\"http://www.libdmtx.org/\" rel=\"nofollow noreferrer\">http://www.libdmtx.org/</a></li>\n<li>Resources: <a href=\"http://www.libdmtx.org/resources.php\" rel=\"nofollow noreferrer\">http://www.libdmtx.org/resources.php</a></li>\n</ul>\n",
"author": "Sabacon"
},
"training": false,
"inputs": [
"Is there a software that can read a QR code?",
"Is it possible to read a QR code with software?",
"There is a software that can read a QR code.",
"Is it possible to read aQR code with software?",
"Is there a software that can read aQR code?",
"Is it possible to use software to read a code?",
"Is there software that can read aQR code?",
"There is a software that can read aQR code.",
"Is there a way to read aQR code?",
"Is there a way to read a QR code?",
"Software to read a QR code?"
],
"match": "Software to read a QR code?",
"templates": [
"Software to read a QR code?",
"Is there an SSH connection manager?",
"Upgrading Ubuntu Server ENTITYNOUN to ENTITYNOUN",
"How to record my screen?",
"Is there an upgrade procedure from ENTITYNOUN to ENTITYNOUN",
"Doubts regarding the ENTITYNOUN upgrade (is it inevitable and unavoidable?)"
]
},
{
"author": "Vijay",
"url": "http://askubuntu.com/questions/37548/pdf-to-word-conversion-software",
"entities": [],
"answer": {
"text": "<p><code>openoffice</code> (or alternatively the <code>libreoffice</code> fork) both have pdf import plugins and .doc export functionality... though both aspects suffer from conversion issues AFAIK. \nBy this I mean that the conversion fidelity isn't always 100%. </p>\n\n<p><strong>Abiword</strong> also works in a similar way, if OpenOffice doesn't work on your system.</p>\n",
"author": "jmetz"
},
"training": false,
"inputs": [
"PDF to word conversion software?",
"PDF to word conversion?",
"Is it possible to convert PDF to word?",
"Is PDF to word conversion software available?",
"Is it possible to convert PDF to Word?",
"How about a PDF to word conversion software?",
"How about a PDF to word conversion program?",
"How about PDF to word conversion?",
"Is it possible to convert PDF to words?",
"How about PDF to word conversion software?",
"PDF to word conversion software?"
],
"match": "PDF to word conversion software?",
"templates": [
"PDF to word conversion software?",
"What do you use to edit Microsoft ENTITYPRODUCT documents (docx)?",
"Do I need to uninstall ENTITYNOUN to upgrade to ENTITYNOUN?",
"Upgrade to ENTITYNOUN",
"How to add a network printer on Ubuntu ENTITYNOUN?",
"How to record my screen?"
]
},
{
"author": "Alaukik",
"url": "http://askubuntu.com/questions/48700/is-there-software-that-can-view-dwg-files",
"entities": [],
"answer": {
"text": "<p><a href=\"http://www.3ds.com/products/draftsight/free-cad-software/\" rel=\"nofollow noreferrer\">DraftSight</a>. It doesn't cost money and they'll give you a nice .deb installer... but it's not open source or free software.</p>\n\n<p>On the upside, it will also let you create and edit <code>.dwg</code> files.</p>\n\n<p><img src=\"https://i.stack.imgur.com/8v1ra.jpg\" alt=\"enter image description here\"></p>\n",
"author": "Oli"
},
"training": false,
"inputs": [
"Is there a way to view.dwg files?",
"Is there any software that can view.dwg files?",
"Is there a way to view the.dwg files?",
"Is there a program that can view.dwg files?",
"Is it possible to view.dwg files?",
"Is there a way to see.dwg files?",
"Is there any software that can view the.dwg files?",
"Is there a way to view the files?",
"Is there any software that can view the files?",
"Is there a way to view.dwg files.",
"Is there software that can view .dwg files?"
],
"match": "Is there software that can view .dwg files?",
"templates": [
"Is there software that can view .dwg files?",
"What to use to quickly cut Audio/Video",
"How can i upgrade to Ubuntu ENTITYNOUN final from ENTITYNOUN correctly?",
"How to Install ENTITYPRODUCT Laser Printer on Ubuntu?",
"How to Shut down Ubuntu by using keyboard?",
"Using ENTITYNOUN can I compile packages with gcc for ENTITYNOUN?"
]
},
{
"author": "Noah Goodrich",
"url": "http://askubuntu.com/questions/4246/what-are-some-good-php-editors",
"entities": [],
"answer": {
"text": "<p>Netbeans is a great IDE with lots of PHP support. I can't even start to name all the features I use but there are a fair amount. Check it out here: </p>\n\n<ul>\n<li><a href=\"http://netbeans.org/features/scripting/index.html\" rel=\"nofollow noreferrer\">http://netbeans.org/features/scripting/index.html</a> </li>\n<li><a href=\"http://netbeans.org/features/php/index.html\" rel=\"nofollow noreferrer\">http://netbeans.org/features/php/index.html</a> </li>\n</ul>\n\n<p>I've used both Eclipse for Java and Netbeans for PHP and I feel Netbeans is a bit stronger for PHP as well as XHTML and CSS. That's my personal preference anyways. </p>\n\n<p>Looking at <a href=\"http://www.jetbrains.com/phpstorm/\" rel=\"nofollow noreferrer\">PHPStorm</a> I assume you're looking for something similar to it, so a full IDE.\nNetbeans and Eclipse are the closest to that as far as I'm familiar with. </p>\n\n<p>Netbeans has most, if not all, the features that PhpStorm has on that page plus a whole lot more.</p>\n\n<p><img src=\"https://i.stack.imgur.com/rHbe3.png\" alt=\"Netbeans IDE\"></p>\n",
"author": "WalterJ89"
},
"training": false,
"inputs": [
"What are some good editors?",
"What are some good programmers?",
"There are some good editors.",
"What do you think are some good editors?",
"What are some good editors for PHP?",
"What do you think are some good PHP editors?",
"What are some good editors forPHP?",
"What are some good editors for the program?",
"What are some good editors for the website?",
"What are some good editors for the web?",
"What are some good PHP editors?"
],
"match": "What are some good PHP editors?",
"templates": [
"What are some good PHP editors?",
"Which PDF Viewer would you recommend?",
"Doubts regarding the ENTITYNOUN upgrade (is it inevitable and unavoidable?)",
"Installing ENTITYPRODUCT on Ubuntu ENTITYNOUN",
"My system doesn't go shutdown",
"No action when shutdown pressed"
]
},
{
"author": "Ivan",
"url": "http://askubuntu.com/questions/9248/is-there-a-software-utility-to-adjust-screen-gamma-brightness-contrast",
"entities": [],
"answer": {
"text": "<p><a href=\"http://jonls.dk/redshift/\" rel=\"nofollow\">Redshift</a><br>\nI have been using this. Its very nice.</p>\n\n<pre><code>sudo apt-get install redshift\n</code></pre>\n\n<p>To use it just type in the terminal <code>redshift</code></p>\n\n<p>gtk-redshift is just the gui, not required.</p>\n\n<hr>\n\n<p><a href=\"http://www.stereopsis.com/flux/\" rel=\"nofollow\">f.lux</a> is also an option.</p>\n",
"author": "N 1.1"
},
"training": false,
"inputs": [
"Is there a way to adjust the screen brightness and contrast?",
"Is there a way to adjust the screen brightness?",
"Is there a way to adjust the screen's brightness and contrast?",
"Is there a way to adjust screen brightness and contrast?",
"Is there a program to adjust the screen?",
"Is there a tool to adjust the screen?",
"Is there a way to adjust screen brightness?",
"Is there a way to adjust the screen's brightness?",
"Is there a tool to adjust the screen brightness?",
"Can you tell me if there is a software utility to adjust the screen?",
"Is there a software utility to adjust screen gamma/brightness/contrast?"
],
"match": "Is there a software utility to adjust screen gamma/brightness/contrast?",
"templates": [
"Is there a software utility to adjust screen gamma/brightness/contrast?",
"Is there LAN topology mapping software available in Ubuntu?",
"How do I update ENTITYNOUN to ENTITYNOUN",
"How can one shutdown a PC using the keyboard?",
"Problems upgrading Ubuntu ENTITYNOUN to ENTITYNOUN",
"How to upgrade Ubuntu ENTITYNOUN to ENTITYNOUN if I have dual boot with windows 7?"
]
},
{
"author": "aviran",
"url": "http://askubuntu.com/questions/344642/please-recommend-a-hex-editor-for-shell",
"entities": [],
"answer": {
"text": "<p><code>emacs</code> has a hexl-mode for hex editing.</p>\n",
"author": "psusi"
},
"training": false,
"inputs": [
"It would be great if you could recommend a shell editor.",
"You should recommend a shell editor.",
"It would be great if you could recommend a hex editor for shell.",
"It would be great if you could recommend an editor for shell.",
"Please recommend a shell editor.",
"Please recommend a editor for shell.",
"It would be great if you would recommend a shell editor.",
"It is recommended that you recommend a shell editor.",
"It would be great if you could recommend a hex editor for the shell.",
"It is recommended that you recommend a hex editor for shell.",
"Please recommend a hex editor for shell"
],
"match": "Please recommend a hex editor for shell",
"templates": [
"Please recommend a hex editor for shell",
"On really old Ubuntu ENTITYNOUN - How to upgrade",
"Install ENTITYPRODUCT Ubuntu ENTITYNOUN",
"How do I setup my ENTITYPRODUCT printer wirelessly?",
"How do I install ENTITYPRODUCT printer",
"Upgrade from ENTITYNOUN to ENTITYNOUN without losing files?"
]
},
{
"author": "Paco Porras",
"url": "http://askubuntu.com/questions/279705/is-there-lan-topology-mapping-software-available-in-ubuntu",
"entities": [],
"answer": {
"text": "<p>To my knowledge, there are few comparable software packages available, free and out-of-the-box, for Ubuntu that don't require quite a bit of manual configuration.</p>\n\n<p><a href=\"http://www.opennms.org/get-opennms/\" rel=\"nofollow noreferrer\">OpenNMS</a> might come close for your needs.</p>\n\n<p>The Network Topology Mapper(and the SolarWinds Tool Suite, in general) is a <em>very</em> good, mid-level, network management tool. Unfortunately, it is Windows only and comes with a significant price tag. Without a great deal of customization, you will be hard-pressed to find a comparable solution. If you have the budget and run a heterogeneous shop, I can strongly recommend using this piece of software. Also, their IPAM and NetFlow tools are quite solid, as well.</p>\n\n<p>That said, I know of three pieces of software that run on Linux and might give you a start dynamically mapping your network: <a href=\"http://cheops-ng.sourceforge.net/\" rel=\"nofollow noreferrer\">Cheops</a>, <a href=\"https://www.manageengine.com/network-performance-management.html\" rel=\"nofollow noreferrer\">OPManager</a>, and <a href=\"http://www.opennms.org/get-opennms/\" rel=\"nofollow noreferrer\">OpenNMS</a>.</p>\n\n<p>I would also recommend looking at the <a href=\"http://www.slac.stanford.edu/xorg/nmtf/nmtf-tools.html\" rel=\"nofollow noreferrer\">SLAC page</a> to see if there are any more recent developments in the network management space.</p>\n\n<p>The following applications are listed, in ascending order, in terms of cost, complexity, and feature-sets. </p>\n\n<p><strong>Cheops</strong></p>\n\n<p>Cheops is a free network mapping solution that will go out and discover and graphically display the servers and network nodes for you. It is old, and possibly no longer under development. But, it is a simple tool to use for network discovery.</p>\n\n<p><a href=\"http://cheops-ng.sourceforge.net/images/cheops.jpg\" rel=\"nofollow noreferrer\">http://cheops-ng.sourceforge.net/images/cheops.jpg</a></p>\n\n<p>You can download Cheops, <a href=\"http://cheops-ng.sourceforge.net/download.php\" rel=\"nofollow noreferrer\">here</a></p>\n\n<p><strong>OpenNMS</strong></p>\n\n<p>OpenNMS is able to do network discovery, event management, and performance management. It is available as a .deb package as well.</p>\n\n<p><a href=\"http://www.opennms.org/w/images/a/a9/Example.jpg\" rel=\"nofollow noreferrer\">http://www.opennms.org/w/images/a/a9/Example.jpg</a></p>\n\n<p>Core features:</p>\n\n<ul>\n<li>Automatic Layer-2 and Layer-3 link discovery</li>\n<li>Automatic Network / Node Discovery and Provisioning</li>\n<li>Automatic Service Discovery and Provisioning</li>\n<li>IPv6 support throughout (new)</li>\n<li>Manual Node and Service Provisioning Requisitions</li>\n<li>Path Outage support</li>\n</ul>\n\n<p><a href=\"http://www.opennms.org/wiki/Features_List\" rel=\"nofollow noreferrer\">Feature list</a></p>\n\n<p>OpenNMS <a href=\"http://www.opennms.org/get-opennms/\" rel=\"nofollow noreferrer\">download</a></p>\n\n<p><a href=\"http://www.opennms.org/wiki/Installation:Debian\" rel=\"nofollow noreferrer\">Installation instructions</a> for deb/apt-get.</p>\n\n<p><strong>OPManager</strong></p>\n\n<p>OpManager, on the other hand, is a commercial tool. It has a similar feature-set of the SolarWinds solution. In my experience, it is very robust and customizable. That said, you will have to pay for it. It does run on Debian-based systems, though it is not custom-tailored for Ubuntu. YMMV.</p>\n\n<p><img src=\"https://www.manageengine.com/network-monitoring/images/screenshot/network-mapping.gif\" alt=\"\"></p>\n\n<p>In terms of network management functionality, it supports:</p>\n\n<ul>\n<li>Availability and Uptime Monitoring</li>\n<li>Traffic and Utilization Monitoring</li>\n<li>Cisco Monitoring</li>\n<li>Network Device Health Monitoring\n(Router, Switch, Firewall, wireless access points)</li>\n<li>Network Mapping</li>\n<li>Custom Network Maps / Network Traffic Maps</li>\n<li>WAN RTT Monitoring</li>\n<li>Network Traffic Analysis (NetFlow, sFlow)</li>\n<li>VoIP Monitoring</li>\n<li>Network Configuration Management</li>\n<li>IP Address Management</li>\n<li>Switch Port Mapper</li>\n</ul>\n\n<p>For a full list of features, see:\n<a href=\"https://www.manageengine.com/network-monitoring/features.html\" rel=\"nofollow noreferrer\">here</a></p>\n\n<p>You can download a free trial of OPManager <a href=\"https://www.manageengine.com/network-monitoring/download.html\" rel=\"nofollow noreferrer\">here</a></p>\n\n<p>I would be very interested in hearing from others in regards to using a <strong>free</strong>, unified network management solution in Ubuntu that does not require in-house development and a great deal of care and feeding. </p>\n\n<p>In the mean time, when it's unreasonable to use OPManager, or OpenNMS, I will have to make due with my own custom Nagios/Cacti/SmokePing/Rancid/IPPlan solution for smaller networks.</p>\n",
"author": "Kevin Bowen"
},
"training": false,
"inputs": [
"Is there any software that maps the networks in Ubuntu?",
"Is there a software that maps the networks in Ubuntu?",
"Is there any software that maps the network in Ubuntu?",
"Is there a software that maps the network?",
"Is there any software for mapping the networks in the Linux operating system?",
"Is there any software that maps the networks in the Linux operating system?",
"Is there a software that maps the networks in the Linux operating system?",
"Can you tell me if there is a software that maps the network in Ubuntu?",
"Is there a software that maps the networks in the house?",
"Can you tell me if there is a software that maps the networks in Ubuntu?",
"Is there LAN topology mapping software available in Ubuntu?"
],
"match": "Is there LAN topology mapping software available in Ubuntu?",
"templates": [
"Is there LAN topology mapping software available in Ubuntu?",
"Are there any hardware diagnostic tools?",
"How do I install drivers for a ENTITYPRODUCT?",
"Upgrading from ENTITYNOUN to ENTITYNOUN",
"How to Install a ENTITYPRODUCT Printer on Ubuntu ENTITYNOUN",
"Force upgrade ENTITYNOUN to ENTITYNOUN"
]
},
{
"author": "kmassada",
"url": "http://askubuntu.com/questions/237777/is-there-a-tool-like-wifi-analyzer-for-ubuntu",
"entities": [],
"answer": {
"text": "<p>There is one more tool In Ubuntu software Centre named as <code>Kismet</code>.</p>\n\n<blockquote>\n <p>Kismet is a 802.11b wireless network sniffer. It is capable of\n sniffing using almost any supported wireless card using the Airo,\n HostAP, Wlan-NG, and Orinoco (with a kernel patch) drivers.</p>\n \n <p>Can make use of sox and festival to play audio alarms for network\n events and speak out network summary on discovery. Optionally works\n with gpsd to map scanning.</p>\n</blockquote>\n\n<p>you can install it from terminal( <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>T</kbd>) also with </p>\n\n<pre><code>sudo apt-get install kismet\n</code></pre>\n",
"author": "Ten-Coin"
},
"training": false,
"inputs": [
"Is there a tool for analyzing the internet?",
"There is a tool for analyzing the internet.",
"Is it possible to use a tool like a wifi analyzer?",
"Is there a tool for analyzing the internet in ubuntu?",
"Is it possible to use a tool like the wifi analyzer?",
"Is it possible to use a tool like a wi-fi analyzer?",
"Is there a tool that can analyze the internet?",
"Is it possible to use a tool like a wifi analyzer.",
"Is it possible to use a tool like a wifi analyzer for ubuntu?",
"Is it possible to use a tool like this for ubuntu?",
"Is there a tool like wifi analyzer for ubuntu?"
],
"match": "Is there a tool like wifi analyzer for ubuntu?",
"templates": [
"Is there a tool like wifi analyzer for ubuntu?",
"On really old Ubuntu ENTITYNOUN - How to upgrade",
"How can I automatically shutdown the system after a specific time?",
"Shutdown problem in ENTITYNOUN",
"Upgrading from ENTITYNOUN to ENTITYNOUN",
"How to install a ENTITYPRODUCT series printer?"
]
},
{
"author": "nixnotwin",
"url": "http://askubuntu.com/questions/31450/tool-for-recovering-deleted-data-from-a-flash-drive",
"entities": [],
"answer": {
"text": "<ol>\n<li><a href=\"http://www.cgsecurity.org/wiki/TestDisk_Download\" rel=\"noreferrer\"><strong>TestDisk</strong></a></li>\n</ol>\n\n<blockquote>\n <p>find lost partitions and data for\n External and Internal Drive for all of\n these file systems, ext2, ext3, ext4\n and encrypted partition. for windows\n FAT12/FAT16/FAT32 and NTFS boot\n sector.</p>\n</blockquote>\n\n<p><strong>For Recovering data from external Hard drive</strong><br>\nType <code>testdisk</code> on your terminal and follow this well written step <a href=\"http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step\" rel=\"noreferrer\">TestDisk Step-By-Step</a></p>\n\n<p><strong>For Recovering files from internal and External hard drives</strong> there is <a href=\"http://www.cgsecurity.org/wiki/PhotoRec\" rel=\"noreferrer\">PhotoRec</a> which comes with TestDisk.</p>\n\n<p>type <code>photorec</code> on your terminal</p>\n\n<p><img src=\"https://i.stack.imgur.com/3Riip.gif\" alt=\"enter image description here\"></p>\n\n<p>Select your drive and hit enter to proceed and follow the instruction.</p>\n\n<ol start=\"2\">\n<li><a href=\"http://extundelete.sourceforge.net/\" rel=\"noreferrer\">Extundelete</a>\n\n<blockquote>\n <p>extundelete is a utility that can\n recover deleted files from an ext3 or\n ext4 partition</p>\n</blockquote></li>\n</ol>\n",
"author": "Achu"
},
"training": false,
"inputs": [
"A tool can be used to recover deleted data from a flash drive.",
"The tool can be used to recover deleted data from a flash drive.",
"A tool is used to recover deleted data from a flash drive.",
"There is a tool for recovering deleted data.",
"There is a tool that can recover deleted data from a flash drive.",
"There is a tool for recovering deleted data from a flash drive.",
"Data can be recovered from a flash drive.",
"The tool can recover deleted data from a flash drive.",
"Recover deleted data from a flash drive with a tool.",
"A tool to recover deleted data from a flash drive.",
"Tool for recovering deleted data from a flash drive"
],
"match": "Tool for recovering deleted data from a flash drive",
"templates": [
"Tool for recovering deleted data from a flash drive",
"What new games are available for Ubuntu in 2011?",
"How can i upgrade to Ubuntu ENTITYNOUN final from ENTITYNOUN correctly?",
"Install printer ENTITYPRODUCT (ubuntu ENTITYNOUN)",
"Update ENTITYNOUN to ENTITYNOUN with LiveCD",
"What graphical utility can I use for Ubuntu auto shutdown?"
]
},
{
"entities": [],
"training": false,
"inputs": [
"What is a simple \"colour picker\" app?",
"What's a simple \"colour picker\" app?",
"What is a simple \"colour picker\" app for GNOME?",
"What is a \"colour picker\" app for GNOME?",
"What is a simple colour picker app?",
"What is a simple \"colour picker\" for GNOME?",
"What is a \"colour picker\" app?",
"What's a simple colour picker app?",
"What's a simple \"colour picker\" app for GNOME?",
"What is a simple \"colour picker\" app for Linux?",
"What's a simple \"colour picker\" app for GNOME?"
],
"match": "What's a simple \"colour picker\" app for GNOME?",
"templates": [
"What's a simple \"colour picker\" app for GNOME?",
"ENTITYPRODUCT GUI Tools",
"Problems upgrading Ubuntu ENTITYNOUN to ENTITYNOUN",
"Upgrading ENTITYNOUN to ENTITYNOUN",
"Cannot install printer driver ENTITYPRODUCT",
"Install printer ENTITYPRODUCT (ubuntu ENTITYNOUN)"
]
},
{
"author": "Ashwin Nanjappa",
"url": "http://askubuntu.com/questions/279409/any-app-that-tells-me-to-take-regular-breaks-from-working",
"entities": [],
"answer": {
"text": "<p><a href=\"http://www.workrave.org/\" rel=\"nofollow noreferrer\">WorkRave</a> is probably what you want</p>\n\n<blockquote>\n <p>Workrave is a program that assists in the recovery and prevention of\n Repetitive Strain Injury (RSI). The program frequently alerts you to\n take micro-pauses, rest breaks and restricts you to your daily limit.</p>\n</blockquote>\n\n<p><img src=\"https://i.stack.imgur.com/vPCvO.png\" alt=\"break\"></p>\n\n<p><a href=\"http://www.workrave.org/screenshots/\" rel=\"nofollow noreferrer\">More screenshots</a></p>\n",
"author": "Flint"
},
"training": false,
"inputs": [
"Is there an app that tells me to take breaks?",
"Is there an app that tells me to take regular breaks?",
"I need an app that tells me to take regular breaks.",
"I want an app that tells me to take regular breaks.",
"I need an app that tells me to take breaks.",
"Any app that tells me to take breaks?",
"I want an app that tells me to take breaks.",
"Is there an app that tells me to take breaks from working?",
"Is there an app that tells me to take breaks from work?",
"Is there any app that tells me to take breaks?",
"Any app that tells me to take regular breaks from working?"
],
"match": "Any app that tells me to take regular breaks from working?",
"templates": [
"Any app that tells me to take regular breaks from working?",
"What do you use to edit Microsoft ENTITYPRODUCT documents (docx)?",
"How can I automatically shutdown the system after a specific time?",
"How to setup HP printer/scanner on ubuntu?",
"How to Shut down Ubuntu by using keyboard?",
"How to upgrade Ubuntu ENTITYNOUN to ENTITYNOUN if I have dual boot with windows 7?"
]
},
{
"author": "karthick87",
"url": "http://askubuntu.com/questions/16837/what-are-some-good-ascii-art-generators",
"entities": [],
"answer": {
"text": "<p><a href=\"https://apps.ubuntu.com/cat/applications/toilet\" rel=\"nofollow noreferrer\">TOIlet</a> <a href=\"https://apps.ubuntu.com/cat/applications/toilet\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install TOIlet\"></a></p>\n\n<p>I've seen <a href=\"http://caca.zoy.org/wiki/toilet\" rel=\"nofollow noreferrer\"><strong>TOIlet</strong></a>, I think that is what you're looking for.</p>\n",
"author": "antivirtel"
},
"training": false,
"inputs": [
"What are some good art generators?",
"What are the best ASCII art generators?",
"What are the best art generators?",
"What are some good ASCII art generators?",
"There are some good art generators.",
"Is there any good ASCII art generators?",
"Can you tell me about some good ASCII art generators?",
"Can you tell me about some good art generators?",
"What are some good sachalia art generators?",
"Can you tell me about some good ASCII art generators.",
"What are some good ASCII art generators?"
],
"match": "What are some good ASCII art generators?",
"templates": [
"What are some good ASCII art generators?",
"What's the best Mind Mapping Software?",
"How to upgrade Ubuntu ENTITYNOUN to ENTITYNOUN?",
"How to shutdown the computer after Xsession ends?",
"Problems upgrading from ENTITYNOUN to ENTITYNOUN",
"How can one shutdown a PC using the keyboard?"
]
},
{
"author": "Olivier Lalonde",
"url": "http://askubuntu.com/questions/19479/what-are-some-good-gui-binary-viewers-editors",
"entities": [],
"answer": {
"text": "<ul>\n<li><p><a href=\"http://apt.ubuntu.com/p/ghex\" rel=\"nofollow noreferrer\"><strong>GHEX</strong> <img src=\"https://hostmar.co/software-large\" alt=\"Install ghex\"></a> </p>\n\n<p><img src=\"https://i.stack.imgur.com/tCT7x.png\" alt=\"alt text\"></p></li>\n<li><p><a href=\"http://apt.ubuntu.com/p/lfhex\" rel=\"nofollow noreferrer\"><strong>LFHEX</strong> <img src=\"https://hostmar.co/software-large\" alt=\"Install lfhex\"></a> </p>\n\n<p><img src=\"https://i.stack.imgur.com/fRE4F.png\" alt=\"alt text\"></p></li>\n<li><p><strong><a href=\"http://wxhexeditor.sourceforge.net/\" rel=\"nofollow noreferrer\">WXHEXEDITOR</a></strong> </p>\n\n<p><img src=\"https://i.stack.imgur.com/9ybeQ.png\" alt=\"alt text\"></p></li>\n</ul>\n",
"author": "karthick87"
},
"training": false,
"inputs": [
"Is there any good GUI viewers/editors?",
"What are the best GUI viewers?",
"Can you tell me about some good GUI viewers/editors?",
"There are some good GUI viewers/editors.",
"There are some good GUI viewers.",
"What are some good GUI editors?",
"What are some good GUI viewers?",
"What do you think are some good GUI viewers?",
"Some good GUI viewers/editors?",
"Can you tell me about some good GUIbinary viewers/editors?",
"What are some good GUI binary viewers/editors?"
],
"match": "What are some good GUI binary viewers/editors?",
"templates": [
"What are some good GUI binary viewers/editors?",
"What new games are available for Ubuntu in 2011?",
"Upgrade from ENTITYNOUN to ENTITYNOUN",
"How can I enable shutdown verbosity?",
"How do I install drivers for a ENTITYPRODUCT?",
"Installing ENTITYPRODUCT on Ubuntu ENTITYNOUN"
]
},
{
"author": "Sahil Grover",
"url": "http://askubuntu.com/questions/401114/which-is-the-best-pdf-metadata-viewer-for-ubuntu",
"entities": [],
"answer": {
"text": "<ol>\n<li><p>View pdf metadata for a file called Example.pdf: </p>\n\n<pre><code>pdfinfo Example.pdf \n</code></pre></li>\n<li><p>Edit existing metadata in the terminal using nano editor: </p>\n\n<pre><code>pdftk Example.pdf dump_data output Metadata-output.txt\nnano Metadata-output.txt \n</code></pre></li>\n<li><p>Update metadata: </p>\n\n<pre><code>pdftk Example.pdf update_info Metadata-output.txt output Example-new.pdf\n</code></pre></li>\n</ol>\n\n<p><sub><strong>Nano editor keyboard shortcuts</strong></sub><br>\n<sub>Use the keyboard combination <kbd>Ctrl</kbd> + <kbd>O</kbd> and after that press <kbd>Enter</kbd> to save the file to its current location.</sub><br>\n<sub>Use the keyboard combination <kbd>Ctrl</kbd> + <kbd>X</kbd> to exit nano.</sub> </p>\n",
"author": "karel"
},
"training": false,
"inputs": [
"Which is the best PDF viewer?",
"Which is the best PDF viewer for Linux?",
"Which is the best PDF viewer to use?",
"Which is the best PDF viewer for linux?",
"Which is the best viewer for PDF?",
"Which one is the best PDF viewer?",
"Which is the best PDF viewer for the Linux operating system?",
"Which is the best version of PDF?",
"Which is the best way to view PDF?",
"Which PDF viewer is the best?",
"Which is the best PDF metadata viewer for Ubuntu?"
],
"match": "Which is the best PDF metadata viewer for Ubuntu?",
"templates": [
"Which is the best PDF metadata viewer for Ubuntu?",
"Is there a lightweight tool to crop images quickly?",
"How do I setup my ENTITYPRODUCT printer wirelessly?",
"How Do I Install ENTITYPRODUCT Printer in Ubuntu ENTITYNOUN?",
"Using ENTITYNOUN can I compile packages with gcc for ENTITYNOUN?",
"Hotkey to shut down from login screen?"
]
},
{
"author": "o_o_o--",
"url": "http://askubuntu.com/questions/339125/is-there-a-linux-file-manager-with-a-proper-drop-down-tree-view-like-finder-in",
"entities": [],
"answer": {
"text": "<p><a href=\"http://dolphin.kde.org/features.html\" rel=\"nofollow noreferrer\">Dolphin</a> appears to have this capability.</p>\n\n<p><img src=\"https://i.imgur.com/hmTslUv.png\" alt=\"dophin\"></p>\n",
"author": "evilsoup"
},
"training": false,
"inputs": [
"Is there a Linux file manager that has a tree view?",
"Is there a Linux file manager that has a proper tree view?",
"Is there a Linux file manager with a tree view?",
"Is there a Linux file manager with a proper tree view?",
"Is it possible to find a Linux file manager with a tree view?",
"Is it possible to find a Linux file manager with a proper tree view?",
"There is a Linux file manager that has a tree view.",
"Is it possible to find a Linux file manager in a tree view?",
"Is there a way to see a Linux file manager in a tree view?",
"Is there a Linux file manager that shows a tree view?",
"Is there a Linux file manager with a proper drop-down tree view? (like finder in OS X)"
],
"match": "Is there a Linux file manager with a proper drop-down tree view? (like finder in OS X)",
"templates": [
"Is there a Linux file manager with a proper drop-down tree view? (like finder in OS X)",
"Can you recommend a password generator?",
"Upgrading from ENTITYNOUN to ENTITYNOUN how much space is needed?",
"Do I need to backup my ENTITYNOUN system to upgrade to ENTITYNOUN?",
"Is there a Document scanning and archiving software?",
"what is the right way to shutdown ubuntu using the command line?"
]
},
{
"author": "NES",
"url": "http://askubuntu.com/questions/20204/which-application-do-you-recommend-for-watching-tv-dvb",
"entities": [],
"answer": {
"text": "<h2><a href=\"https://apps.ubuntu.com/cat/applications/vlc\" rel=\"nofollow noreferrer\">VLC <img src=\"https://hostmar.co/software-small\" alt=\"Install vlc\"></a></h2>\n\n<p>I'm using VLC. It works pretty good for what I do. Pause/resume feature works out of the box.</p>\n\n<p>You will have to scan for channels first. Use <a href=\"http://edafe.org/vdr/w_scan/\" rel=\"nofollow noreferrer\"><code>w_scan</code></a> (<a href=\"http://apt.ubuntu.com/p/w-scan\" rel=\"nofollow noreferrer\">install it</a> if necessary) and launch the following command : </p>\n\n<pre><code>w_scan -c FR -X > channels.conf\n</code></pre>\n\n<p>Replace FR with your country (<code>w_scan -c ?</code> to get the list). Now, each time you want to watch the tv, just launch this command :</p>\n\n<pre><code>vlc channels.conf\n</code></pre>\n\n<p>You can start recording with <kbd>Shift</kbd>+<kbd>R</kbd>, again to stop it. Pause a live program with <kbd>Space</kbd>.</p>\n\n<p>There is a good wiki about DVB in french : <a href=\"http://doc.ubuntu-fr.org/tnt\" rel=\"nofollow noreferrer\">http://doc.ubuntu-fr.org/tnt</a> (has a list of compatible hardware). </p>\n\n<h2>Others</h2>\n\n<p>Other softwares are <a href=\"https://apps.ubuntu.com/cat/applications/kaffeine\" rel=\"nofollow noreferrer\">kaffeine <img src=\"https://hostmar.co/software-small\" alt=\"Install kaffeine\"></a>, <a href=\"https://apps.ubuntu.com/cat/applications/totem\" rel=\"nofollow noreferrer\">totem <img src=\"https://hostmar.co/software-small\" alt=\"Install totem\"></a>, <a href=\"https://apps.ubuntu.com/cat/applications/gxine\" rel=\"nofollow noreferrer\">gxine <img src=\"https://hostmar.co/software-small\" alt=\"Install gxine\"></a> and <a href=\"https://apps.ubuntu.com/cat/applications/mplayer\" rel=\"nofollow noreferrer\">mplayer <img src=\"https://hostmar.co/software-small\" alt=\"Install mplayer\"></a> but I don't use them.</p>\n\n<p>I used to use Kaffeine but dropped it for vlc because I had some issues. Just retested it and it seems to work nicely. It is a good program for recording (instant or scheduled record as you want). Maybe should I reconsider my actual choice for watching DVB...</p>\n",
"author": "Maxime R."
},
"training": false,
"inputs": [
"Which application is best for watching TV?",
"Which application do you like to use to watch TV?",
"Which application is the best for watching TV?",
"Which application would you recommend for watching TV?",
"Which application would you recommend to use to watch TV?",
"Do you recommend any applications for watching TV?",
"Which application do you prefer to use to watch TV?",
"What application do you recommend to watch TV?",
"Which application do you recommend to use to watch TV?",
"Which application would you recommend to watch TV?",
"Which application do you recommend for watching TV (DVB)?"
],
"match": "Which application do you recommend for watching TV (DVB)?",
"templates": [
"Which application do you recommend for watching TV (DVB)?",
"Is there an application for reading mobi files?",
"Problems upgrading from ENTITYNOUN to ENTITYNOUN",
"What is the proper terminal-way to shutdown?",
"How can i upgrade to Ubuntu ENTITYNOUN final from ENTITYNOUN correctly?",
"How to partially upgrade Ubuntu ENTITYNOUN from Ubuntu ENTITYNOUN?"
]
},
{
"author": "all4naija",
"url": "http://askubuntu.com/questions/121878/what-is-the-best-hdr-software",
"entities": [],
"answer": {
"text": "<p>Look at <a href=\"http://sourceforge.net/projects/qtpfsgui/\">Luminance HDR</a>.<br>\nThese <a href=\"http://wiki.panotools.org/Luminance_HDR\">notes</a> might be useful.<br>\nIt was called <a href=\"https://launchpad.net/ubuntu/precise/+source/qtpfsgui/\">Qtpfsgui</a> earlier.</p>\n\n<p>And <a href=\"http://kornelix.squarespace.com/fotoxx/\">fotoxx</a> (from the comments here) is also an Ubuntu package -- Looks promising, I'll try it too.</p>\n",
"author": "nik"
},
"training": false,
"inputs": [
"What is the best software?",
"What is the best software to use?",
"What is the best software for high definition?",
"Which is the best software?",
"Which software is the best?",
"What is the best software for HDR?",
"What's the best software?",
"What is the best software for high dynamic range?",
"What is the best software for it?",
"What is the best software for high Dynamic Range?",
"What Is The Best HDR Software?"
],
"match": "What Is The Best HDR Software?",
"templates": [
"What Is The Best HDR Software?",
"Removing Recently used items in ENTITYNOUN",
"How can I shutdown the computer when a certain process ends?",
"Keyboard shortcut to shutdown?",
"Problems upgrading from ENTITYNOUN to ENTITYNOUN",
"Upgrading Ubuntu Server ENTITYNOUN to ENTITYNOUN"
]
},
{
"author": "Eric Johnson",
"url": "http://askubuntu.com/questions/32691/what-do-you-use-to-edit-microsoft-word-documents-docx",
"entities": [
{
"text": "Word",
"entityType": "SoftwareName",
"holmesIdentifier": "ENTITYPRODUCT"
}
],
"answer": {
"text": "<p><a href=\"http://www.libreoffice.org/\">LibreOffice</a> is the replacement for OpenOffice and does the same job.</p>\n",
"author": "Ashfame"
},
"training": false,
"inputs": [
"What do you do with Microsoft Word?",
"What do you do with Microsoft Word documents?",
"What do you do to modify Microsoft Word documents?",
"How do you edit Microsoft Word documents?",
"How do you modify Microsoft Word documents?",
"What do you do with Word documents?",
"What do you use to modify Microsoft Word documents?",
"What do you do to make Microsoft Word documents better?",
"How do you edit Microsoft Word?",
"What do you use to make changes to Microsoft Word documents?",
"What do you use to edit Microsoft Word documents (docx)?"
],
"match": "What do you use to edit Microsoft ENTITYPRODUCT documents (docx)?",
"templates": [
"What do you use to edit Microsoft ENTITYPRODUCT documents (docx)?",
"Is there software that can view .dwg files?",
"Upgrading from ENTITYNOUN to ENTITYNOUN how much space is needed?",
"Ho do I update to ENTITYNOUN from the beta?",
"Upgrading Ubuntu Server ENTITYNOUN to ENTITYNOUN",
"Problem upgrading ENTITYNOUN"
]
},
{
"author": "Strae",
"url": "http://askubuntu.com/questions/11588/whats-the-best-wireframing-tool",
"entities": [],
"answer": {
"text": "<p><a href=\"http://wireframesketcher.com\" rel=\"nofollow noreferrer\">WireframeSketcher</a> is a rapid wireframing tool for Eclipse-based IDEs like Aptana, Zend Studio and the like. It also comes as a standalone version for all major platforms including Ubuntu. Give it a try.</p>\n\n<p><img src=\"https://i.stack.imgur.com/X1f0m.png\" alt=\"Sample WireframeSketcher mockup\"></p>\n",
"author": "Peter Severin"
},
"training": false,
"inputs": [
"What is the best wireframing tool?",
"What is the best tool for wireframing?",
"What is the best Wireframing tool?",
"What's the best tool for wireframing?",
"What's the best wireframing tool?",
"The best wireframing tool?",
"What is the best tool for Wireframing?",
"What's the best way to frame a story?",
"What's the best way to frame a picture?",
"What's the best Wireframing tool?",
"What's the best Wireframing tool?"
],
"match": "What's the best Wireframing tool?",
"templates": [
"What's the best Wireframing tool?",
"Applications to replace ENTITYPRODUCT for iPod synchronization?",
"Upgrading from Ubuntu ENTITYNOUN to ENTITYNOUN",
"No action when shutdown pressed",
"How do I setup my ENTITYPRODUCT printer wirelessly?",
"update-manager: upgrade to ENTITYNOUN rather than ENTITYNOUN"
]
},
{
"author": "ændrük",
"url": "http://askubuntu.com/questions/16386/is-there-any-software-that-will-do-face-recognition-in-photos",
"entities": [],
"answer": {
"text": "<p><a href=\"http://www.digikam.org/\" rel=\"nofollow noreferrer\"><strong>Digikam</strong></a>\n<br>\n(...will in the next release, very soon. there may be a beta/development version that does now. please read:)</p>\n\n<p><em>\"Aditya Bhatt added face detection and recognition to digiKam. He says: 'Because of my project, digiKam can now automatically detect faces in photographs. It allows you to tag these faces with People Tags, and can also identify unknown faces and automatically tag them. My work also introduced a wrapper library called libkface that can be used by other KDE apps. Right now everything works okay, but it needs a bit of usability and GUI work, as well as some tweaks to libkface. <strong>Hopefully my work will make it in time for the Christmas release, which will be 2.0!</strong>'\"</em></p>\n\n<p>this is taken from the latest google summer of code update on kde.org, here:\n<a href=\"http://dot.kde.org/2010/12/14/kdegoogle-summer-code-2010-part-1-2\" rel=\"nofollow noreferrer\"><strong>http://dot.kde.org/2010/12/14/kdegoogle-summer-code-2010-part-1-2</strong></a>\n<img src=\"https://i.stack.imgur.com/r43TY.png\" alt=\"alt text\"></p>\n",
"author": "Ike"
},
"training": false,
"inputs": [
"Is there any software that can recognize faces in photos?",
"Is there any software that will recognize faces in photos?",
"Is there any software that can recognize faces?",
"Is there any software that can do face recognition?",
"Is there any software that can recognize face in photos?",
"Is there any software that can recognize faces in pictures?",
"Is there a software that can recognize faces in photos?",
"Is there any software that can do face recognition in photos?",
"Is there any software that recognizes faces in photos?",
"Is there any software that can identify faces in photos?",
"Is there any software that will do face recognition in photos?"
],
"match": "Is there any software that will do face recognition in photos?",
"templates": [
"Is there any software that will do face recognition in photos?",
"What blog editor software are available?",
"How do I install drivers for a ENTITYPRODUCT?",
"Ubuntu upgrade failed",
"How is rm command different from the delete button?",
"How can i upgrade to Ubuntu ENTITYNOUN final from ENTITYNOUN correctly?"
]
},
{
"author": "teo96",
"url": "http://askubuntu.com/questions/5537/applications-to-replace-itunes-for-ipod-synchronization",
"entities": [
{
"text": "iTunes",
"entityType": "SoftwareName",
"holmesIdentifier": "ENTITYPRODUCT"
}
],
"answer": {
"text": "<p>After many tests, i found a solution to my problem : </p>\n\n<ul>\n<li>Rhythmbox <strong>or</strong> Banshee for music </li>\n<li><strong>gPodder</strong> for podcasts</li>\n</ul>\n\n<p>This configuration works fine with iPod Nano 5th generation</p>\n\n<hr>\n\n<p>Details :</p>\n\n<ul>\n<li>Banshee corrupts iPod library if you synchronize podcasts (3 times the same podcast, podcast in music and music in podcast, wrong covers ...) </li>\n<li>Rhythmbox synchronize every podcasts but convert video podcasts into audio podcasts (very long synchronization process with high CPU usage)</li>\n<li><a href=\"http://gpodder.org/\" rel=\"nofollow\">gPodder</a> version 2.9 works fine with audio and video podcasts (add gPodder ppa for the 2.9 version : deb <a href=\"http://ppa.launchpad.net/thp/gpodder/ubuntu\" rel=\"nofollow\">http://ppa.launchpad.net/thp/gpodder/ubuntu</a> maverick main )</li>\n</ul>\n",
"author": "teo96"
},
"training": false,
"inputs": [
"Is it possible to replace iTunes for iPod synchronization?",
"Is there a way to replace iTunes for iPod synchronization?",
"Is there an application to replace iTunes for iPod synchronization?",
"Is it possible to replace iTunes for iPod sync?",
"Is there a way to replace iTunes for iPod sync?",
"Is there an application to replace iTunes for iPod sync?",
"Is there an application to replace iTunes for iPod synchronisation?",
"There are applications to replace iTunes.",
"Is there an application that will replace iTunes for iPod synchronization?",
"Is it possible to replace iTunes with applications for iPod synchronization?",
"Applications to replace iTunes for iPod synchronization?"
],
"match": "Applications to replace ENTITYPRODUCT for iPod synchronization?",
"templates": [
"Applications to replace ENTITYPRODUCT for iPod synchronization?",
"Recommendation for Regex editor?",
"How do I install drivers for the ENTITYPRODUCT All-in-One Printer/Scanner?",
"How to install ENTITYPRODUCT in ENTITYNOUN",
"What does my computer do when I click 'Shut Down'?",
"How to record my screen?"
]
},
{
"author": "German Rumm",
"url": "http://askubuntu.com/questions/21971/is-there-an-ssh-connection-manager",
"entities": [],
"answer": {
"text": "<p>I'm glad you ask that question. Please, take a look at PAC Manager, a Perl/Gtk app that pretends to be Ubuntu/General Linux SecureCRT equivalent, but with much more options!</p>\n\n<p>FEATURES (by now):</p>\n\n<ul>\n<li>Simple GUI to manage/launch connections to remote machines.</li>\n<li>Configurable [Pre|Post]-connection local commands execution.</li>\n<li>Configurable list of macros (commands) to send to connected client.</li>\n<li>Configurable list of macros (commands) to execute locally when connected.</li>\n<li>Configurable list of conditional executions on connected machine via 'Expect':\n . forget about SSH certificates\n . chain multiple ssh connections\n . automate tunnels creation\n . etc</li>\n<li>Ability to connect to machines through a Proxy server!</li>\n<li>CLUSTER connections.</li>\n<li>TABBED/WINDOWED terminals</li>\n<li>Wake On LAN capabilities</li>\n<li>Local and Global variables, eg.: write down a password once, use it ANY where, centralizing its modification for faster changes! use them for:\n . password vault\n . reusing connection strings\n . etc</li>\n<li>Seamless Gnome/Gtk integration.</li>\n<li>Tray icon for 'right button' quick launching of managed connections.</li>\n<li>Written in Perl/Gtk (wait, <em>is</em> that a feature? Well, it is for me! ;=)</li>\n<li>DEB, RPM & .TAR.GZ packages available!!</li>\n<li>It is FREE (as in freedom)!! and licensed under GNU GPLv3.</li>\n</ul>\n\n<p>The following packages are required prior to installation of PAC:</p>\n\n<pre><code>libgnome2-gconf-perl\nlibexpect-perl\nlibnet-proxy-perl\nlibcrypt-cbc-perl\nlibcrypt-blowfish-perl\nlibgtk2-gladexml-perl\nlibgtk2-ex-simple-list-perl\nlibnet-arp-perl\nlibossp-uuid-perl\nlibcrypt-rijndael-perl\nlibgtk2-uniqu\n</code></pre>\n\n<p><a href=\"http://sourceforge.net/projects/pacmanager/\" rel=\"nofollow noreferrer\">http://sourceforge.net/projects/pacmanager/</a></p>\n",
"author": "perseo22"
},
"training": false,
"inputs": [
"Is there a connection manager?",
"Is there a connection manager for it?",
"Is the connection manager there?",
"Is there a manager for connecting to the internet?",
"Is there a connection manager for SSH?",
"Is there a connection manager for this?",
"Is there a connection manager for that?",
"Is there a connection manager for this type of computer?",
"Is there a connection manager for that type of computer?",
"Is there a way to connect to the internet?",
"Is there an SSH connection manager?"
],
"match": "Is there an SSH connection manager?",
"templates": [
"Is there an SSH connection manager?",
"What developer text editors are available for Ubuntu?",
"Upgrading from ENTITYNOUN to ENTITYNOUN how much space is needed?",
"How to Upgrade from ENTITYNOUN to ENTITYNOUN when you've got a problem?",
"How do I upgrade to the release version of ENTITYNOUN if I am running Beta?",
"How do I update ENTITYNOUN to ENTITYNOUN"
]
},
{
"author": "halflings",
"url": "http://askubuntu.com/questions/124159/a-light-alternative-to-gnome-system-monitor",
"entities": [],
"answer": {
"text": "<p>You can try </p>\n\n<ul>\n<li><a href=\"http://goodies.xfce.org/projects/applications/xfce4-taskmanager\">xfce4-taskmanager</a> from Xfce or </li>\n<li><a href=\"http://lxde.org/lxtask_task_manager\">lxtask</a> from LXDE.</li>\n</ul>\n\n<p>Neither of them pull any specific dependencies.</p>\n",
"author": "Reinis"
},
"training": false,
"inputs": [
"A light alternative to a system monitor?",
"Is there an alternative to the system-monitor?",
"There is a light alternative to the system monitor.",
"A light alternative to a monitor?",
"There is a light alternative to the system-monitor.",
"A light alternative to the system monitor?",
"Is there a light alternative to the system-monitor?",
"There is a light alternative to a system monitor.",
"Is there a light alternative to the system monitor?",
"Is there an alternative to the system monitor?",
"A light alternative to gnome-system-monitor?"
],
"match": "A light alternative to gnome-system-monitor?",
"templates": [
"A light alternative to gnome-system-monitor?",
"Can you recommend a password generator?",
"Upgrade ENTITYNOUN to ENTITYNOUN using startup disk",
"Ubuntu Shut down app",
"How do I install drivers for a ENTITYPRODUCT?",
"Upgrading from ENTITYNOUN to ENTITYNOUN"
]
},
{
"author": "DisgruntledGoat",
"url": "http://askubuntu.com/questions/21768/software-to-create-a-video-slideshow",
"entities": [],
"answer": {
"text": "<p>You can try <a href=\"http://packages.ubuntu.com/imagination\" rel=\"nofollow noreferrer\">imagination</a> from the repository.</p>\n\n<pre><code>sudo apt-get install imagination\n</code></pre>\n\n<p>Imagination is a lightweight and user-friendly DVD slide show maker with\na clean interface and few dependencies. It only requires the ffmpeg encoder\nto produce a movie to be burned with another application.</p>\n\n<p>It currently features over 50 transition effects. Exporting the slideshow in FLV format is supported as well.</p>\n",
"author": "Sabacon"
},
"training": false,
"inputs": [
"There is software that can be used to create a video slideshow.",
"There is a software that can be used to create a video slideshow.",
"Is it possible to create a video slideshow with software?",
"Is it possible to create a video slideshow?",
"Is there software that can create a video slideshow?",
"Is it possible to create a video slideshow using software?",
"There is software that can create a video slideshow.",
"Is there a software that can create a video slideshow?",
"Is there software that will create a video slideshow?",
"Is there a software that will create a video slideshow?",
"Software to create a video slideshow?"
],
"match": "Software to create a video slideshow?",
"templates": [
"Software to create a video slideshow?",
"What do you use to edit Microsoft ENTITYPRODUCT documents (docx)?",
"Is there a Document scanning and archiving software?",
"How to upgrade Ubuntu ENTITYNOUN to ENTITYNOUN if I have dual boot with windows 7?",
"How to upgrade Ubuntu ENTITYNOUN to ENTITYNOUN via terminal?",
"No matter what I do Ubuntu ENTITYNOUN does not recognize ENTITYPRODUCT"
]
},
{
"author": "Tom Brito",
"url": "http://askubuntu.com/questions/102675/is-there-a-project-management-software-for-ubuntu-like-microsoft-project",
"entities": [
{
"text": "Project",
"entityType": "SoftwareName",
"holmesIdentifier": "ENTITYPRODUCT"
}
],
"answer": {
"text": "<p>I can also suggest <a href=\"http://apt.ubuntu.com/p/planner\" rel=\"nofollow noreferrer\">planner</a> <a href=\"http://apt.ubuntu.com/p/planner\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install planner\"></a>. It's available in Ubuntu software-center.</p>\n\n<p><a href=\"http://www.taskjuggler.org/\" rel=\"nofollow noreferrer\">TaskJuggler</a> is really powerful but also a bit harder to use and is not available in Software Center.</p>\n",
"author": "roadmr"
},
"training": false,
"inputs": [
"Is there a project management software similar to Microsoft Project?",
"There is a project management software for Microsoft Project.",
"Is there a project management software like Microsoft Project?",
"Is there a project management software like Microsoft Project for Ubuntu?",
"Is it possible to use a project management software like Microsoft Project?",
"Is there a project management software like Microsoft Project for Linux?",
"Is there a project management software like Microsoft Project available for Ubuntu?",
"Is there a project management software for Ubuntu like Microsoft Project?"
],
"match": "Is there a project management software for Ubuntu like Microsoft ENTITYPRODUCT?",
"templates": [
"Is there a project management software for Ubuntu like Microsoft ENTITYPRODUCT?",
"Which application do you recommend for watching TV (DVB)?",
"How to upgrade from Ubuntu ENTITYNOUN to ENTITYNOUN?",
"How can I make shutdown not require admin password?",
"shutdown 5:30pm every day",
"Upgrading from ENTITYNOUN to ENTITYNOUN"
]
},
{
"author": "Amey Jah",
"url": "http://askubuntu.com/questions/41601/is-there-any-recovery-software-available-for-ext4",
"entities": [],
"answer": {
"text": "<p>Take a look at this:</p>\n\n<p><a href=\"http://askubuntu.com/questions/25311/best-tool-to-recover-removed-files/25364#25364\">Best tool to recover removed files</a></p>\n\n<p><a href=\"http://askubuntu.com/questions/32685/formatted-and-lost-6-years-worth-of-photo-memories-any-way-to-get-this-back/32711#32711\">Formatted and lost 6 years worth of photo memories.. any way to get this back?</a></p>\n\n<p><a href=\"http://askubuntu.com/questions/13030/how-to-recover-ubuntu-partition-after-computer-failure/25366#25366\">How to recover Ubuntu partition after computer failure?</a></p>\n\n<p>Where the answers of some other people under those questions may also be helpful for you.</p>\n\n<p>Good luck!</p>\n",
"author": "Geppettvs D'Constanzo"
},
"training": false,
"inputs": [
"Is it possible to recover from ext4?",
"Is there a recovery program for ext4?",
"There is no recovery software for ext4.",
"Is there a recovery software for ext4?",
"Does ext4 have any recovery software?",
"Is there any recovery software for ext4?",
"Does ext4 have any recovery software available?",
"Is there any recovery software available for ext4?",
"Is there any recovery software for ext4 available?",
"Is there any recovery software for ext4 out there?",
"Is there any recovery software available for ext4?"
],
"match": "Is there any recovery software available for ext4?",
"templates": [
"Is there any recovery software available for ext4?",
"What blog editor software are available?",
"How do I install drivers for a ENTITYPRODUCT?",
"Doubts regarding the ENTITYNOUN upgrade (is it inevitable and unavoidable?)",
"Upgrading from ENTITYNOUN to ENTITYNOUN ( Unanswered questions )",
"How Do I Install ENTITYPRODUCT Printer in Ubuntu ENTITYNOUN?"
]
},
{
"author": "Vassilis",
"url": "http://askubuntu.com/questions/11317/what-blog-editor-software-are-available",
"entities": [],
"answer": {
"text": "<p><a href=\"http://www.scribefire.com/\">http://www.scribefire.com/</a> - Extension for FireFox and Chrome</p>\n",
"author": "StalkerNOVA"
},
"training": false,
"inputs": [
"Which editor software are available?",
"Which editor software is available?",
"What editor software can you use?",
"What editor software is available?",
"What editor software are available?",
"What editing software are available?",
"What software are available for editing?",
"What software are available for editing websites?",
"What editor software are available for use?",
"What editor software are available for the internet?",
"What blog editor software are available?"
],
"match": "What blog editor software are available?",
"templates": [
"What blog editor software are available?",
"UPNP / DLNA (client) player recommendations?",