orionweller commited on
Commit
3f03314
·
1 Parent(s): 03820e0
.gitattributes CHANGED
@@ -56,3 +56,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
58
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
58
  *.webm filter=lfs diff=lfs merge=lfs -text
59
+ msmarco.jsonl filter=lfs diff=lfs merge=lfs -text
arguana.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
beir.py ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the 'License');
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an 'AS IS' BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ # Lint as: python3
17
+
18
+ import json
19
+
20
+ import datasets
21
+
22
+ _CITATION = '''
23
+ @inproceedings{
24
+ thakur2021beir,
25
+ title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
26
+ author={Nandan Thakur and Nils Reimers and Andreas R{\"u}ckl{\'e} and Abhishek Srivastava and Iryna Gurevych},
27
+ booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
28
+ year={2021},
29
+ url={https://openreview.net/forum?id=wCu6T5xFjeJ}
30
+ }
31
+ '''
32
+
33
+ all_data = [
34
+ 'arguana',
35
+ 'climate-fever',
36
+ 'cqadupstack-android',
37
+ 'cqadupstack-english',
38
+ 'cqadupstack-gaming',
39
+ 'cqadupstack-gis',
40
+ 'cqadupstack-mathematica',
41
+ 'cqadupstack-physics',
42
+ 'cqadupstack-programmers',
43
+ 'cqadupstack-stats',
44
+ 'cqadupstack-tex',
45
+ 'cqadupstack-unix',
46
+ 'cqadupstack-webmasters',
47
+ 'cqadupstack-wordpress',
48
+ 'dbpedia-entity',
49
+ 'fever',
50
+ 'fiqa',
51
+ 'hotpotqa',
52
+ 'msmarco',
53
+ 'nfcorpus',
54
+ 'quora',
55
+ 'scidocs',
56
+ 'scifact',
57
+ 'trec-covid',
58
+ 'webis-touche2020',
59
+ 'nq'
60
+ ]
61
+
62
+ validation_data = [
63
+ "nfcorpus",
64
+ "quora",
65
+ "nq",
66
+ "hotpotqa",
67
+ "fever",
68
+ "scifact",
69
+ "fiqa",
70
+ "dbpedia-entity",
71
+ ]
72
+
73
+ _DESCRIPTION = 'dataset load script for BEIR'
74
+
75
+ _DATASET_URLS = {
76
+ data: {
77
+ 'test': f'https://huggingface.co/datasets/orionweller/beir/resolve/main/{data}.jsonl',
78
+ } for data in all_data
79
+ }
80
+
81
+ ## add also the validation data
82
+ _DATASET_URLS.update({
83
+ data + "-dev": {
84
+ 'test': f'https://huggingface.co/datasets/orionweller/beir/resolve/main/{data}.dev.jsonl',
85
+ } for data in validation_data
86
+ })
87
+
88
+ class BEIR(datasets.GeneratorBasedBuilder):
89
+ BUILDER_CONFIGS = [datasets.BuilderConfig(
90
+ version=datasets.Version('1.0.0'),
91
+ name=data, description=f'BEIR dataset: {data}.'
92
+ ) for data in all_data
93
+ ]
94
+ # add validation
95
+ BUILDER_CONFIGS += [datasets.BuilderConfig(
96
+ version=datasets.Version('1.0.0'),
97
+ name=data + "-dev", description=f'BEIR dataset: {data}-dev.'
98
+ ) for data in validation_data
99
+ ]
100
+
101
+ def _info(self):
102
+ features = datasets.Features({
103
+ 'query_id': datasets.Value('string'),
104
+ 'query': datasets.Value('string'),
105
+ })
106
+
107
+ return datasets.DatasetInfo(
108
+ # This is the description that will appear on the datasets page.
109
+ description=_DESCRIPTION,
110
+ # This defines the different columns of the dataset and their types
111
+ features=features, # Here we define them above because they are different between the two configurations
112
+ supervised_keys=None,
113
+ # Homepage of the dataset for documentation
114
+ homepage='https://github.com/beir-cellar/beir',
115
+ # License for the dataset if available
116
+ license='',
117
+ # Citation for the dataset
118
+ citation=_CITATION,
119
+ )
120
+
121
+ def _split_generators(self, dl_manager):
122
+ lang = self.config.name
123
+ downloaded_files = dl_manager.download_and_extract(_DATASET_URLS[lang])
124
+ splits = [
125
+ datasets.SplitGenerator(
126
+ name='test',
127
+ gen_kwargs={
128
+ 'filepath': downloaded_files['test'],
129
+ },
130
+ ),
131
+ ]
132
+ return splits
133
+
134
+ def _generate_examples(self, filepath):
135
+ with open(filepath) as f:
136
+ for i, line in enumerate(f):
137
+ data = json.loads(line)
138
+ qid = data['query_id'] if 'query_id' in data else data['_id']
139
+ yield qid, data
climate-fever.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
cqadupstack-android.jsonl ADDED
@@ -0,0 +1,699 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 25905, "query": "Accessing the Android Phones SMS and other feature via Data Cable"}
2
+ {"query_id": 65366, "query": "Installing TextSecure, but missing Google Play"}
3
+ {"query_id": 45631, "query": "My Camera on my android tablet isn't letting me take any pictures. help?"}
4
+ {"query_id": 16078, "query": "How to force Gmail/Android to request password every time for google account"}
5
+ {"query_id": 54590, "query": "LG L5ii move the apps from internal memory to SD card"}
6
+ {"query_id": 78682, "query": "Samsung Galaxy Grand 2 Showing less RAM"}
7
+ {"query_id": 1217, "query": "Is there a way to customize vibrate patterns?"}
8
+ {"query_id": 10414, "query": "Preventing mobile data use for select apps on non-rooted phone?"}
9
+ {"query_id": 30144, "query": "How can I track my app usage?"}
10
+ {"query_id": 12834, "query": "Broken screen while debug mode was disabled. How can I re-enable adb?"}
11
+ {"query_id": 6908, "query": "Wi-Fi tethering with HTC Magic"}
12
+ {"query_id": 34984, "query": "Samsung Galaxy Ace: will it charge me to connect to home wifi?"}
13
+ {"query_id": 54237, "query": "Galaxy Note is getting slower and less responsive"}
14
+ {"query_id": 33894, "query": "I have a Binatone Kidzstar and can't install android market or google play"}
15
+ {"query_id": 1452, "query": "How can I sync the bookmarks in the web browser?"}
16
+ {"query_id": 34507, "query": "Will my Android device change to Gingerbread when I factory reset it?"}
17
+ {"query_id": 12831, "query": "What do I need to improve performance of the Android emulator?"}
18
+ {"query_id": 34625, "query": "Where to find description of all \"/system/bin/service\" calls?"}
19
+ {"query_id": 35956, "query": "Is there any other way to get updates to frozen apps?"}
20
+ {"query_id": 21556, "query": "Contacts with and without international extensions"}
21
+ {"query_id": 24825, "query": "How to pull the apks from my android phone"}
22
+ {"query_id": 72900, "query": "Share USB reverse tethering connection via WiFi hotspot on Windows"}
23
+ {"query_id": 9199, "query": "Are there any apps for advanced Japanese learners?"}
24
+ {"query_id": 68889, "query": "How to recover my files from memo and mobilse note after format factory?"}
25
+ {"query_id": 67797, "query": "Android Version Distribution BY COUNTRY"}
26
+ {"query_id": 41023, "query": "Pinning Web Sites to Android Homescreen"}
27
+ {"query_id": 67317, "query": "Is it possible to stream from an Android Nexus tablet to an apple airport express?"}
28
+ {"query_id": 75056, "query": "Will Nexus 5 be allowed to update to Android L?"}
29
+ {"query_id": 2437, "query": "Can I use multiple Android devices with a single Google account?"}
30
+ {"query_id": 58843, "query": "Turn a Android Phone with broken screen into dedicated Web server"}
31
+ {"query_id": 32312, "query": "Will flashing re-lock my unlocked phone"}
32
+ {"query_id": 77102, "query": "no matter what i do my tablet has 0mb space available"}
33
+ {"query_id": 1102, "query": "What's with the Donut/Froyo?"}
34
+ {"query_id": 77104, "query": "How to encrypt android device without screen lock?"}
35
+ {"query_id": 2432, "query": "How to backup Angry Birds saves/data?"}
36
+ {"query_id": 3521, "query": "Is it possible to install Android on a PC?"}
37
+ {"query_id": 56784, "query": "Google Drive crashes on start"}
38
+ {"query_id": 12729, "query": "Looking for Call list Application"}
39
+ {"query_id": 2310, "query": "How will a swap partition/file affect the system?"}
40
+ {"query_id": 77106, "query": "Application to block icon movements on home pages"}
41
+ {"query_id": 801, "query": "What is the difference between jailbreaking and unlocking an Android?"}
42
+ {"query_id": 11872, "query": "Samsung Kies: 'This version of the device can not be updated'. Never?"}
43
+ {"query_id": 34618, "query": "How can one move the position of the application inside the launcher?"}
44
+ {"query_id": 29152, "query": "Set two languages simultaneously for the stock keyboard?"}
45
+ {"query_id": 12723, "query": "Move to SD Card doesn't move everything"}
46
+ {"query_id": 33526, "query": "Turning off just email notification sound"}
47
+ {"query_id": 43795, "query": "Can Android tablet read external hard drive and if so which formats?"}
48
+ {"query_id": 21520, "query": "Can't boot my Htc Wildfire S after deleting Sense"}
49
+ {"query_id": 66595, "query": "Android tablet pc will not connect to (router) wi fi"}
50
+ {"query_id": 41496, "query": "Import pdf files to google play book application"}
51
+ {"query_id": 20317, "query": "Can I change the dalvik cache location e.g. with a symbolic link?"}
52
+ {"query_id": 33512, "query": "Does Google Audit all apps that enter the market place?"}
53
+ {"query_id": 33994, "query": "What is the length and breadth of ONLY the screen in the Nexus 7?"}
54
+ {"query_id": 35931, "query": "Why is there such a difference in thr amount RAM used?"}
55
+ {"query_id": 30487, "query": "Develop Java Swing Applications on Android"}
56
+ {"query_id": 2203, "query": "How can I turn off the shutter sound for the camera on droid x running 2.2 froyo?"}
57
+ {"query_id": 10519, "query": "How do I set a custom SMS tone for a single contact?"}
58
+ {"query_id": 4623, "query": "I have sold my phone on eBay. What should I do before I send it off?"}
59
+ {"query_id": 10996, "query": "Block all sounds going out through speaker when headphone connected"}
60
+ {"query_id": 32789, "query": "How can I assign a Windows drive letter to my \"portable drive\" (Samsung Tab 10.1)?"}
61
+ {"query_id": 33515, "query": "How can I find out what app is using my GPS from the background?"}
62
+ {"query_id": 65261, "query": "1GB/8GB advertised versus 967.5 MB / 5564.6 MB actual .HELP"}
63
+ {"query_id": 64186, "query": "Wifi not working too well.. :c"}
64
+ {"query_id": 16186, "query": "Good free pdf reader for android that opens the last read page"}
65
+ {"query_id": 21654, "query": "Can someone explain how the android GPS Navigation works?"}
66
+ {"query_id": 40030, "query": "Is it possible to install unmodified, unadulterated and pure Android on a Sony Xperia S?"}
67
+ {"query_id": 17159, "query": "Use existing contact for \"Me\" in Ice Cream Sandwich"}
68
+ {"query_id": 19336, "query": "Is it possible to direct all audio output to a bluetooth headset?"}
69
+ {"query_id": 18121, "query": "How do I start/join a G+ Hangout?"}
70
+ {"query_id": 20440, "query": "application to restore/download all market applications after new rom is installed"}
71
+ {"query_id": 2462, "query": "Does Froyo fix Samsung Galaxy S I9000's GPS problem?"}
72
+ {"query_id": 2461, "query": "How to use an android phone as a wireless webcam?"}
73
+ {"query_id": 2581, "query": "App that reads images of QR codes?"}
74
+ {"query_id": 69759, "query": "Unassociate an app from a file extension?"}
75
+ {"query_id": 39160, "query": "Getting a list of applications with SMS permission"}
76
+ {"query_id": 21779, "query": "Why does the STORE button on Amazon Kindle go to the website instead of the in app store?"}
77
+ {"query_id": 23710, "query": "Rooting my phone and installing CyanogenMod. Can I ever go back?"}
78
+ {"query_id": 54144, "query": "How to NOT charge when USB debugging?"}
79
+ {"query_id": 58623, "query": "Is it possible to turn off radio without turning of wifi on Lenovo k900?"}
80
+ {"query_id": 78576, "query": "Programmatically, how does \"rooting\" a device enable access?"}
81
+ {"query_id": 60940, "query": "Not able to send media file via WhatsApp"}
82
+ {"query_id": 941, "query": "Where are log files located on Android?"}
83
+ {"query_id": 10523, "query": "selectively make contact groups silent"}
84
+ {"query_id": 50901, "query": "What's the native wallpaper resolution of HTC One?"}
85
+ {"query_id": 65394, "query": "How can i transfer phone memory apps to external SD card"}
86
+ {"query_id": 6815, "query": "Android tool to find what's taking space, and delete it?"}
87
+ {"query_id": 40383, "query": "Can apps know where you are even without GPS?"}
88
+ {"query_id": 44620, "query": "How do I make Android consider my WiFi Access Point as valid (blue?)"}
89
+ {"query_id": 65288, "query": "How do I connect a PS3 Controller with Xperia P?"}
90
+ {"query_id": 21861, "query": "Can I use my phone as an audio device via Wifi?"}
91
+ {"query_id": 17482, "query": "How can I install vanilla Android on the Kindle Fire?"}
92
+ {"query_id": 42681, "query": "\"google settings\" app"}
93
+ {"query_id": 44861, "query": "How can I use 2G voice calls in Nexus 7"}
94
+ {"query_id": 15066, "query": "How to monitor Wi-Fi usage?"}
95
+ {"query_id": 44860, "query": "Play store stuck in old country"}
96
+ {"query_id": 29109, "query": "How can I format a flash drive using terminal emulator?"}
97
+ {"query_id": 40028, "query": "Can't take screenshots on Nexus 4"}
98
+ {"query_id": 46806, "query": "Why are Android apps getting rid of \"Quit\" functionality?"}
99
+ {"query_id": 42325, "query": "Is it possible to change the system language to Japanese?"}
100
+ {"query_id": 55124, "query": "Turn On Both Wifi and Wifi Hotspot"}
101
+ {"query_id": 55366, "query": "What is DiskCacheIndex.tmp"}
102
+ {"query_id": 6949, "query": "Can I use ADB without connecting over USB?"}
103
+ {"query_id": 53064, "query": "How can I ensure reliable updates for an Android phone/device?"}
104
+ {"query_id": 59726, "query": "Can swapping a SIM while phone is on, damage the phone?"}
105
+ {"query_id": 79214, "query": "Re-rooting Nexus 4 after KTU84P Update"}
106
+ {"query_id": 2466, "query": "How do I backup and restore SMS Messages?"}
107
+ {"query_id": 29223, "query": "How can I find out the make and model of the chips in my device?"}
108
+ {"query_id": 834, "query": "How do I remove HTC Desire pre-installed Android applications?"}
109
+ {"query_id": 49079, "query": "Will my phone will get locked after upgrading to Jelly Bean?"}
110
+ {"query_id": 34948, "query": "What is the status icon that looks like a house?"}
111
+ {"query_id": 5855, "query": "how to completely disable lockscreen?"}
112
+ {"query_id": 32405, "query": "Differnce between abilities of System apps, Apps in phone memory and Apps in the SD card"}
113
+ {"query_id": 3799, "query": "Is there a Word Lens alternative/port for Android?"}
114
+ {"query_id": 34704, "query": "Why does Spotify say that there is no Internet connection available when there is one (Samsung Galaxy S)?"}
115
+ {"query_id": 21512, "query": "Transformer Prime, VPN and password protection"}
116
+ {"query_id": 68687, "query": "How to unlock Google Device Manager remote lock?"}
117
+ {"query_id": 71613, "query": "Make a calll to genymotion emulator"}
118
+ {"query_id": 71611, "query": "Recovery contact after factory reset"}
119
+ {"query_id": 72943, "query": "Does an android phone unroot itself on factory reset?"}
120
+ {"query_id": 21991, "query": "could someone please post a screenshot of the default file structure of the sd card for Android 2.3.5? I"}
121
+ {"query_id": 69779, "query": "whats app deletion"}
122
+ {"query_id": 18342, "query": "Have I erased my songs? Samsung galaxy S2"}
123
+ {"query_id": 68447, "query": "What is this fingerprint bar on my phone?"}
124
+ {"query_id": 1033, "query": "How can I prevent my HTC Desire from overheating?"}
125
+ {"query_id": 55010, "query": "google play authentiction required"}
126
+ {"query_id": 60838, "query": "How to access USB drive with android browser?"}
127
+ {"query_id": 21515, "query": "Cannot install Draw Something on Galaxy Mini GT S5570"}
128
+ {"query_id": 22841, "query": "How to enable multiple users on Google Talk for Android 2.3.4?"}
129
+ {"query_id": 45944, "query": "Google \u201cPlay Music\u201d app constantly running!"}
130
+ {"query_id": 39382, "query": "rooting Samsung Galaxy Note 2"}
131
+ {"query_id": 78472, "query": "My phone is sending messages to international number"}
132
+ {"query_id": 30332, "query": "How can I stop applications and services from running?"}
133
+ {"query_id": 33964, "query": "How can I make an actual heart symbol in a text on my htc inspire?"}
134
+ {"query_id": 12802, "query": "Factory reset to restore performance? What are the disadvantages?"}
135
+ {"query_id": 78113, "query": "Will my alarm still go off?"}
136
+ {"query_id": 78118, "query": "how to stop an app upgrading?"}
137
+ {"query_id": 32759, "query": "Disable open Google Search by sliding up from the home button \"feature\"?"}
138
+ {"query_id": 33728, "query": "Where can I get the QR code for an app on the Play Store?"}
139
+ {"query_id": 32878, "query": "Google Play app dissappeared"}
140
+ {"query_id": 4657, "query": "jar file on samsung galaxy p1000"}
141
+ {"query_id": 69770, "query": "Is it always possible to reboot the phone without removing the battery?"}
142
+ {"query_id": 30216, "query": "Google Chrome for Android: Chrome Web Store"}
143
+ {"query_id": 609, "query": "How to post a link to an android market app?"}
144
+ {"query_id": 68680, "query": "Issue with CyanogenMod softbuttons after theming"}
145
+ {"query_id": 20751, "query": "Clear Application Cache on ICS"}
146
+ {"query_id": 65069, "query": "I have the error that an application has been force stopped"}
147
+ {"query_id": 68459, "query": "-24 Google Play Error on installing eBay"}
148
+ {"query_id": 39137, "query": "Does nexus 4 work with indian network"}
149
+ {"query_id": 17584, "query": "How do I root my Kindle Fire?"}
150
+ {"query_id": 69304, "query": "Nexus 5 won't connect to my car radio via Bluetooth"}
151
+ {"query_id": 2254, "query": "Spell Check app or setting while using drop down keyboard"}
152
+ {"query_id": 29208, "query": "Locating lost android device in home"}
153
+ {"query_id": 43517, "query": "Installing to SDCard by default"}
154
+ {"query_id": 58770, "query": "Is it safe to use phone while charging with portable powerbank?"}
155
+ {"query_id": 59861, "query": "Error when downloading application from the play store: RPC: S-3"}
156
+ {"query_id": 44608, "query": "Google Maps Location History is showing an incorrect location"}
157
+ {"query_id": 43876, "query": "Decrypting TitaniumBackup files"}
158
+ {"query_id": 43998, "query": "Indic font(Kannada) is not rendering properly in Android ICS"}
159
+ {"query_id": 20513, "query": "What is the best pre-stealing practice?"}
160
+ {"query_id": 54175, "query": "How can I download apps from Google Play to my Tab using my PC's Internet connection?"}
161
+ {"query_id": 1035, "query": "How to break in a new cell phone battery?"}
162
+ {"query_id": 1156, "query": "How can I customize the list of services that pops up when I choose to \"share\" something in an app?"}
163
+ {"query_id": 27387, "query": "How can Iget different sounds for different notifications?"}
164
+ {"query_id": 56477, "query": "Can you screen save on a Nexus 4?"}
165
+ {"query_id": 7932, "query": "How can I set the language in Opera Mini 6?"}
166
+ {"query_id": 6603, "query": "Do I need to reboot my HTC Desire periodically?"}
167
+ {"query_id": 16137, "query": "iOS on Android devices"}
168
+ {"query_id": 56119, "query": "How do you add widgets to the lockscreen in KitKat?"}
169
+ {"query_id": 30448, "query": "How to move Applications from phone to SD Card?"}
170
+ {"query_id": 26170, "query": "Package file is invalid"}
171
+ {"query_id": 67136, "query": "Download previously purchased"}
172
+ {"query_id": 42771, "query": "\"Application has stopped unexpectedly\" error when starting Play Store or browser. How to fix?"}
173
+ {"query_id": 21616, "query": "Can I install additional languages on Android?"}
174
+ {"query_id": 20405, "query": "Phone not updating Market to Google Play?"}
175
+ {"query_id": 55272, "query": "Can you disable need to okay the unlock passcode?"}
176
+ {"query_id": 78373, "query": "google play uses wrong account for in-app purchases"}
177
+ {"query_id": 33941, "query": "Is there a way to extend the MK802 III's memory?"}
178
+ {"query_id": 29452, "query": "Problem partitioning SD"}
179
+ {"query_id": 32974, "query": "Trying to factory reset, but it's not listed at all as an option"}
180
+ {"query_id": 30674, "query": "How can I control both volume and track skip on my Android device from my headphones?"}
181
+ {"query_id": 3106, "query": "Does ClockworkMod Recovery's \"Wipe Data\" command also wipe the SD card?"}
182
+ {"query_id": 57211, "query": "Is it possible to send and receive faxes over an Android phone?"}
183
+ {"query_id": 59632, "query": "Which Android handsets support in-line call recording?"}
184
+ {"query_id": 81540, "query": "Does having CWM mean bootloader is unlocked?"}
185
+ {"query_id": 54069, "query": "Rooting - how to, and what are the consequences\\risks"}
186
+ {"query_id": 58665, "query": "Why my nexus 5 is not getting on air update for Android 4.4.2"}
187
+ {"query_id": 39128, "query": "Is it possible to pre-download a YouTube video to view it later offline?"}
188
+ {"query_id": 32979, "query": "Internal hard disk partitions (sda2) not showing in android system"}
189
+ {"query_id": 748, "query": "Can you connect USB devices to an Android phone?"}
190
+ {"query_id": 66285, "query": "What is the list of commands to dictate punctuation, capitalization and line breaks?"}
191
+ {"query_id": 33702, "query": "Google play fails to install application with RPC:S-5:AEC-0"}
192
+ {"query_id": 4319, "query": "How can I get Kies to detect my Galaxy S GT-i9000 on Windows 7?"}
193
+ {"query_id": 62373, "query": "Google Play Store - No Connection (Galaxy Note 3)"}
194
+ {"query_id": 43176, "query": "Home button or back button to leave an app?"}
195
+ {"query_id": 65762, "query": "How do I remove gapps from CyanogenMod"}
196
+ {"query_id": 62376, "query": "Set Default Keyboard without having to long hold text input?"}
197
+ {"query_id": 64676, "query": "What is the difference between AOSP and CM/AOKP?"}
198
+ {"query_id": 19184, "query": "Is it possible to permanently supress app updates?"}
199
+ {"query_id": 63346, "query": "PHone rebooting when screen turns off"}
200
+ {"query_id": 22357, "query": "Amazon Android App Store International"}
201
+ {"query_id": 15828, "query": "If I flash my ROM or wipe my device after buying an app, will I have to buy it again?"}
202
+ {"query_id": 15947, "query": "Always seeing \"No connection: Retry\" in Android Market"}
203
+ {"query_id": 16915, "query": "Where on the file system are SMS messages stored?"}
204
+ {"query_id": 632, "query": "Alternatives to the Android Market"}
205
+ {"query_id": 23440, "query": "How do I get Youtube Links to open in the YouTube app and not a browser?"}
206
+ {"query_id": 33496, "query": "Where are the developer options in Android 4.2?"}
207
+ {"query_id": 78964, "query": "How to have notifications show up on my app on desktop"}
208
+ {"query_id": 47650, "query": "What is the difference between the Linux Kernel and the Android Kernel?"}
209
+ {"query_id": 47651, "query": "search somebody from contacts with the numpads"}
210
+ {"query_id": 4447, "query": "What percentage of users use each of the Android versions?"}
211
+ {"query_id": 37855, "query": "Android tablet won't reboot after rebooting using volume and power buttons"}
212
+ {"query_id": 37736, "query": "Why do I have so little unused RAM?"}
213
+ {"query_id": 15701, "query": "What happens to a running program when \"home\" button is pressed in Android phone?"}
214
+ {"query_id": 15943, "query": "Can I install applications onto sd card with Android 2.1?"}
215
+ {"query_id": 27816, "query": "Unable to move few Apps to SD Card"}
216
+ {"query_id": 46552, "query": "Copy contacts from iCloud to Android phone"}
217
+ {"query_id": 7731, "query": "What is an \"Emergency Call,\" and can I set number for it?"}
218
+ {"query_id": 1198, "query": "How to use an Android device as bluetooth USB dongle?"}
219
+ {"query_id": 80901, "query": "ROOTING THE ANDROID DEVICE"}
220
+ {"query_id": 30095, "query": "How does the typical Android boot process work?"}
221
+ {"query_id": 73275, "query": "Is it possible to install applications on the SD card in KitKat 4.4?"}
222
+ {"query_id": 22003, "query": "install certificates"}
223
+ {"query_id": 64569, "query": "mm-qcamera-daemon causing massive battery drain"}
224
+ {"query_id": 67714, "query": "why smartphones become laggey and slow with time?"}
225
+ {"query_id": 25635, "query": "Turning on Wi-Fi on demand"}
226
+ {"query_id": 24427, "query": "Can't mount sdcard from Recovery Mode/Clockworkmod"}
227
+ {"query_id": 59098, "query": "Cant add exchange Account 4.1.2"}
228
+ {"query_id": 73392, "query": "Android phone fell in salt water"}
229
+ {"query_id": 50040, "query": "How to install games from APK Mania on MicroSD Card"}
230
+ {"query_id": 53672, "query": "How do you close apps in Android so they aren't taking up resources?"}
231
+ {"query_id": 51252, "query": "Remote factory reset and changing Google password"}
232
+ {"query_id": 77981, "query": "Installing cyanogenmod 11"}
233
+ {"query_id": 14628, "query": "What's the difference between an AOSP ROM and a stock ROM?"}
234
+ {"query_id": 55733, "query": "How to check if application on Google Play would work on other (not own) phone?"}
235
+ {"query_id": 25750, "query": "Unable to download from an authenticated webserver"}
236
+ {"query_id": 35541, "query": "Why did /sdcard/ turn into /sdcard/0/ with 4.2?"}
237
+ {"query_id": 78711, "query": "Older version of Plenty of Fish or POF application"}
238
+ {"query_id": 15953, "query": "Has anyone determined why the Droid X with Gingerbread turns itself back on?"}
239
+ {"query_id": 21151, "query": "Red Star And Green Cross Icons?"}
240
+ {"query_id": 5667, "query": "How do I perform a full pre-rooting backup of an Android phone?"}
241
+ {"query_id": 61297, "query": "How to use PC internet on Android mobile via Bluetooth"}
242
+ {"query_id": 25847, "query": "Will I lose any apps / data if I upgrade my phone's OS?"}
243
+ {"query_id": 48720, "query": "I modified vold.fstab and lost access to my SD card"}
244
+ {"query_id": 73045, "query": "How can I access my intranet site in mobile"}
245
+ {"query_id": 2172, "query": "What's the most effortless way for \"cloud\" back up of photos taken with an Android phone?"}
246
+ {"query_id": 80936, "query": "Cell standby use about 35-50% of total battery?"}
247
+ {"query_id": 10118, "query": "Does anyone else have issues with Google Talk for Android always \"losing connection to server\"?"}
248
+ {"query_id": 14718, "query": "\"keep screen on if USB debugging\" application?"}
249
+ {"query_id": 38806, "query": "Does anyone know this icon?"}
250
+ {"query_id": 21240, "query": "Is there a way to temporarily disable hosts and flush the DNS?"}
251
+ {"query_id": 10351, "query": "How to give root access to apps that don't request it?"}
252
+ {"query_id": 12650, "query": "What is Flash ClockworkMod Recovery?"}
253
+ {"query_id": 55624, "query": "Control volume of particular app"}
254
+ {"query_id": 55866, "query": "Is it possible to kill your phone sofwarematicly?"}
255
+ {"query_id": 61184, "query": "iRola DX752 will not charge"}
256
+ {"query_id": 12412, "query": "Android - Change Google account on Nexus S"}
257
+ {"query_id": 45446, "query": "How do I root Android 2.3.3 on HTC Desire?"}
258
+ {"query_id": 26826, "query": "Transfer all Contacts in Phone and Sim to Google Contacts"}
259
+ {"query_id": 63014, "query": "Can't see profile pics of friends from an unknown number"}
260
+ {"query_id": 48839, "query": "SMS converts to MMS and only sends when data mobile is on"}
261
+ {"query_id": 24646, "query": "Is there any way to sync a subset of my Google Contacts to my Android?"}
262
+ {"query_id": 11339, "query": "How do I make Adobe Flash work with Firefox?"}
263
+ {"query_id": 53572, "query": "Why does my phone need 20MB before it can recieve text messages and can I do anything about this?"}
264
+ {"query_id": 51153, "query": "How to find the unboxing date of an Android device?"}
265
+ {"query_id": 32373, "query": "35 mb in proc folder"}
266
+ {"query_id": 7866, "query": "Unwanted folders showing up in Gallery. Can they be removed?"}
267
+ {"query_id": 58906, "query": "Xperia sola rooting help"}
268
+ {"query_id": 11333, "query": "Where is a downloaded .apk placed in Android phones?"}
269
+ {"query_id": 549, "query": "Is Internet tethering possible on Android phone via bluetooth or WiFi?"}
270
+ {"query_id": 61198, "query": "robot dies with red triangle when restarting from 4.2 install on stock Samsung Galaxy Nexus"}
271
+ {"query_id": 5206, "query": "Wifi goes off on screen lock?"}
272
+ {"query_id": 12665, "query": "How do I disable corporate exchange security policy on Samsung Galaxy S 2?"}
273
+ {"query_id": 20256, "query": "Does Android hide some amount of RAM from the User?"}
274
+ {"query_id": 25707, "query": "Why my phone is always out of space recently, but I didn't install any new software"}
275
+ {"query_id": 4251, "query": "Remote login into the phone from a PC"}
276
+ {"query_id": 65442, "query": "Howto encrypt my external SD card"}
277
+ {"query_id": 25948, "query": "Recover deleted content from userdata partition?"}
278
+ {"query_id": 47613, "query": "How to optimize my Rooted desire bravo for gaming?"}
279
+ {"query_id": 63386, "query": "Android x86 Issues"}
280
+ {"query_id": 7763, "query": "Application for automatic synchronization of remote folders?"}
281
+ {"query_id": 44220, "query": "Need to unlock Coby tablet; MicroSD card not formatted"}
282
+ {"query_id": 63025, "query": "How can I customize the time to update my android applications?"}
283
+ {"query_id": 66538, "query": "Clear Google Play Failed Download Space"}
284
+ {"query_id": 67504, "query": "Streaming sound from laptop to android"}
285
+ {"query_id": 23404, "query": "How to make run only a single application with all other application stopped?"}
286
+ {"query_id": 77670, "query": "Charging Nexus 5 to 100%"}
287
+ {"query_id": 12639, "query": "What do I say to make a new line when using voice recognition?"}
288
+ {"query_id": 13605, "query": "How do I fix \"Unknown reason -110\"?"}
289
+ {"query_id": 52498, "query": "Enable tamil font without rooting the phone"}
290
+ {"query_id": 55887, "query": "Samsung Galaxy S4 SCH-I545 official updates via Kies fails with: \"Software update is temporarily unavailable. Try again later.\""}
291
+ {"query_id": 53467, "query": "Do I have a virus on my phone? A message from an Android app says so"}
292
+ {"query_id": 32009, "query": "Why my S3 device sounds when magnetic card is put on its back?"}
293
+ {"query_id": 10336, "query": "Amazon App Store - Location of the downloaded APK"}
294
+ {"query_id": 11546, "query": "Android chroot ubuntu - is it possible to get ubuntu to recognise usb devices"}
295
+ {"query_id": 23537, "query": "Transferring Apps from sd card to another sd card(HTC Desire HD)"}
296
+ {"query_id": 19279, "query": "How can I root my Nexus One?"}
297
+ {"query_id": 5471, "query": "Problem with my thumbnails in gallery"}
298
+ {"query_id": 7772, "query": "How to access internet on my HTC Desire from my pc with USB?"}
299
+ {"query_id": 18065, "query": "How can I access my Google Reader entries offline?"}
300
+ {"query_id": 48931, "query": "How to change System Language in Android?"}
301
+ {"query_id": 7774, "query": "Suggestions for syncing data to someone besides Google? Funambol?"}
302
+ {"query_id": 4267, "query": "How can I configure my phone for MMS?"}
303
+ {"query_id": 80703, "query": "Why am I running out of space on my Galaxy S2?"}
304
+ {"query_id": 30293, "query": "How can I change the user agent string sent by Chrome on my Nexus 7?"}
305
+ {"query_id": 67878, "query": "Want to try reformatting Damaged SD Card"}
306
+ {"query_id": 80943, "query": "User 0 on notification screen"}
307
+ {"query_id": 73075, "query": "ADB shell: change IME method gives error \"Unknown ID: null\""}
308
+ {"query_id": 21119, "query": "Is it ok to charge my Nexus S with an iPhone power adaptor?"}
309
+ {"query_id": 73197, "query": "Deactivation of cell broadcast of HTC onemax dual sim (AT860)"}
310
+ {"query_id": 32115, "query": "More internal memory or less memory + SD card"}
311
+ {"query_id": 52140, "query": "How to reach local computer via machine name instead of IP?"}
312
+ {"query_id": 32598, "query": "How to root the new version of the ONE X"}
313
+ {"query_id": 77542, "query": "\"adb devices\" shows device as \"unauthorized\". How can I fix this?"}
314
+ {"query_id": 6557, "query": "Messages on computer?"}
315
+ {"query_id": 9826, "query": "How to lock screen besides pressing Nexus S right side power button"}
316
+ {"query_id": 43482, "query": "Double Security for Gmail"}
317
+ {"query_id": 33329, "query": "How to make cell phone using GPRS/3G a WiFi-Hotspot"}
318
+ {"query_id": 22778, "query": "See Youtube videos in Anaglyph mode"}
319
+ {"query_id": 24959, "query": "Cannot see my device in Dalvik Debug Monitor"}
320
+ {"query_id": 6693, "query": "Support for Multiple Users on same device"}
321
+ {"query_id": 23508, "query": "Aoson M19 -- Device Drivers"}
322
+ {"query_id": 23620, "query": "Updating GPlus Signature Error"}
323
+ {"query_id": 73089, "query": "How to block texts from certain number"}
324
+ {"query_id": 23622, "query": "How do I keep my Android 4.0.3 phone awake when USB connected?"}
325
+ {"query_id": 33798, "query": "How to migrate applications to other user account without downloading the applications again?"}
326
+ {"query_id": 75382, "query": "Odin vs Clockworkmod"}
327
+ {"query_id": 75260, "query": "How can i transfer my whatsapp chat history to my new phone?"}
328
+ {"query_id": 36706, "query": "LG L3 : difference between system memory and internal memory"}
329
+ {"query_id": 81832, "query": "Xperia Go: Boot into Recovery Mode"}
330
+ {"query_id": 697, "query": "How to open Microsoft Excel files?"}
331
+ {"query_id": 338, "query": "Is there any app for Stack Exchange?"}
332
+ {"query_id": 6567, "query": "Can gmail notifications be customized by label?"}
333
+ {"query_id": 54337, "query": "How can I make a message appears on my PC when my phone is ringing?"}
334
+ {"query_id": 11885, "query": "Video streaming from PC to Android?"}
335
+ {"query_id": 11884, "query": "Would a Class 10 MicroSDHC card ever be worth it on a Smartphone (Samsung Galaxy S 2)?"}
336
+ {"query_id": 36822, "query": "Is it possible to filter Google Play search results by permission?"}
337
+ {"query_id": 32106, "query": "List all free application on google play"}
338
+ {"query_id": 5251, "query": "How to enable real text prediction for android / stock keyboard on LG optimus one?"}
339
+ {"query_id": 47822, "query": "Android File Transfer problem"}
340
+ {"query_id": 64266, "query": "Galaxy s2 data retrieval"}
341
+ {"query_id": 3079, "query": "How to play a YouTube clip in background/minimised?"}
342
+ {"query_id": 69837, "query": "Change default Hotspot IPAddress (192.168.43.1) or mac address"}
343
+ {"query_id": 80723, "query": "There is no os in my htc butterfly in recovery mode. Help!"}
344
+ {"query_id": 81812, "query": "Simultaneity connect 2 Bluetooth devices (keyboard and a mouse)"}
345
+ {"query_id": 23513, "query": "How often app is used?"}
346
+ {"query_id": 3072, "query": "In my Samsung Galaxy S under Settings - Status - Phone number is says 'unknown': Why?"}
347
+ {"query_id": 75030, "query": "File deleting problems after Android v4.4.2 upgrade?"}
348
+ {"query_id": 52044, "query": "How to copy my contacts with a broken touchscreen and buttons to the computer"}
349
+ {"query_id": 77444, "query": "BLUETOOTH HEADSET USING ANDROID"}
350
+ {"query_id": 30030, "query": "Record Speaker-Out Sound (not microphone)"}
351
+ {"query_id": 53497, "query": "Android app for decorating destination numbers"}
352
+ {"query_id": 52046, "query": "Ways to remove android device encryption"}
353
+ {"query_id": 53256, "query": "Is it possible to mount .iso files (virtual optical drive) on Android?"}
354
+ {"query_id": 4158, "query": "HTC Desire Z Home Screen has Stopped Rotating, wat do?"}
355
+ {"query_id": 5005, "query": "Android Market Stopped Working"}
356
+ {"query_id": 33308, "query": "Samsung Galaxy Tab, charging technique through USB Cable"}
357
+ {"query_id": 64381, "query": "Workaround for Android 4.4 not being able to write to SD cards?"}
358
+ {"query_id": 8772, "query": "App for running a (simple) web server on Android?"}
359
+ {"query_id": 75848, "query": "how can i acces files on my pc remotely from my android?"}
360
+ {"query_id": 18930, "query": "How to track device locations in an office"}
361
+ {"query_id": 12033, "query": "Email application with notifications only for specified contacts (standard SMTP/POP3/IMAP)"}
362
+ {"query_id": 63983, "query": "Possible to set custom ringtones for Nexus 5 contact groups?"}
363
+ {"query_id": 61323, "query": "i have lost my images by deleting them but now i want them back"}
364
+ {"query_id": 24379, "query": "What is this VPN setting good for?"}
365
+ {"query_id": 7680, "query": "When will my device get the Android 3.x update (Honeycomb)?"}
366
+ {"query_id": 28851, "query": "Increase vibrate strength"}
367
+ {"query_id": 28970, "query": "How to make point to point VOIP call between two Android devices?"}
368
+ {"query_id": 18935, "query": "How can I disable or password protect my device's 'factory reset' function?"}
369
+ {"query_id": 13368, "query": "Always shows \"Local calendar cannot sync with Google calendar. You need a google account.\""}
370
+ {"query_id": 51645, "query": "Can `Phone Calls` application permission allow developer to read my contact book?"}
371
+ {"query_id": 81055, "query": "Captive portal on Android is this Feasible?"}
372
+ {"query_id": 45071, "query": "Multiple Gmail notifications"}
373
+ {"query_id": 4062, "query": "How do I change the default phone number?"}
374
+ {"query_id": 54919, "query": "rooting xperia tipo dual st21i2x"}
375
+ {"query_id": 6240, "query": "2.1 as a secure access point?"}
376
+ {"query_id": 4064, "query": "How to put a Call contact using Skype shortcut widget on the home screen?"}
377
+ {"query_id": 45069, "query": "Show messages on lock screen"}
378
+ {"query_id": 28745, "query": "USB charging in host mode"}
379
+ {"query_id": 27415, "query": "How to set up Google Apps Gmail on an Android -phone?"}
380
+ {"query_id": 79085, "query": "HTC One Mini data recovery after root"}
381
+ {"query_id": 27417, "query": "Galaxy phone turns on every minute for no reason"}
382
+ {"query_id": 483, "query": "How can I get my Chrome-synced bookmarks in an Android device?"}
383
+ {"query_id": 64848, "query": "How do I check if my nexus 7 is from 2012 or 2013?"}
384
+ {"query_id": 65816, "query": "How to change IP pool for WiFi tethering on Nexus 5"}
385
+ {"query_id": 23055, "query": "What is error code 495 on Google Play and the YouTube app?"}
386
+ {"query_id": 17736, "query": "How can I switch launchers on the Samsung Galaxy SII Epic"}
387
+ {"query_id": 61210, "query": "Can you remotely download AndroidLost to your phone if your phone battery is dead?"}
388
+ {"query_id": 15434, "query": "What info does Google backup?"}
389
+ {"query_id": 8536, "query": "Restrict access to device settings"}
390
+ {"query_id": 12047, "query": "How do I import user data from a ROM Manager backup?"}
391
+ {"query_id": 50448, "query": "Can tablets differentiate between regular wi-fi and mobile hot spot?"}
392
+ {"query_id": 18823, "query": "How to remove Google Account that is set for Android Market in device?"}
393
+ {"query_id": 6494, "query": "Restrict market updates to WiFi network"}
394
+ {"query_id": 8674, "query": "Can I set the default browser differently for different websites?"}
395
+ {"query_id": 12250, "query": "How can I disable cellular data on an Android device?"}
396
+ {"query_id": 15640, "query": "VLC for Android tablets"}
397
+ {"query_id": 8436, "query": "Dropbox for Android folder location"}
398
+ {"query_id": 9767, "query": "Other than portability, are there any other advantages (or disadvantages) to storing apps on external storage?"}
399
+ {"query_id": 62552, "query": "Undo functionality while editing text"}
400
+ {"query_id": 40963, "query": "How do I remove previously download apps from my Google Play account?"}
401
+ {"query_id": 64974, "query": "Android 4.4 default button restoration?"}
402
+ {"query_id": 28711, "query": "Find lost acer android tablet without a tracker installed"}
403
+ {"query_id": 58056, "query": "How to change the storage device mountpoints"}
404
+ {"query_id": 38409, "query": "Scripting Android"}
405
+ {"query_id": 15645, "query": "How to read out the data in HTC Desire SMS backup file?"}
406
+ {"query_id": 14677, "query": "Browser's default search engine"}
407
+ {"query_id": 14795, "query": "Any way to retrieve phone number dialed while in airplane mode?"}
408
+ {"query_id": 13102, "query": "Is there a way to blacklist SSIDs?"}
409
+ {"query_id": 36468, "query": "How to get rid of bogus \"Phone storage full\" message (cannot send SMSs)"}
410
+ {"query_id": 45054, "query": "forgot my google account password"}
411
+ {"query_id": 15404, "query": "Is it possible to connect a USB microphone to an Android phone or tablet?"}
412
+ {"query_id": 8321, "query": "What Tasker Profiles do you use?"}
413
+ {"query_id": 46259, "query": "Google+ Photo Backup Failed"}
414
+ {"query_id": 59270, "query": "App icons disappear from home screen on app update"}
415
+ {"query_id": 12262, "query": "Android Software or Device to present Application on Screen"}
416
+ {"query_id": 37, "query": "How do I change the name of my Android device?"}
417
+ {"query_id": 7237, "query": "Is it possible to change how Froyo hyphenates phone numbers?"}
418
+ {"query_id": 75755, "query": "Android Play store"}
419
+ {"query_id": 38510, "query": "LG Optimus Logic - Moving apps to SD"}
420
+ {"query_id": 24126, "query": "How to root Coby Kyros - mid7016 tablet"}
421
+ {"query_id": 27996, "query": "Failing to update android 4.1 - Galaxy Nexus"}
422
+ {"query_id": 25693, "query": "How to have a long Standby and Battery -life?"}
423
+ {"query_id": 52403, "query": "How do I decrypt files on SD card that I encrypted on a different device?"}
424
+ {"query_id": 12265, "query": "What is SNS App?"}
425
+ {"query_id": 37787, "query": "LG Lucid doesn't recognize SD card as extra memory when dealing with photos"}
426
+ {"query_id": 1805, "query": "My Samsung Galaxy S front-facing camera doesn't work in camera app, Gtalk or Skype -- How can I use it?"}
427
+ {"query_id": 45, "query": "How to monitor the amount of data traffic?"}
428
+ {"query_id": 9422, "query": "Reinstalling purchased apps on a new phone?"}
429
+ {"query_id": 29907, "query": "Google Services hogging data - how to stop it?"}
430
+ {"query_id": 9541, "query": "Why is \"insufficient storage\" wrongly reported when installing an .apk via adb?"}
431
+ {"query_id": 47577, "query": "Battery percentage going down while charging!"}
432
+ {"query_id": 75889, "query": "QR-code reader keyboard"}
433
+ {"query_id": 13683, "query": "Why does the 3G connection drop issue happen on all Verizon 4G LTE handsets?"}
434
+ {"query_id": 14651, "query": "Which one is more suitable Samsung Kies or PC Studio for Samsung GT-B7722?"}
435
+ {"query_id": 7003, "query": "Markdown note taking with Dropbox sync"}
436
+ {"query_id": 12470, "query": "How can data on an unrooted phone be backed up?"}
437
+ {"query_id": 74798, "query": "Apps which change region in google play store"}
438
+ {"query_id": 8576, "query": "Separate ringtone for calls from numbers not in the contact list?"}
439
+ {"query_id": 47213, "query": "How can I turn off text message (SMS) sync to e-mail inbox on Samsung Galaxy S4?"}
440
+ {"query_id": 9545, "query": "What are the security disadvantages of rooting an Android phone?"}
441
+ {"query_id": 25422, "query": "How can I automatically disable the onscreen keyboard when a Bluetooth keyboard is connected?"}
442
+ {"query_id": 35351, "query": "LG Optimus Logic Transferring apps to Micro SD instead of internal memory"}
443
+ {"query_id": 390, "query": "How to backup an Android device?"}
444
+ {"query_id": 75520, "query": "Can I change the way photos are numbered?"}
445
+ {"query_id": 74672, "query": "Difference between /storage/emulated/0/ and /storage/emulated/legacy/?"}
446
+ {"query_id": 62217, "query": "Backup paid app from Google Play"}
447
+ {"query_id": 8570, "query": "How to fix \"Invalid IMEI \" after Factory reset?"}
448
+ {"query_id": 152, "query": "Is there an Android PMP equivalent of the iPod Touch?"}
449
+ {"query_id": 27725, "query": "Does Bluetooth drain power when it's not in use?"}
450
+ {"query_id": 1931, "query": "I want to remotely control my Android device from my PC without rooting it. Is this possible?"}
451
+ {"query_id": 24570, "query": "Why do phones have default limited user rights (not rooted)?"}
452
+ {"query_id": 61246, "query": "Can I use an external touchscreen with the Nexus 4?"}
453
+ {"query_id": 12233, "query": "Wifi Error when turning on"}
454
+ {"query_id": 2906, "query": "Knowing which applications to stop"}
455
+ {"query_id": 8449, "query": "How can I receive phone calls through Wi-Fi on an Android phone?"}
456
+ {"query_id": 54839, "query": "How to lower down the volume more than by default?"}
457
+ {"query_id": 16836, "query": "How do I remove a review I've written from the Android Market app?"}
458
+ {"query_id": 77838, "query": "How to find release date for Google Play apps?"}
459
+ {"query_id": 37417, "query": "How to change camera default save location?"}
460
+ {"query_id": 64520, "query": "How to stop Android assuming all wi-fi connections give internet access"}
461
+ {"query_id": 14662, "query": "minimal hardware requirements for Android"}
462
+ {"query_id": 7135, "query": "Difference between Super LCD screen of Nexus S and Super AMOLED screen of Samsung Galaxy S -- Which is better?"}
463
+ {"query_id": 36794, "query": "play & loop video on startup"}
464
+ {"query_id": 46597, "query": "Mini Calendar Widget not updating to today"}
465
+ {"query_id": 47202, "query": "How to remove this sliding app section?"}
466
+ {"query_id": 62349, "query": "How can I stop being redirected to the App Store/Google Store by dodgy ad-scripts?"}
467
+ {"query_id": 40813, "query": "Add user (personal) dictionary to Android stock keyboard for unsupported languages"}
468
+ {"query_id": 40934, "query": "Use an Android tablet as a Wacom drawing tablet for a PC?"}
469
+ {"query_id": 39707, "query": "Is there a way to hide pictures from being shown in Gallery"}
470
+ {"query_id": 82179, "query": "Charging related question"}
471
+ {"query_id": 38610, "query": "resolve zeroconf-style \"hostname.local\" names"}
472
+ {"query_id": 76976, "query": "How to Install App as System App"}
473
+ {"query_id": 55933, "query": "Possible digitizer problem?"}
474
+ {"query_id": 16962, "query": "How can I prevent long SMS messages from auto-converting to MMS?"}
475
+ {"query_id": 2916, "query": "Is there any way to change the emoticons in the standard android sms app?"}
476
+ {"query_id": 12129, "query": "Is there any browser that allows to view the source?"}
477
+ {"query_id": 16725, "query": "Problems with downloading apps"}
478
+ {"query_id": 14426, "query": "Screen recording tool for the samsung galaxy tab"}
479
+ {"query_id": 65860, "query": "Inkpad Notepad failing to install"}
480
+ {"query_id": 20198, "query": "Do I have to install a custom ROM if I root?"}
481
+ {"query_id": 9327, "query": "Auto login to wifi networks"}
482
+ {"query_id": 63322, "query": "Disable screen lock on samsung galaxy pocket gt s5300"}
483
+ {"query_id": 9325, "query": "icons for Android"}
484
+ {"query_id": 27821, "query": "Android phone discharges when it has 20%"}
485
+ {"query_id": 22133, "query": "How do I clear learned words?"}
486
+ {"query_id": 65744, "query": "Show Android's screen full-screen on a laptop"}
487
+ {"query_id": 40924, "query": "Block apps from accessing the Internet on Android device"}
488
+ {"query_id": 5084, "query": "How do I change the default Complete Action With?"}
489
+ {"query_id": 40917, "query": "wpa_cli not found on rooted device?"}
490
+ {"query_id": 11129, "query": "SMS messages just have \"null\""}
491
+ {"query_id": 13662, "query": "How to set MP3 ringtone in Android (Nexus S)"}
492
+ {"query_id": 77858, "query": "how to take a backup of my calender events in galaxy ace duos"}
493
+ {"query_id": 21280, "query": "Gift app on Google Play"}
494
+ {"query_id": 78828, "query": "Nexus 4 not connecting to google server(haven't cleared google service framework)"}
495
+ {"query_id": 62120, "query": "Can an app make phone calls in the background"}
496
+ {"query_id": 42097, "query": "How can I root my galaxy S3 i9300 on android 4.2.2 Jelly Bean?"}
497
+ {"query_id": 21296, "query": "How can I find out the Wi-Fi password from android setting"}
498
+ {"query_id": 64547, "query": "Is it possible to \"hard-wire\" an app so that it is the only thing accessible to users?"}
499
+ {"query_id": 65878, "query": "How to prevent android from auto-sync'ing gmail contacts and photos"}
500
+ {"query_id": 22148, "query": "If I use free WiFi in a hotspot, can data be easily sniffed?"}
501
+ {"query_id": 26745, "query": "Can Google Play be installed on Andoid Virtual Device, running API 10 (Android 2.3.3)?"}
502
+ {"query_id": 19094, "query": "How can I restore IMEI code after factory reset?"}
503
+ {"query_id": 22028, "query": "mobile phone calls on Huawei MediaPad"}
504
+ {"query_id": 1600, "query": "Is there a good app that lets me to the app updates in one go?"}
505
+ {"query_id": 39809, "query": "Insufficient memory to download apps from playstore?"}
506
+ {"query_id": 32298, "query": "How to tether WiFi-internetconnection with Nexus 7 on a PC without WLAN via USB?"}
507
+ {"query_id": 55953, "query": "What is this N-shaped icon on my HTC One?"}
508
+ {"query_id": 76996, "query": "confusion about external memory"}
509
+ {"query_id": 77601, "query": "how to freeze/hibernate system apps in non-root android mobilephones"}
510
+ {"query_id": 14764, "query": "Android Market gone after emulator reboot"}
511
+ {"query_id": 45361, "query": "If I delete a game that I've downloaded from google play, can I still install it later?"}
512
+ {"query_id": 12587, "query": "Configuring Background Images"}
513
+ {"query_id": 14884, "query": "How can I get Google's two-step verification to work?"}
514
+ {"query_id": 53898, "query": "Pulling boot.img"}
515
+ {"query_id": 15615, "query": "Share WIFI to Computer?"}
516
+ {"query_id": 36899, "query": "What are \"Manual Updates\" in Google Play Store?"}
517
+ {"query_id": 39805, "query": "Removing second SIM signal sign from notification"}
518
+ {"query_id": 44270, "query": "How can I reduce screen brightness below the minimum without an app?"}
519
+ {"query_id": 12347, "query": "What can cause \"Android OS\" process to use high percentage of battery?"}
520
+ {"query_id": 39230, "query": "How do I scroll to the top of a list?"}
521
+ {"query_id": 42761, "query": "Connecting to Adhoc Wifi"}
522
+ {"query_id": 68235, "query": "Data sms need info"}
523
+ {"query_id": 22912, "query": "Can deleting stock web browser cause problems?"}
524
+ {"query_id": 27007, "query": "Where does Google Play store its ebooks on an Android device?"}
525
+ {"query_id": 56252, "query": "How do enable \"Haptic Feedback\" on on my Samsung Galaxy Young GT-S5360T"}
526
+ {"query_id": 58793, "query": "What is LOST.DIR and what is its purpose?"}
527
+ {"query_id": 20855, "query": "Why does Google play show a \"no connection: retry\" error?"}
528
+ {"query_id": 10811, "query": "How to capture video stream from Android phone screen and show it on laptop?"}
529
+ {"query_id": 30541, "query": "Find lost Samsung Galaxy Ace phone?"}
530
+ {"query_id": 49271, "query": "samsung s4 has suddenly started calling through Skype instead of the local network"}
531
+ {"query_id": 56258, "query": "Application downloading error (919)"}
532
+ {"query_id": 78045, "query": "OTG cable shaport"}
533
+ {"query_id": 58318, "query": "How to revert to stock ROM Kitkat 4.4 from PACman?"}
534
+ {"query_id": 81210, "query": "How do i send a group messages to iphone users"}
535
+ {"query_id": 26157, "query": "How to find out the variant of my Galaxy Nexus?"}
536
+ {"query_id": 16236, "query": "How can I save a file rather than open it?"}
537
+ {"query_id": 18777, "query": "How to circumvent the market compatibility check?"}
538
+ {"query_id": 67157, "query": "How does the Heartbleed security vulnerability affect my Android device?"}
539
+ {"query_id": 8025, "query": "Can I use the Google Market without syncing other Google data?"}
540
+ {"query_id": 22802, "query": "WIFI share a reverse tethered connection"}
541
+ {"query_id": 38010, "query": "How to change lock screen on a phone like it is on a Kindle Fire?"}
542
+ {"query_id": 39583, "query": "How can I disable the volume warning if you raise the volume too much?"}
543
+ {"query_id": 16367, "query": "How exactly does \"root\" user access/account works? Do all applications run as root on my phone after rooting?"}
544
+ {"query_id": 39344, "query": "apps wanting setting control"}
545
+ {"query_id": 32829, "query": "How can I SSH into my Android without rooting it?"}
546
+ {"query_id": 17210, "query": "Wi-Fi icon next to apps in android market"}
547
+ {"query_id": 19992, "query": "How to transfer files using WiFi Direct between 2 ICS devices?"}
548
+ {"query_id": 9237, "query": "Disable HTML Emails in composer"}
549
+ {"query_id": 20746, "query": "I've rooted my tablet, now how do I get rid of this bloatware?"}
550
+ {"query_id": 41548, "query": "How to unlock and root a Sony Ericsson Xperia Ray ST18i with 4.1.B.1.13"}
551
+ {"query_id": 56269, "query": "What are the different signal indicators avalable on the notification bar?"}
552
+ {"query_id": 25193, "query": "Where are clicked URLs stored? Is there a way to save them into a file?"}
553
+ {"query_id": 78397, "query": "Why are USB cables of two different OEM's different"}
554
+ {"query_id": 10702, "query": "Is there an app that will let me text from my pc with the same phone number?"}
555
+ {"query_id": 79004, "query": "I can't unlock bootloader on Nexus 7 (2013)"}
556
+ {"query_id": 58322, "query": "Xperia J sound very low with earphones and headphones"}
557
+ {"query_id": 65097, "query": "THE resource for rooting your phone?"}
558
+ {"query_id": 74933, "query": "Should I switch to ART?"}
559
+ {"query_id": 37397, "query": "Where can I see if a developer responded to my comment on the Google Play?"}
560
+ {"query_id": 38002, "query": "USB storage blank or unsupported filesystem"}
561
+ {"query_id": 38123, "query": "Hide Developer Options in Android 4.2"}
562
+ {"query_id": 38486, "query": "How to tell if a phone is rooted?"}
563
+ {"query_id": 13185, "query": "Can I charge Samsung Galaxy Tab 10.1 from USB?"}
564
+ {"query_id": 15001, "query": "How can I avoid the battery charging when connected via USB?"}
565
+ {"query_id": 38246, "query": "android 4.2.1 installation error on N7000 error"}
566
+ {"query_id": 24079, "query": "Can (ringer) volume only be locked by hacks/apps or is there a easy way?"}
567
+ {"query_id": 29769, "query": "How do I connect to a wifi ap and 3g network simultaneously?"}
568
+ {"query_id": 40446, "query": "Why is \"Android OS\" uploading so much data?"}
569
+ {"query_id": 43718, "query": "How do I configure Dropbox in my Galaxy S III so that it does NOT automatically upload every photo/video I take?"}
570
+ {"query_id": 57001, "query": "My new phone isn't listed as a device in the Android Device Manager, how can I register it?"}
571
+ {"query_id": 61866, "query": "I can't delete my messages"}
572
+ {"query_id": 7064, "query": "Is there a zoom and timer functionality on Nexus S camera?"}
573
+ {"query_id": 36182, "query": "Change stock Clock app timer noise?"}
574
+ {"query_id": 9361, "query": "How to download unsupported files from the default browser?"}
575
+ {"query_id": 58459, "query": "Downgrade Nexus 4 from 4.4 to 4.2"}
576
+ {"query_id": 28551, "query": "Why can't android connect to an ad hoc hotspot?"}
577
+ {"query_id": 55067, "query": "Getting rid of stale notification icons in the notification _bar_?"}
578
+ {"query_id": 26372, "query": "Find lost device without Gmail account configured and without SIM card"}
579
+ {"query_id": 27224, "query": "How to configure BlueStack AppPlayer to use Proxy settings when connecting to Network?"}
580
+ {"query_id": 44918, "query": "Can a 3rd party app *technically* take better pictures?"}
581
+ {"query_id": 81597, "query": "Can't open menu in apps without a menu button or physical key"}
582
+ {"query_id": 82323, "query": "\u201cIncompatible with other applications(s) using the same shared user ID\u201d when installing Google Play service?"}
583
+ {"query_id": 31858, "query": "Android Jelly Bean: fix search button"}
584
+ {"query_id": 50611, "query": "Facebook version 3.5. - sort news feed"}
585
+ {"query_id": 82440, "query": "problem in installing apps in karbonn A5i"}
586
+ {"query_id": 13069, "query": "Can I use dual boot in my Android mobile phone?"}
587
+ {"query_id": 18876, "query": "How can I root the GT 10.1 (running 3.2)?"}
588
+ {"query_id": 19844, "query": "Facebook contact sync in Ice Cream Sandwich"}
589
+ {"query_id": 15009, "query": "How does Google Maps estimate my location without GPS?"}
590
+ {"query_id": 19726, "query": "App to share a calendar"}
591
+ {"query_id": 14162, "query": "How can I prevent my Wi-Fi connection from glitching?"}
592
+ {"query_id": 16220, "query": "Where does Google Music store offline songs?"}
593
+ {"query_id": 17433, "query": "Is there a web browser+Java plugin available for Android?"}
594
+ {"query_id": 37020, "query": "What are Android's secret telephony codes?"}
595
+ {"query_id": 38351, "query": "How to install additional fonts?"}
596
+ {"query_id": 14046, "query": "Android USB reverse tethering: How to fool the apps"}
597
+ {"query_id": 14164, "query": "How can I write in a PDF with a tablet and a pen (a.k.a Is there a Xournal alternative for Android)?"}
598
+ {"query_id": 19971, "query": "List of ROMs for HTC Flyer"}
599
+ {"query_id": 22905, "query": "I can't update my Nexus S, shows error screen. What to do?"}
600
+ {"query_id": 20728, "query": "Why can't apps connect to the internet?"}
601
+ {"query_id": 29538, "query": "execute linux commands on android froyo"}
602
+ {"query_id": 20606, "query": "How to take backup of all installed APKs from Phone to PC?"}
603
+ {"query_id": 58221, "query": "Upgrading to 4.4 on rooted Nexus 4, custom recovery, custom kernel without losing data"}
604
+ {"query_id": 42854, "query": "Is it possible to use adb backup in order to make a clone of a tablet?"}
605
+ {"query_id": 60547, "query": "How can I download apps to the SD card with space instead of my phone storage?"}
606
+ {"query_id": 24084, "query": "List of open ports on Android"}
607
+ {"query_id": 26142, "query": "How can I execute a script on the SD card and be able to pass arguments to it?"}
608
+ {"query_id": 25178, "query": "Can an Android text message set off an alarm?"}
609
+ {"query_id": 57257, "query": "Unknown error code during application install: \"920\" while installing Google Keyboard"}
610
+ {"query_id": 58346, "query": "Disable PIN Unlock with Certificates and WPA2 Enterprise"}
611
+ {"query_id": 18528, "query": "Moving applications to SD card leaves some data behind"}
612
+ {"query_id": 15138, "query": "How can I automatically reject some types of calls?"}
613
+ {"query_id": 17319, "query": "How can I make my Samsung Galaxy Nexus volume go louder than what stock allows?"}
614
+ {"query_id": 14168, "query": "Can I train Google Voice Actions to better recognize my voice?"}
615
+ {"query_id": 17640, "query": "Privacy level with an anonymous account?"}
616
+ {"query_id": 8299, "query": "How to check if GPS is working (Android 2.1, Samsung Galaxy-5)?"}
617
+ {"query_id": 15581, "query": "What does FTM mean on my phone?"}
618
+ {"query_id": 37371, "query": "Making multiple files or a folder available offline in Google Drive"}
619
+ {"query_id": 52929, "query": "Built-in alarm, calendar suddenly talking to me. How can I shut them up?"}
620
+ {"query_id": 14490, "query": "How to rate in Market on Honeycomb tablet?"}
621
+ {"query_id": 17642, "query": "How can I get the Android app store on the kindle fire?"}
622
+ {"query_id": 67068, "query": "Whats app last seen status not visible"}
623
+ {"query_id": 71565, "query": "how to turn off voice command for blind and low vision"}
624
+ {"query_id": 9269, "query": "MS Office Client for Android"}
625
+ {"query_id": 40304, "query": "Using a phone without data plan for multiplayer game dev"}
626
+ {"query_id": 41514, "query": "Getting rid of Status Bar on 4.1"}
627
+ {"query_id": 25149, "query": "Child-proofing an Android phone?"}
628
+ {"query_id": 26238, "query": "SMS thread retrieval"}
629
+ {"query_id": 29502, "query": "How can I make a route offline in Google Maps?"}
630
+ {"query_id": 7081, "query": "Are there any \"iptables like\" firewall for Android?"}
631
+ {"query_id": 26239, "query": "Can Android be installed on the new Win8-Intel Ultrabooks slated to come out late-12 early-13"}
632
+ {"query_id": 47290, "query": "Symbolic link to Dropbox"}
633
+ {"query_id": 24293, "query": "Upgrade Samsung Galaxy II to Android 4.0?"}
634
+ {"query_id": 3717, "query": "how to close an application in android"}
635
+ {"query_id": 28896, "query": "Using Android only with Outlook and not Google Calendar"}
636
+ {"query_id": 59689, "query": "HTC wildfire S storage issue!"}
637
+ {"query_id": 27321, "query": "Why can't the su binary simply be copied (techical response please)"}
638
+ {"query_id": 28652, "query": "Unregister device in Google Play"}
639
+ {"query_id": 39435, "query": "Can I stop installed apps adding their icon to my homescreen?"}
640
+ {"query_id": 50751, "query": "Can your android device get malware?"}
641
+ {"query_id": 14256, "query": "How do you set up internet pass-through (reverse-tether) on linux?"}
642
+ {"query_id": 51601, "query": "S-voice on Samsung Galaxy S4 \"No response from server...\""}
643
+ {"query_id": 69480, "query": "Why is an android ROM device specific?"}
644
+ {"query_id": 17402, "query": "How do I switch my Android device's SD card without causing problems?"}
645
+ {"query_id": 74828, "query": "Reverse Tethering"}
646
+ {"query_id": 75916, "query": "Monitor outgong web requests as they\u2019re happening"}
647
+ {"query_id": 71693, "query": "Should I charge new LG G2 for 6 before first use"}
648
+ {"query_id": 25278, "query": "Fix a damaged microsd card?"}
649
+ {"query_id": 40897, "query": "How to stop this type of service in Sony Xperia MT27i?"}
650
+ {"query_id": 20946, "query": "Questions regarding purchasing on google store"}
651
+ {"query_id": 26001, "query": "Where is \"Stay Awake\" option in Ice Cream Sandwich on the Galaxy S3?"}
652
+ {"query_id": 28662, "query": "Rooting Stock Firmware - GSII with NFC"}
653
+ {"query_id": 29631, "query": "is there a way to know what CPU, GPU, RAM my phone / tablet has?"}
654
+ {"query_id": 20938, "query": "number in the top right corner of the camera app?"}
655
+ {"query_id": 35189, "query": "How can I get my Galaxy S3 to behave at night? (turn off LED and notifications, etc.)"}
656
+ {"query_id": 37246, "query": "How to make 3G Video Calls?"}
657
+ {"query_id": 39424, "query": "Why does my phone have erroneous input when connected to a non-OEM power source?"}
658
+ {"query_id": 32914, "query": "HTC Desire - ran out of storage - can't interpret solutions offered - need help!"}
659
+ {"query_id": 48012, "query": "Find my iPhone equivalent"}
660
+ {"query_id": 37590, "query": "Android Automatically Adds Shortcuts To Home Screen"}
661
+ {"query_id": 9289, "query": "Why does taking a screen shot require root access?"}
662
+ {"query_id": 37230, "query": "Is it possible to install two instances of a same app?"}
663
+ {"query_id": 74612, "query": "Installation of apks in Bluestacks"}
664
+ {"query_id": 29845, "query": "Share App list with friends?"}
665
+ {"query_id": 8072, "query": "gallery sort order"}
666
+ {"query_id": 42820, "query": "How to Install Android Apps to the SD Card by Default"}
667
+ {"query_id": 28637, "query": "How to toggle wi-fi, gps etc quickly in HTC Sense?"}
668
+ {"query_id": 2405, "query": "Can I manually rotate my phone while auto-rotation is disabled?"}
669
+ {"query_id": 62749, "query": "How can I know which app is giving me notification sounds?"}
670
+ {"query_id": 1799, "query": "Is there a way to see the top apps across all categories?"}
671
+ {"query_id": 4706, "query": "How can I set a Screen Lock Timeout?"}
672
+ {"query_id": 58499, "query": "How to sign into another account in the gmail app on phone"}
673
+ {"query_id": 1431, "query": "Is there any way to print directly from the phone?"}
674
+ {"query_id": 16657, "query": "Does any version of Android support ad-hoc connections?"}
675
+ {"query_id": 15688, "query": "List of devices with screen parameters"}
676
+ {"query_id": 37599, "query": "Flash Player does not work on Android 4.0 and upwards"}
677
+ {"query_id": 48364, "query": "Are there earphones with support for buttons similar to the OEM earphones?"}
678
+ {"query_id": 46065, "query": "How to fix a broken icon on an android phone"}
679
+ {"query_id": 46186, "query": "what is a bootloader unlocked phone?"}
680
+ {"query_id": 69387, "query": "Error retrieving information from server [RPC:S-7:AEC-0]"}
681
+ {"query_id": 46060, "query": "Double message notifications after upgrading Talk to Hangouts (CyanogenMod 7.2)"}
682
+ {"query_id": 31811, "query": "Android full support offline map"}
683
+ {"query_id": 73415, "query": "Android hangs on boot image after changing boot image"}
684
+ {"query_id": 57295, "query": "Multiple Android Tablet remote update, pushing settings, device lock-down"}
685
+ {"query_id": 61311, "query": "Cant connect S3 with CM 10.2 to adb"}
686
+ {"query_id": 8082, "query": "How can I check the OS version of an Android device?"}
687
+ {"query_id": 40754, "query": "How to replace Cyanogenmod dialer/contacts/messaging(texting) apps?"}
688
+ {"query_id": 64944, "query": "Are custom ROMs really required?"}
689
+ {"query_id": 26226, "query": "Disable ads in applications?"}
690
+ {"query_id": 26463, "query": "Android debugging-Boot Loops: Is there any way to get a log of information without ADB? Can the emulator even help?"}
691
+ {"query_id": 81023, "query": "LG Nexus 4 E960 red light of death"}
692
+ {"query_id": 81145, "query": "Necessary to manually update gapps?"}
693
+ {"query_id": 2773, "query": "How can I disable the notification sounds while playing music?"}
694
+ {"query_id": 81025, "query": "Installed Comodo SSL certificate not showing in User in Trusted credentials"}
695
+ {"query_id": 27673, "query": "Why GPS is never found?"}
696
+ {"query_id": 11099, "query": "How check what requests does my App (wireshark for Android)?"}
697
+ {"query_id": 3742, "query": "Is it possible to upgrade my HTC Legend to Froyo without waiting for over the air updates?"}
698
+ {"query_id": 46296, "query": "Can I download a paid app on a second device from Google Play?"}
699
+ {"query_id": 82474, "query": "How to view android device screen on PC over adb"}
cqadupstack-english.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
cqadupstack-gaming.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
cqadupstack-gis.jsonl ADDED
@@ -0,0 +1,885 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 46842, "query": "Creating points along lines?"}
2
+ {"query_id": 19221, "query": "Find tangent point on circle furthest east or west"}
3
+ {"query_id": 65366, "query": "Representing population variables in a map"}
4
+ {"query_id": 69722, "query": "Why is any pgr_* routing function taking forever based on OSM data in an pgrouting enabled DB"}
5
+ {"query_id": 74079, "query": "Where did XYTools go"}
6
+ {"query_id": 60905, "query": "QGis non blocking notifications with pyqgis"}
7
+ {"query_id": 52292, "query": "Why does my QGIS want to create so many icons?"}
8
+ {"query_id": 44426, "query": "Is there an comparison of the various mapping libraries for Android?"}
9
+ {"query_id": 109392, "query": "Shapefile not projecting correctly"}
10
+ {"query_id": 110394, "query": "How to get Subtype name in Field using field calculator"}
11
+ {"query_id": 12833, "query": "How to smooth a DEM?"}
12
+ {"query_id": 17299, "query": "Standard SLDs for OpenStreetMaps?"}
13
+ {"query_id": 23735, "query": "How to move labels in QGIS?"}
14
+ {"query_id": 113405, "query": "Polygon Shape Data for North America"}
15
+ {"query_id": 44411, "query": "How can I programmatically get the path of \"Python.exe\" used by ArcMap"}
16
+ {"query_id": 67312, "query": "Are there any COGO tools in QGIS 1.9+?"}
17
+ {"query_id": 91886, "query": "Openlayers and Geoserver: Google Maps and WMS Overlay"}
18
+ {"query_id": 44410, "query": "Splitting feature class by attribute in ArcGIS for Desktop?"}
19
+ {"query_id": 54481, "query": "How to work out sqft/m of land coverage?"}
20
+ {"query_id": 54244, "query": "Is there a way to clip the Google Satellite Layer from open layers plugin?"}
21
+ {"query_id": 34612, "query": "How to change the SRID of exisisting data in PostGIS?"}
22
+ {"query_id": 82931, "query": "Is there an online GIS with postgis connections enabled?"}
23
+ {"query_id": 2, "query": "How do I find the distance between two coordinates in an ellipsoid?"}
24
+ {"query_id": 58845, "query": "What is the main benefit and drawback of: GeoServer, MapServer, Mapnik?"}
25
+ {"query_id": 2312, "query": "How can I transform a georeferenced JPG to a georeferenced TIF?"}
26
+ {"query_id": 30250, "query": "How to fill gaps in SLC-Off Landsat 7 ETM+ Images with QGIS?"}
27
+ {"query_id": 31341, "query": "QGIS scalebar shows a wrong scale"}
28
+ {"query_id": 78439, "query": "QGIS 1.8 or 2.01 select entries in .shp file that match a field entry"}
29
+ {"query_id": 89326, "query": "Can I hide a sublayer with a toggle button using the LayerActions?"}
30
+ {"query_id": 111471, "query": "Map Scale Bar Grossly Incorrect"}
31
+ {"query_id": 88236, "query": "ArcGIS 000210 error copy to feature class"}
32
+ {"query_id": 88477, "query": "Legend only to display what is shown in Print Composer QGIS 1.8.4"}
33
+ {"query_id": 27094, "query": "How to get 2010 Census Block Housing Unit Data for the entire US for 15-digit FIPS blocks"}
34
+ {"query_id": 3887, "query": "Using R with ArcGIS for Desktop (without using GME)?"}
35
+ {"query_id": 30018, "query": "How to draw a cross section in QGIS"}
36
+ {"query_id": 43796, "query": "SQLite and joins"}
37
+ {"query_id": 41135, "query": "How do I draw a square on a vector layer from PostGIS?"}
38
+ {"query_id": 66477, "query": "How to find area of Digital Elevation Model above/below a reference plane?"}
39
+ {"query_id": 68897, "query": "Updating a Field in the Current Selection"}
40
+ {"query_id": 82718, "query": "generate subcatchment starting from a DTM"}
41
+ {"query_id": 60928, "query": "How to insert a GeoJSON polygon into a PostGIS table?"}
42
+ {"query_id": 57521, "query": "Why are areas of raster and polygon after digitization not matching?"}
43
+ {"query_id": 80543, "query": "ArcGIS For Professional difference between ArcGIS For Destkop"}
44
+ {"query_id": 89114, "query": "PostGIS: ST_Transform() couldn't project point (lon, lat) exceeded the limits"}
45
+ {"query_id": 101403, "query": "How to limit zoom level in OpenLayers"}
46
+ {"query_id": 33756, "query": "How to get back closed panes in QGIS 1.8?"}
47
+ {"query_id": 17035, "query": "How to display geoJSON from an URL in a layer?"}
48
+ {"query_id": 64065, "query": "Where to find and share Python geoprocessing scripts?"}
49
+ {"query_id": 88252, "query": "How to link city/postal code with geo data"}
50
+ {"query_id": 112534, "query": "Detecting Runtime Errors in Arcpy Loops"}
51
+ {"query_id": 23717, "query": "How to convert ArcGIS .mxd file to QGIS .qgs file?"}
52
+ {"query_id": 111685, "query": "Free And Open Source Software Tools to orthorectify Pleiades imagery"}
53
+ {"query_id": 54266, "query": "Obtaining lat/long values"}
54
+ {"query_id": 81621, "query": "Save input in plugin as pdf format file"}
55
+ {"query_id": 98053, "query": "Batch geocoding of 45000 Addresses"}
56
+ {"query_id": 29257, "query": "Leaflet Layers Control - Z-Index?"}
57
+ {"query_id": 30230, "query": "Formatting label styles using arcpy"}
58
+ {"query_id": 92748, "query": "overlay google maps to openlayers in geoserver"}
59
+ {"query_id": 823, "query": "How to emulate Google Maps driving directions using pgRouting?"}
60
+ {"query_id": 55119, "query": "Alternatives to ArcGIS Online?"}
61
+ {"query_id": 6933, "query": "Downloading OpenStreetMap Data"}
62
+ {"query_id": 89103, "query": "I want to reproject data from 0-360 to -180 - 180"}
63
+ {"query_id": 27073, "query": "Length in meters arcobjects"}
64
+ {"query_id": 27070, "query": "Cloudmade Web Maps API Geocoding Issue"}
65
+ {"query_id": 86075, "query": "How to clip LAS data using shapefile polygons and open source software?"}
66
+ {"query_id": 21985, "query": "Re-projection in Geoserver"}
67
+ {"query_id": 17003, "query": "Map projection in OpenLayers"}
68
+ {"query_id": 67103, "query": "postgres on bash command line and conversion to python with parameter substitution"}
69
+ {"query_id": 103892, "query": "Day and night zone layer for Leaflet"}
70
+ {"query_id": 66259, "query": "Specifying a bounding rectangle using Google's S2 package for spherical geometry"}
71
+ {"query_id": 42682, "query": "How to trigger registered events in Openlayers?"}
72
+ {"query_id": 67588, "query": "Can I use Openlayers Plugin with a different Datum/Projection?"}
73
+ {"query_id": 4531, "query": "Ordnance Survey Grids"}
74
+ {"query_id": 109197, "query": "How to smooth raster data?"}
75
+ {"query_id": 42689, "query": "blank preview image for ImageMosaicJDBC (postgis raster) layer"}
76
+ {"query_id": 60712, "query": "How to combine two rasters, preferring the values of one over the other?"}
77
+ {"query_id": 109190, "query": "correlation between distance from volcano and point features"}
78
+ {"query_id": 60710, "query": "Calculating Volume of Reservoir using python and ArcMap10?"}
79
+ {"query_id": 11705, "query": "Using Field Calculator in QGIS to update columns with centroid coordinates"}
80
+ {"query_id": 2587, "query": "How do you decide what interpolation method to use for resampling raster data?"}
81
+ {"query_id": 57784, "query": "Image classification random forest"}
82
+ {"query_id": 79339, "query": "Creating a point buffer along a road network"}
83
+ {"query_id": 23919, "query": "Install PostGIS from beginning"}
84
+ {"query_id": 32407, "query": "How to add Cross Origin Filter for Jetty in GeoServer on Mac"}
85
+ {"query_id": 55129, "query": "How a PHP script can perform point, line and polygon operation on Geoserver and PostGIS (+wkt)"}
86
+ {"query_id": 6704, "query": "How can I effectively debug arcpy Python scripts?"}
87
+ {"query_id": 6948, "query": "If/then VBScript/Python code equivalent to SQL IN ('x','y',z') expression in ArcGIS Field Calculator?"}
88
+ {"query_id": 67581, "query": "how to build a reverse geocoding service"}
89
+ {"query_id": 18103, "query": "How much RAM can ArcMap use?"}
90
+ {"query_id": 20420, "query": "Resources for python scripting"}
91
+ {"query_id": 42434, "query": "How to make labels appear in Geoserver? (WMS)"}
92
+ {"query_id": 92772, "query": "Problems with projections in QGIS 2.2 on a Windows Vista?"}
93
+ {"query_id": 6720, "query": "Mobile Data collection options"}
94
+ {"query_id": 58640, "query": "Why is osm road data showing up with lines radiating from a point?"}
95
+ {"query_id": 98076, "query": "Min - Max within a zip code (statistics by area)"}
96
+ {"query_id": 57796, "query": "Print Composer doesn't display my map!"}
97
+ {"query_id": 79328, "query": "Can we use bounding box with Mysql?"}
98
+ {"query_id": 39028, "query": "Projection Transformations"}
99
+ {"query_id": 94706, "query": "How do you determine how straight a LineString is?"}
100
+ {"query_id": 70758, "query": "Problem with postgres/quantum converting long/lat to suitable projection/SRID"}
101
+ {"query_id": 19437, "query": "How to calculate polygon area considering slopes?"}
102
+ {"query_id": 29470, "query": "How to create a circle with specific radius?"}
103
+ {"query_id": 7803, "query": "Bulk load multiple shapefiles into PostGIS"}
104
+ {"query_id": 32877, "query": "How to create curved labels in QGIS"}
105
+ {"query_id": 20870, "query": "How to create regular soil sampling grids?"}
106
+ {"query_id": 5640, "query": "Restrict CQL filter to an specific BBOX"}
107
+ {"query_id": 15287, "query": "Can you use arcpy.RasterToNumPyArray() to Graph a Raster with matplotlib?"}
108
+ {"query_id": 91477, "query": "How to measure Fracture in area using ArcGIS Cut and Fill?"}
109
+ {"query_id": 22818, "query": "QGIS GDAL integration of new version"}
110
+ {"query_id": 42661, "query": "Using a map offline"}
111
+ {"query_id": 59740, "query": "How to exclude some parts of raster classes based on size of area?"}
112
+ {"query_id": 109173, "query": "Converting *.kml file to *.lyr file so Google Earth can create spatial data to use in ArcGIS for Desktop?"}
113
+ {"query_id": 21722, "query": "How do I calculate ECEF X,Y,Z velocities for GPS if I have no satellites"}
114
+ {"query_id": 62908, "query": "How can i join the count of points into polygon"}
115
+ {"query_id": 613, "query": "psycopg2 error with QGIS 1.5"}
116
+ {"query_id": 100114, "query": "QGIS DBmanager import file append not working"}
117
+ {"query_id": 100116, "query": "How to split a line at a vertex in QGIS 2.2?"}
118
+ {"query_id": 92312, "query": "Converting a CSV to shapefile"}
119
+ {"query_id": 17478, "query": "Multiple Conditional Reclassification - ArcGIS"}
120
+ {"query_id": 103641, "query": "Low quality legend symbols in QGIS"}
121
+ {"query_id": 70301, "query": "How to get average polygon?"}
122
+ {"query_id": 71872, "query": "Attribute table in Map Composer has no content QGIS 2.0"}
123
+ {"query_id": 58660, "query": "Polygon Nodes do not have separate coordinates"}
124
+ {"query_id": 57331, "query": "How to split multiple overlapping points in ArcMap 9.2?"}
125
+ {"query_id": 48192, "query": "Interpolation of Values in ArcGIS"}
126
+ {"query_id": 33700, "query": "How to convert a regular point grid to raster?"}
127
+ {"query_id": 54065, "query": "leaflet geojson coordinate problem"}
128
+ {"query_id": 30670, "query": "How to force ArcGIS to recognize a text field in a CSV file?"}
129
+ {"query_id": 102301, "query": "XY to Line tool 'Failure to execute'"}
130
+ {"query_id": 65190, "query": "Can ArcGIS 10.1 use SQL on Definition Query to select minimum value?"}
131
+ {"query_id": 110161, "query": "Graphical Modeler Equivalent in Arcmap?"}
132
+ {"query_id": 33945, "query": "Lat/long grid in QGIS using WGS84 projected layers"}
133
+ {"query_id": 59083, "query": "Elevation Drop Along a Stream"}
134
+ {"query_id": 6995, "query": "Understanding OpenLayers documentation"}
135
+ {"query_id": 72059, "query": "QGIS 2 Python error on Mac OSX"}
136
+ {"query_id": 72298, "query": "simplilfy geojson file"}
137
+ {"query_id": 75324, "query": "How can I dynamically trim the informational border off of FAA sectional raster charts?"}
138
+ {"query_id": 19064, "query": "How to open a Shapefile in R?"}
139
+ {"query_id": 72051, "query": "QGIS 2.0.1 Runtime error and crash at Add Delimited Text Layer plugin"}
140
+ {"query_id": 8929, "query": "Open access repository of general GIS spatial data?"}
141
+ {"query_id": 630, "query": "How to improve upon ArcGIS Buffer/Dissolve performance?"}
142
+ {"query_id": 53785, "query": "When should I use recycling = true with IFeatureClass.Update?"}
143
+ {"query_id": 107800, "query": "How can I find a Douglas-Peucker algorithm for simplification?"}
144
+ {"query_id": 6508, "query": "A problem with Network Analyst C# code after upgrading to ArcGIS 10"}
145
+ {"query_id": 104538, "query": "Why doesn't SLD validate?"}
146
+ {"query_id": 59091, "query": "Basic traffic volume map"}
147
+ {"query_id": 44018, "query": "area weighted average for overlapping polygons"}
148
+ {"query_id": 113003, "query": "How to derive stream order from vector network"}
149
+ {"query_id": 35540, "query": "How to do Math within ArcMap Dynamic Text?"}
150
+ {"query_id": 62026, "query": "How to import GeoTIFF via postGIS into GeoServer?"}
151
+ {"query_id": 73397, "query": "ImportError: No module named arcpy - ArcGIS 10.1 and Python 2.7"}
152
+ {"query_id": 74244, "query": "Google Earth multiselect points to delete or drag & drop"}
153
+ {"query_id": 73394, "query": "Dissolving overlapping polygons - issue in QGIS"}
154
+ {"query_id": 26846, "query": "How to style a layer from console?"}
155
+ {"query_id": 74480, "query": "Draw cirlcle on Equirectangular projection"}
156
+ {"query_id": 52462, "query": "Calculating mean upslope aspect from each cell in DEM using Python?"}
157
+ {"query_id": 50046, "query": "assign and move centroids to their polygons"}
158
+ {"query_id": 33364, "query": "Modifying shape extents in qgis"}
159
+ {"query_id": 76655, "query": "How to Iterate through Bands of Raster using ArcGIS 10.1 ModelBuilder?"}
160
+ {"query_id": 112166, "query": "JTS \"points must form a closed linestring\""}
161
+ {"query_id": 12446, "query": "How to create a checkbox parameter in a ArcGIS custom Python tool?"}
162
+ {"query_id": 20279, "query": "How can I calculate the average width of a polygon?"}
163
+ {"query_id": 27905, "query": "MySQL SQL command to find points within a rectangle with spatial extension and index"}
164
+ {"query_id": 19047, "query": "How to convert coverage (.adf) to shapefile?"}
165
+ {"query_id": 45334, "query": "Detailed Bathymetric/Bathymetry contour data (0-200M)"}
166
+ {"query_id": 5686, "query": "How can I secure an WMS against unauthorized access?"}
167
+ {"query_id": 75104, "query": "Export Qgis settings"}
168
+ {"query_id": 75588, "query": "NOAA Nautical Charts .bsb format"}
169
+ {"query_id": 23300, "query": "Specifications for GIS desktop hardware"}
170
+ {"query_id": 44009, "query": "How to read Greek fonts (ISO-8859-7) in shapefile attributes within QGIS 1.8.0?"}
171
+ {"query_id": 24878, "query": "Historic country borders in GIS format?"}
172
+ {"query_id": 2170, "query": "Access-Control-Allow-Origin error in web map"}
173
+ {"query_id": 32269, "query": "Split Polyline at Set Intervals"}
174
+ {"query_id": 34204, "query": "How do I create point features with exact coordinates?"}
175
+ {"query_id": 78865, "query": "tablejoin in qgis 2.x adds name of table to columnheader attributetable"}
176
+ {"query_id": 898, "query": "Convert XY points to a line?"}
177
+ {"query_id": 47991, "query": "How to re-project the EASE (Equal Area Scalable Earth) grid with a ~25 km cylindrical projection to WGS84 0.25 degree?"}
178
+ {"query_id": 53569, "query": "How to sum or even perform more complex mathematical operations (multiply, add a constant, ...) two GDAL grids?"}
179
+ {"query_id": 84063, "query": "How to Split Polyline into Equal Segments using ArcGIS Desktop?"}
180
+ {"query_id": 112391, "query": "Hardware requirements for a modern GIS workstation"}
181
+ {"query_id": 29084, "query": "Colors standard in Arc GIS 10"}
182
+ {"query_id": 85393, "query": "OpenGeo Hosting requirements"}
183
+ {"query_id": 65794, "query": "What resources are there for PostGIS maintenance?"}
184
+ {"query_id": 75119, "query": "Having trouble connecting QGIS with postgres database with postgis extension"}
185
+ {"query_id": 20286, "query": "Is it possible to export GeoPDF from QGIS?"}
186
+ {"query_id": 64227, "query": "Creating parallel polylines with a constant distance"}
187
+ {"query_id": 66888, "query": "How to set linear units for Buffer distance from arcpy.GetParametersAsText()?"}
188
+ {"query_id": 24646, "query": "How to close watermarks window in QGIS Openlayers plugin?"}
189
+ {"query_id": 14849, "query": "Automated correction of parcel geometry based on area measure"}
190
+ {"query_id": 52483, "query": "Best method to re-compile a Python Addin after editing script?"}
191
+ {"query_id": 420, "query": "How to get pre-change Object state from a Class Extension change event in ArcObjects?"}
192
+ {"query_id": 56843, "query": "Multiple reclassification using RasterCalc in QGIS"}
193
+ {"query_id": 85147, "query": "How to learn basics of ArcObjects?"}
194
+ {"query_id": 102346, "query": "How do I use a server data store with a Python toolbox?"}
195
+ {"query_id": 102106, "query": "How can i get Population Density as a polygon layer?"}
196
+ {"query_id": 6790, "query": "How to digitize directional drilholes from scanned vertical sections?"}
197
+ {"query_id": 104344, "query": "Formatting label expression with newline using Python parser?"}
198
+ {"query_id": 25709, "query": "Splitting shapefile into separate shapefiles for each feature?"}
199
+ {"query_id": 42044, "query": "Why do OpenLayers layers appear shifted in map composer?"}
200
+ {"query_id": 92941, "query": "How to identify in googlemaps with below data"}
201
+ {"query_id": 23763, "query": "Why does Select Feature give nonsensical results?"}
202
+ {"query_id": 20018, "query": "How can I convert data in the form of lat, lon, value into a raster file using R?"}
203
+ {"query_id": 80960, "query": "Geoserver with MapFish printing issue"}
204
+ {"query_id": 79730, "query": "Grid-like lines appearing after using Curvature tool"}
205
+ {"query_id": 31154, "query": "Which of these is the proper convention?"}
206
+ {"query_id": 12630, "query": "How to convert Mapinfo \".Map\" file into an ArcGIS format?"}
207
+ {"query_id": 53348, "query": "How to extract elevation data from DEM along a polyline"}
208
+ {"query_id": 63394, "query": "Create dynamic table in layout view (Arcmap)"}
209
+ {"query_id": 63395, "query": "Getting polygon shapefile node coordinates and point order"}
210
+ {"query_id": 70921, "query": "Possible to automate Buffer Wizard in ArcGis 10.x by working in the Shell?"}
211
+ {"query_id": 7651, "query": "How to calculate visible sky percentage"}
212
+ {"query_id": 24628, "query": "MapCanvas : Mouse-wheel event filtering/overriding"}
213
+ {"query_id": 46634, "query": "How to define Subroutines and functions?"}
214
+ {"query_id": 19033, "query": "How to add a simple WFS layer from GeoServer to OpenLayers map?"}
215
+ {"query_id": 68843, "query": "Finding points in extent using VBA"}
216
+ {"query_id": 22201, "query": "How to access file geodatabase in Qgis?"}
217
+ {"query_id": 43129, "query": "Create a csv with geometry as WKT in QGIS (and choosing the field delimiter)"}
218
+ {"query_id": 21118, "query": "postgis minimum distance among many points"}
219
+ {"query_id": 49904, "query": "How to clip Raster using multiple polygons and Python?"}
220
+ {"query_id": 31147, "query": "exporting a featureclass to shapefile with selected fields only"}
221
+ {"query_id": 202, "query": "What books, journals, and electronic resources are most valuable for expanding knowledge of GIS?"}
222
+ {"query_id": 30053, "query": "Set buffer radius in metric units in qGIS"}
223
+ {"query_id": 56862, "query": "What Spatial Reference System do I store Google Map's Lat/Lng in"}
224
+ {"query_id": 113052, "query": "European Address Locator on ArcGIS"}
225
+ {"query_id": 89760, "query": "How to publish a table in Geoserver 2.4.x, so that only specific users can access it"}
226
+ {"query_id": 46866, "query": "Looking for complicated representations of an urban areas"}
227
+ {"query_id": 21566, "query": "GIS, R and shapefiles"}
228
+ {"query_id": 44205, "query": "Is there a way to run the spatial query plugin from QGIS python console?"}
229
+ {"query_id": 46862, "query": "How to Split Features in QGIS?"}
230
+ {"query_id": 104562, "query": "Thiessen polygons of sub-districts to lie within district boundaries"}
231
+ {"query_id": 98028, "query": "Dividing large polygon into smaller ones of equal area?"}
232
+ {"query_id": 22895, "query": "How to find the minimum-area-rectangle for given points?"}
233
+ {"query_id": 44208, "query": "How to calculate te area between contour lines on a DEM with Qgis 1.8?"}
234
+ {"query_id": 32468, "query": "Permanently replace/update server/service in each ArcSDE Layer in MXD?"}
235
+ {"query_id": 59902, "query": "Watershed Analysis using DEM"}
236
+ {"query_id": 33310, "query": "Generating TIN from DEM using MacOSX/Unix tools?"}
237
+ {"query_id": 55549, "query": "How to generate a shapefile with UTM Grid precision level 100 m"}
238
+ {"query_id": 11761, "query": "What's the best way to author SLD files from ArcGIS?"}
239
+ {"query_id": 70922, "query": "Extracting \"derived\" data"}
240
+ {"query_id": 34406, "query": "How to densify a polyline according to a specific length?"}
241
+ {"query_id": 88220, "query": "Adding a Z Unit"}
242
+ {"query_id": 19257, "query": "Python :ImportError: DLL load failed: The specified module could not be found"}
243
+ {"query_id": 21575, "query": "Calculating distance to points in QGIS"}
244
+ {"query_id": 44671, "query": "Open source database of world locations"}
245
+ {"query_id": 68624, "query": "Invert Color Ramp in QGIS"}
246
+ {"query_id": 102156, "query": "Pont to Point and Point to Line Calculations"}
247
+ {"query_id": 19256, "query": "find out those points which are intersecting each other using spatial filter in C# arcobjects"}
248
+ {"query_id": 104332, "query": "MODIS MOD13Q1 extract ndvi value"}
249
+ {"query_id": 82905, "query": "Geocentric Coordinate Transformations"}
250
+ {"query_id": 23993, "query": "Web-based user editable routing application"}
251
+ {"query_id": 75155, "query": "Coordinate conversion"}
252
+ {"query_id": 42019, "query": "QGIS 1.8.0 does not launch"}
253
+ {"query_id": 78651, "query": "Variation of algorithms to find point from another point with bearing and distance"}
254
+ {"query_id": 31129, "query": "How to display DMS in QGIS print composer?"}
255
+ {"query_id": 16990, "query": "What is the best approach to using IQueryFilter.WhereClause in ArcObjects?"}
256
+ {"query_id": 73307, "query": "Are there any icons for GIS mapping?"}
257
+ {"query_id": 13484, "query": "How to convert Distance, Azimuth, Dip to XYZ?"}
258
+ {"query_id": 16752, "query": "How to sort a feature class and then calculate a sequential ID field?"}
259
+ {"query_id": 16992, "query": "How can the pixel values of a raster image be extracted under a polygon fishnet?"}
260
+ {"query_id": 73542, "query": "QGIS 2.0 - 2.4: Color Ramps Missing?"}
261
+ {"query_id": 102080, "query": "How to create surface by 3d building with different vertices"}
262
+ {"query_id": 61326, "query": "ArcGIS javascript API Extent formats"}
263
+ {"query_id": 29825, "query": "Merging Two or More Layers"}
264
+ {"query_id": 3083, "query": "What Makes a Map Beautiful?"}
265
+ {"query_id": 40624, "query": "Qgis printing bug"}
266
+ {"query_id": 83359, "query": "How to speed up redrawing of layers (from shapefiles) in MXD?"}
267
+ {"query_id": 9614, "query": "Change Symbology of layers from within ArcMap"}
268
+ {"query_id": 108635, "query": "In which way is height information stored in a DEM?"}
269
+ {"query_id": 95568, "query": "Getting timestamps from gpx files into QGIS?"}
270
+ {"query_id": 97741, "query": "Problem with projection in meters with ArcGIS 10.1"}
271
+ {"query_id": 69294, "query": "Labeling contour lines in ArcMap"}
272
+ {"query_id": 31900, "query": "World country borders in polygon geometry format"}
273
+ {"query_id": 50208, "query": "McDonalds GIS data"}
274
+ {"query_id": 54803, "query": "PostGIS Manager Load Error"}
275
+ {"query_id": 5041, "query": "How should I use GDAL to perform a transformation?"}
276
+ {"query_id": 8794, "query": "Post Processing GPS Data with open source software"}
277
+ {"query_id": 74658, "query": "Conditional Calculation of a text Field Value Based on antoher text field value ArcGIS10.1"}
278
+ {"query_id": 97776, "query": "what are the other main components of GeoServer based system?"}
279
+ {"query_id": 103157, "query": "Styling of label on a line in Tilemill"}
280
+ {"query_id": 104243, "query": "QGIS --> ArcGIS server by WMS?"}
281
+ {"query_id": 27623, "query": "How can I create form with controls using QGIS(python)?"}
282
+ {"query_id": 99711, "query": "Decimal degree coordinates: how many decimal places to use for ...?"}
283
+ {"query_id": 97771, "query": "How to georeference a map - which is in projected coordinate system - using geographic lat long?"}
284
+ {"query_id": 24590, "query": "Recalculating full extent of File Geodatabase feature class?"}
285
+ {"query_id": 256, "query": "How to build effective heat-maps?"}
286
+ {"query_id": 50217, "query": "How do results from a Python script get added to an ArcGIS map?"}
287
+ {"query_id": 76606, "query": "How to create an animated map in QGIS which cycles through column values"}
288
+ {"query_id": 83372, "query": "Can I have more than 4 layers on my map in Cartodb?"}
289
+ {"query_id": 9894, "query": "How to overcome field truncation when converting OSM to shapefile with QGIS?"}
290
+ {"query_id": 16741, "query": "How to calculate the size of a particular area below a buffer in QGIS"}
291
+ {"query_id": 48799, "query": "How to create layer from shapefile in QGIS?"}
292
+ {"query_id": 6148, "query": "Remove feature layer using ArcPy script?"}
293
+ {"query_id": 104497, "query": "How to debug a QGis C++ plugin with Visual Studio 2008"}
294
+ {"query_id": 107521, "query": "GetFeatureInfo Popup not getting popup"}
295
+ {"query_id": 72244, "query": "How to delete points which are close to each other?"}
296
+ {"query_id": 24127, "query": "Reprojecting in OpenLayers"}
297
+ {"query_id": 80094, "query": ".shx files disappeared/deleted"}
298
+ {"query_id": 87720, "query": "United States City/State comprehensive database"}
299
+ {"query_id": 48552, "query": "Polygonize function doesn't overlay the shape file over the raster file"}
300
+ {"query_id": 104005, "query": "Which projected coordinate system should be used for mapping the US?"}
301
+ {"query_id": 85540, "query": "Is it possible to create a functioning executable from a python script that uses geoprocessing tools?"}
302
+ {"query_id": 82271, "query": "how to assign unique attribute value per neighborhood?"}
303
+ {"query_id": 48549, "query": "Open source vs Proprietary"}
304
+ {"query_id": 52409, "query": "How to setup QGIS Master and Stable in parallel on one Linux system?"}
305
+ {"query_id": 75525, "query": "Qgis: where it uses in world company, cities and other?"}
306
+ {"query_id": 26996, "query": "routing using openlayers and pgrouting"}
307
+ {"query_id": 64876, "query": "How to set parameters for Describe() function?"}
308
+ {"query_id": 111838, "query": "How to convert LAS file to ASCII for DSM in SAGA GIS?"}
309
+ {"query_id": 33291, "query": "Print Composer Problems with Export as PDF"}
310
+ {"query_id": 8571, "query": "How to hide \"internal\" polygon boundaries?"}
311
+ {"query_id": 94280, "query": "distance surface with qgis on a binary raster map"}
312
+ {"query_id": 37656, "query": "Reclassifying a field in vector files in ArcGIS"}
313
+ {"query_id": 9659, "query": "Convert GeoPDF to a vector format"}
314
+ {"query_id": 77958, "query": "Is there no editmode for CSV files?"}
315
+ {"query_id": 49869, "query": "How to open popup menu on right click in Leaflet"}
316
+ {"query_id": 97303, "query": "Performing Moran Test using R?"}
317
+ {"query_id": 13691, "query": "How to cast SDE table to IFeatureClassLoad"}
318
+ {"query_id": 66824, "query": "Estimation of Net Primary production (NPP)"}
319
+ {"query_id": 64644, "query": "Arcpy - loop through subfolders and change mxd settings"}
320
+ {"query_id": 26523, "query": "QGIS DBManager error when selecting a feature"}
321
+ {"query_id": 40813, "query": "Sextante QGIS configuration issues"}
322
+ {"query_id": 72260, "query": "How can I install QGIS 2.0 on Fedora 19?"}
323
+ {"query_id": 89922, "query": "Using PostGIS to find airplanes flying on the same routes over the sea"}
324
+ {"query_id": 5086, "query": "Interpolation of Three Data Points"}
325
+ {"query_id": 14750, "query": "How to use SRTM Global DEM for Slope calculation?"}
326
+ {"query_id": 27822, "query": "How to identify duplicate attributes in a field?"}
327
+ {"query_id": 74453, "query": "ArcGIS 10.1 Python Script tool wont read string variable in SQL statement"}
328
+ {"query_id": 26979, "query": "How to install a QGIS plugin when offline?"}
329
+ {"query_id": 74692, "query": "Programmatically download NED, Landcover, etc. data from USGS"}
330
+ {"query_id": 99993, "query": "Overlay Shapefile and Raster layer in R"}
331
+ {"query_id": 76880, "query": "can wms from geoserver serve as utfgrid data?"}
332
+ {"query_id": 15607, "query": "How to generate schemas of GIS hardware / software / workflows?"}
333
+ {"query_id": 50010, "query": "Is it possible to display 3-D maps in ArcGIS Java Script API?"}
334
+ {"query_id": 33033, "query": "Desktop tool to batch convert Shapefils to CSV with polygon outline coordinates"}
335
+ {"query_id": 86444, "query": "How to spatially join polygon fields onto a point layer in QGIS?"}
336
+ {"query_id": 85111, "query": "How to Create Consistent Grids using different Projections"}
337
+ {"query_id": 14993, "query": "What open source solution would work best for auto extracting features from satellite images?"}
338
+ {"query_id": 61142, "query": "Converting Mapserver default URL to a more user friendly version"}
339
+ {"query_id": 85596, "query": "Geoserver GeoTiff Raster Layer Turns Shade Pink (Not Pink Error Tiles)"}
340
+ {"query_id": 109967, "query": "Qgis server on Ubuntu Server 14.04: Permission denied"}
341
+ {"query_id": 53528, "query": "How to customize label color in QGIS: Data defined label settings? Expressions? Both? What are the steps?"}
342
+ {"query_id": 85592, "query": "How to add Table to Layout View using ArcPy?"}
343
+ {"query_id": 107562, "query": "How can I Georeference a column of multiple zip codes?"}
344
+ {"query_id": 61393, "query": "Change ArcGIS License using Script"}
345
+ {"query_id": 9210, "query": "How to recalc WGS84 Shape_Area field to square miles in ArcGIS 10"}
346
+ {"query_id": 49844, "query": "Script for populating field in ArcGIS 10 with consecutive numbers (where start numbers is decided by me)"}
347
+ {"query_id": 21296, "query": "List of GIS applications for Android OS"}
348
+ {"query_id": 44393, "query": "How to install the QGIS Statist plugin in Mac OS X?"}
349
+ {"query_id": 36774, "query": "OpenLayers and Google Maps when panning tiles not in sync"}
350
+ {"query_id": 37622, "query": "strange misplaced markers on the map"}
351
+ {"query_id": 67025, "query": "How to quantify projection distortion using ArcGIS"}
352
+ {"query_id": 50825, "query": "esri ArcObjects slow performance accessing features"}
353
+ {"query_id": 94643, "query": "QGIS how to calculate areas of intercepted polygons?"}
354
+ {"query_id": 110543, "query": "How to set up proxy for Geoserver GetFeatureInfo call?"}
355
+ {"query_id": 72851, "query": "Is it possible to get all features from mapserver within BBox by clicking external button not on map using WMS GetFetureInfo."}
356
+ {"query_id": 9462, "query": "Can QGIS read an ODBC connection?"}
357
+ {"query_id": 83509, "query": "How to save complex expressions in QGIS Field Calculator?"}
358
+ {"query_id": 80006, "query": "Comparing 2 polygon shapefiles for differences"}
359
+ {"query_id": 7297, "query": "How to configure Proxy.cgi with IIS"}
360
+ {"query_id": 94874, "query": "how to get a style of openstreet map"}
361
+ {"query_id": 67035, "query": "How to remove duplicate features with the same geometry in ArcMap?"}
362
+ {"query_id": 51929, "query": "How to count and rasterize polygon overlaps in ArcGIS Desktop?"}
363
+ {"query_id": 28105, "query": "How do I load a .dbf file into QGIS?"}
364
+ {"query_id": 58321, "query": "upgrade from 1.3 to 3.3 javascript api for arcgis with jsviewer"}
365
+ {"query_id": 40697, "query": "How to properly Drape vectors over a DEM?"}
366
+ {"query_id": 41307, "query": "How to create a point file along a line (trail) at regular distances (0.20 miles)?"}
367
+ {"query_id": 1987, "query": "ArcGIS Desktop 10 Tips and Tricks"}
368
+ {"query_id": 81324, "query": "How to remove trailing zeros from QGIS Graduated Style Class labels?"}
369
+ {"query_id": 30895, "query": "Solutions for fast operations on large GIS datasets"}
370
+ {"query_id": 82415, "query": "What tools or opensource library could I use to deal with LIDAR data(mobile laser scan data)?"}
371
+ {"query_id": 57477, "query": "Arcpy Update Cursor error"}
372
+ {"query_id": 50844, "query": "\"TypeError: this.options is null\" in OpenLayers.Protocol.HTTP\u200f"}
373
+ {"query_id": 111850, "query": "How to extract elevation data from ASTER/SRTM?"}
374
+ {"query_id": 29888, "query": "Growing a PostGIS geometry by a percentage"}
375
+ {"query_id": 81110, "query": "Similar paths to Compare"}
376
+ {"query_id": 112933, "query": "What type of data is available at the \"census block\" level?"}
377
+ {"query_id": 7077, "query": "What are Raster and Vector data in GIS and when to use?"}
378
+ {"query_id": 68389, "query": "Batch convert xy to shapefile"}
379
+ {"query_id": 73736, "query": "OpenLayers from behind a proxy"}
380
+ {"query_id": 7078, "query": "Can QGIS preserve layers when exporting to PDF?"}
381
+ {"query_id": 21937, "query": "Unproject Radius with Openlayers with CRS:84 Projection"}
382
+ {"query_id": 28567, "query": "I want to georeference jpg map without any digitizing data?"}
383
+ {"query_id": 20604, "query": "Google Maps layer copyright popup every time map updated / user input"}
384
+ {"query_id": 28568, "query": "Looking for web-based mapping software recommendation"}
385
+ {"query_id": 63931, "query": "Need to teach myself Python, looking for some suggestions"}
386
+ {"query_id": 62837, "query": "How to understand GeoTIFF tags?"}
387
+ {"query_id": 27235, "query": "Direct connecting to PostgreSQL from ArcGIS Desktop?"}
388
+ {"query_id": 28566, "query": "Program to create EMF that conserves transparency"}
389
+ {"query_id": 49001, "query": "How to interprete ArcGIS kernel density units when a population parameter is specified?"}
390
+ {"query_id": 3945, "query": "Distance between lat/long points"}
391
+ {"query_id": 48151, "query": "VBA Dialog box! Code for Create Map command button after form is initiated"}
392
+ {"query_id": 48392, "query": "Programatically reorder layers in qgis?"}
393
+ {"query_id": 8178, "query": "Batch convert lat longs to UTM?"}
394
+ {"query_id": 94446, "query": "Removing features whose labels are not displayed?"}
395
+ {"query_id": 75928, "query": "how to interpolate river bathymetry/heights in qgis/grass"}
396
+ {"query_id": 37252, "query": "Solving a route in a multimodal network dataset does not use all forms of transport available"}
397
+ {"query_id": 90084, "query": "Reconcile projections between .dxf and ESRI shapefile"}
398
+ {"query_id": 111438, "query": "European Rail Freight Map (shapefile or other ArcGIS format)?"}
399
+ {"query_id": 57028, "query": "Replace Null Values Field Calculator"}
400
+ {"query_id": 83316, "query": "How do you embed iFrame content into a CartoDB infoWindow?"}
401
+ {"query_id": 101869, "query": "dividing a line vector road in QGIS"}
402
+ {"query_id": 59203, "query": "Wrong projection on WFS layer with OSM baselayer"}
403
+ {"query_id": 29863, "query": "Creating Centrelines from Road Polygons/Casings?"}
404
+ {"query_id": 27683, "query": "Programmatically determine if a local geodatabase is File or Personal"}
405
+ {"query_id": 49477, "query": "Arc 10.0 Running Python function CADToGeodatabase() crashes ArcMap/Catalog contd"}
406
+ {"query_id": 48142, "query": "Which area measurement to trust? - The same polygon in GoogleEarth v. ArcGIS"}
407
+ {"query_id": 30624, "query": "How to connect the Postgres database table to MapGuide?"}
408
+ {"query_id": 102713, "query": "Create shapefile from data postgis / kml using java"}
409
+ {"query_id": 52818, "query": "How to connect OpenLayers to PostGIS data?"}
410
+ {"query_id": 68168, "query": "ArcGIS 10.1 Python script to snap points to lines"}
411
+ {"query_id": 14142, "query": "Is there a tool to retrieve the projection system used to create a shapefile when the prj file is missing?"}
412
+ {"query_id": 40650, "query": "Problems with CRS in Qgis"}
413
+ {"query_id": 41985, "query": "Create new polygon layers from postcodes latitude & longitude"}
414
+ {"query_id": 112519, "query": "Problems with joining a table to an existing layer"}
415
+ {"query_id": 43920, "query": "Where is my attribute table in ArcGIS 10.1? It is not visible"}
416
+ {"query_id": 62627, "query": "How does changing the kernel density search radius affect the units expressed in the map legend?"}
417
+ {"query_id": 58127, "query": "Purge Layers from QGIS"}
418
+ {"query_id": 80037, "query": "How to create gaussian blur in ArcGIS for Desktop Advanced with Spatial Analyst?"}
419
+ {"query_id": 101874, "query": "Find coordinate of point on the boundary of a circle given a latitude/longitude and radius"}
420
+ {"query_id": 81121, "query": "How to move an existing point object to a coordinate?"}
421
+ {"query_id": 97939, "query": "ArcGIS symmetrical difference in arcgis desktop standard"}
422
+ {"query_id": 71105, "query": "How to convert all shapefiles in folder into KML using ArcPy?"}
423
+ {"query_id": 73524, "query": "Where I can download QGIS 1.8 for Mountain Lion?"}
424
+ {"query_id": 37474, "query": "How to set different label content for different scales?"}
425
+ {"query_id": 28757, "query": "Comparison components open source GIS"}
426
+ {"query_id": 61301, "query": "How to Join Attributes by Location in QGIS 1.8.0"}
427
+ {"query_id": 8191, "query": "Advice on geocoding IP addresses"}
428
+ {"query_id": 111659, "query": "Copy Parallel editor tool - python script / modelbuilder"}
429
+ {"query_id": 79078, "query": "How to calculate the distance of sites to riverways"}
430
+ {"query_id": 4828, "query": "algorithm to place maximum number of points within constrained area at a minimum spacing"}
431
+ {"query_id": 86847, "query": "How to know the date when an image has been capturing on Google Hybrid QGIS?"}
432
+ {"query_id": 58377, "query": "Transfer OpenLayers map from one pc to another"}
433
+ {"query_id": 1551, "query": "How to calculate average slope in a grid?"}
434
+ {"query_id": 75951, "query": "Near Analysis takes much longer in ArcPy?"}
435
+ {"query_id": 60210, "query": "How do I fill in serial letters (AA, AB,AC...,BA,BB,BC...ZZ) to a shape?"}
436
+ {"query_id": 85993, "query": "Are ArcObjects SDKs for .NET free to download?"}
437
+ {"query_id": 51986, "query": "Is there a way to get correctly aligned print export with openlayers plugin?"}
438
+ {"query_id": 48364, "query": "Couldn't load plugin fTools due an error when calling its classFactory() method"}
439
+ {"query_id": 82242, "query": "Reproject GeoJSON from EPSG:3857 to EPSG:4326"}
440
+ {"query_id": 50415, "query": "How to create a dbf field with length > 254?"}
441
+ {"query_id": 51989, "query": "Split a shapefile into multiple shapefiles based on a particular Field"}
442
+ {"query_id": 68175, "query": "GeoJson to ESRI Shapefile using ogr2ogr"}
443
+ {"query_id": 13029, "query": "How to convert ArcGIS Server JSON to GeoJSON?"}
444
+ {"query_id": 72448, "query": "How can I fix a geoTiff with an incorrect CRS?"}
445
+ {"query_id": 110551, "query": "Scaling Items in the Legend"}
446
+ {"query_id": 27434, "query": "Problems with Google layers plugins"}
447
+ {"query_id": 27676, "query": "Setting up tile map server"}
448
+ {"query_id": 41725, "query": "How to add shapefile name as attribute during merge?"}
449
+ {"query_id": 62406, "query": "How to transfer absolute node position to latitude and longitude?"}
450
+ {"query_id": 28521, "query": "How to rotate multiple polygons about their respective anchor points"}
451
+ {"query_id": 82476, "query": "online free tutorial in Introduction to GIS"}
452
+ {"query_id": 48352, "query": "Leaflet Call to GeoServer for GeoJson"}
453
+ {"query_id": 52847, "query": "How to find features within a distance?"}
454
+ {"query_id": 87031, "query": "What does it entail to move Qgis to Qt 5.0"}
455
+ {"query_id": 93950, "query": "Add georeferenced png layer to map automatically"}
456
+ {"query_id": 111596, "query": "Box cropping shapefile based on particular latitude and longitude using QGIS?"}
457
+ {"query_id": 19580, "query": "GetFeatureInfo Request with GeoServer and OpenLayers.loadURL Not Working"}
458
+ {"query_id": 75289, "query": "Classifying raster pixels using polygons"}
459
+ {"query_id": 22751, "query": "Iterative position within Field Calculator/Python"}
460
+ {"query_id": 16073, "query": "Choosing Shapefile attribute data type to use?"}
461
+ {"query_id": 24933, "query": "Raster generalization - buffers in rasters, expand pixels?"}
462
+ {"query_id": 22755, "query": "how to create a heatmap in QGIS"}
463
+ {"query_id": 53265, "query": "Removing rows in shapefile in R"}
464
+ {"query_id": 31236, "query": "How can I generate irregular grid containing minimum n points?"}
465
+ {"query_id": 34985, "query": "How to Open a File Geodatabase with ogr?"}
466
+ {"query_id": 53262, "query": "ESRI Javascript API: How to hide infoWindow while using measure tool?"}
467
+ {"query_id": 31235, "query": "How to skip drag event to stop a feature being dragged"}
468
+ {"query_id": 32321, "query": "Postcode Shape Files for the UK"}
469
+ {"query_id": 80885, "query": "how to add arcgis 10.1 rest service in openlayers"}
470
+ {"query_id": 56774, "query": "matching a border of one polygon to another"}
471
+ {"query_id": 64392, "query": "Find clusters of points based distance rule"}
472
+ {"query_id": 23614, "query": "Get Raster Values from a Polygon Overlay in Opensource GIS Solutions"}
473
+ {"query_id": 42598, "query": "How to install PostgreSQL 9.2 with PostGIS 2.0 on Ubuntu 11.10 (or higher)?"}
474
+ {"query_id": 69857, "query": "How to change field formats in ArcGIS 10.1 geodatabase?"}
475
+ {"query_id": 109049, "query": "Projecting INEGI shapefiles from Mexico - not lining up"}
476
+ {"query_id": 2682, "query": "Most Up-To-Date Source for US Zip Code Boundaries"}
477
+ {"query_id": 42358, "query": "updatation query along a point"}
478
+ {"query_id": 46716, "query": "Setting rendering order of line layers in QGIS"}
479
+ {"query_id": 44536, "query": "What can I use to read MapInfo files in Java?"}
480
+ {"query_id": 33402, "query": "What is Change Detection and how I can perform such analysis with open source tools?"}
481
+ {"query_id": 78794, "query": "How to determine longest length of segmented polylines representing rivers?"}
482
+ {"query_id": 33887, "query": "Finding centrelines from polygons?"}
483
+ {"query_id": 77463, "query": "How to read shapefile of road segments into Python data structure to get begin and end point coordinates?"}
484
+ {"query_id": 32310, "query": "How to re-order fields permanently using ArcGIS Make Query Table tool?"}
485
+ {"query_id": 102641, "query": "Couldn't load PyQGIS in QGIS 2.2 on Ubuntu 14.04"}
486
+ {"query_id": 93936, "query": "Searching planet_osm_point by longitude and latitude"}
487
+ {"query_id": 53039, "query": "Can you reduce the number of contour lines?"}
488
+ {"query_id": 71926, "query": "How to detect duplicates and keep only one?"}
489
+ {"query_id": 66113, "query": "How to measure area of polygons generated from gps data in qgis?"}
490
+ {"query_id": 41251, "query": "3d terrain from data in postgres"}
491
+ {"query_id": 20793, "query": "Is Shooting Star broken in PGRouting 1.05?"}
492
+ {"query_id": 92645, "query": "Are there are shortcuts for exporting polygon vertex location as a table"}
493
+ {"query_id": 18473, "query": "WFS Query Failing when using Logical OR"}
494
+ {"query_id": 41498, "query": "How do you change units from meters to kilometres?"}
495
+ {"query_id": 42584, "query": "How to call gdal_translate from Python code?"}
496
+ {"query_id": 45619, "query": "How to export attribute tables to Excel?"}
497
+ {"query_id": 91790, "query": "Why some lines do not have Junctions in Network Analyst?"}
498
+ {"query_id": 80662, "query": "What are good out of the box alternative geocoding solutions to Esri's services?"}
499
+ {"query_id": 28031, "query": "Projections appropriate for global analysis that preserve area and that preserve distance (but not necessarily in the same projection)"}
500
+ {"query_id": 103709, "query": "How to learn arcobject vba?"}
501
+ {"query_id": 2685, "query": "Are there any general rules of thumb for selecting a transformation for Georeferencing?"}
502
+ {"query_id": 42580, "query": "\"Select by Location\" in ArcGIS with numerous polygons"}
503
+ {"query_id": 41491, "query": "OpenLayers 2.12 and http basic authentication woes"}
504
+ {"query_id": 103703, "query": "Georeferencing system of rivers using XY To Line tool?"}
505
+ {"query_id": 6804, "query": "How to add GeoServer wfs layer on OpenLayers?"}
506
+ {"query_id": 89232, "query": "Viewshed Analysis ArcGIS 10.2.1"}
507
+ {"query_id": 20566, "query": "How to define new custom projections in QGIS?"}
508
+ {"query_id": 88371, "query": "Career Advice for a GIS Graduate with 1 Year Experience"}
509
+ {"query_id": 109024, "query": "kriging interpolation of many z"}
510
+ {"query_id": 112654, "query": "How to clip a raster with a mask in QGIS?"}
511
+ {"query_id": 39168, "query": "Elseif Conditional Statement in QGIS Field Calculator"}
512
+ {"query_id": 68546, "query": "How to count record points within a given area (electoral district)?"}
513
+ {"query_id": 68545, "query": "Using ArcPy to run Report Layout File (RLF) report and add to layout (for Data Driven Pages)?"}
514
+ {"query_id": 109262, "query": "GeographyFromText and ST_SetSRID+ST_MakePoint different results?"}
515
+ {"query_id": 44998, "query": "Easiest way to create measured intervals between shape points"}
516
+ {"query_id": 78330, "query": "OpenLayers Allow Further Zoom Out?"}
517
+ {"query_id": 61909, "query": "Knowing the polygon id and getting the extent"}
518
+ {"query_id": 27190, "query": "ERROR 999998: Unexpected Error"}
519
+ {"query_id": 89468, "query": "Calculating distance between coordinates"}
520
+ {"query_id": 33629, "query": "FWTools ogr2ogr in Python"}
521
+ {"query_id": 89221, "query": "Simple solution for escaping the QGIS locked into fullscreen mode on Ubuntu 12.04"}
522
+ {"query_id": 15185, "query": "How to create a style file for QGIS from a plain text file?"}
523
+ {"query_id": 44502, "query": "Openlayers on Android and chrome browser - white lines when using viewport meta tag"}
524
+ {"query_id": 102682, "query": "Import CSV limited to 20 records"}
525
+ {"query_id": 76181, "query": "World Land Cover data"}
526
+ {"query_id": 22952, "query": "Creating bulk field aliases for several layers within same ArcSDE feature class using ArcPy?"}
527
+ {"query_id": 39151, "query": "Can I burn stream network into DEM using DEM layer only?"}
528
+ {"query_id": 78120, "query": "use google maps to map as a base map in arcgis 10.1"}
529
+ {"query_id": 82618, "query": "compatible version of sextante for dufour"}
530
+ {"query_id": 33852, "query": "How to find the proper coordinate reference system with two sets of data using different measurements or too convert one system into another"}
531
+ {"query_id": 58757, "query": "Showing snapping error in ArcGIS Online"}
532
+ {"query_id": 59604, "query": "Getting a \"java.lang.OutOfMemoryError\" error while importing raster files from PostGIS to Geoserver"}
533
+ {"query_id": 71719, "query": "Style file to QML or SLD"}
534
+ {"query_id": 957, "query": "Is it possible to define a No SQL model for spatial data?"}
535
+ {"query_id": 17129, "query": "Are folders always part of ArcGIS Server REST API service name?"}
536
+ {"query_id": 68566, "query": "How to know the real size of grid?"}
537
+ {"query_id": 43400, "query": "Joining tables without losing original field names in ArcGIS for Desktop?"}
538
+ {"query_id": 112238, "query": "What is the radius of earth"}
539
+ {"query_id": 67474, "query": "How to select areas from a target layer which do not intersect source layer?"}
540
+ {"query_id": 70645, "query": "How to import sextante(processing) for QGIS 1.9 (2.0)"}
541
+ {"query_id": 19794, "query": "How to implement Google Map to WordPress site?"}
542
+ {"query_id": 3574, "query": "GIS Day function ideas?"}
543
+ {"query_id": 80674, "query": "Metadata Manager for MapInfo"}
544
+ {"query_id": 106808, "query": "ssf to .shp conversion, field name changing from Pahtfinder data dictionary"}
545
+ {"query_id": 59858, "query": "Can anyone recommend an Arcpy GUI?"}
546
+ {"query_id": 57438, "query": "Correlation and terrain databases"}
547
+ {"query_id": 59610, "query": "De facto QGIS projection for EPSG4326 / 'unprojected' reference systems?"}
548
+ {"query_id": 75092, "query": "Maximimum length of text fields in shapefile and geodatabase formats?"}
549
+ {"query_id": 27171, "query": "Why are start and end segment not partially skipped?"}
550
+ {"query_id": 28260, "query": "Storing Image data to spatialite"}
551
+ {"query_id": 32514, "query": "How can I add a loop in gdal_translate?"}
552
+ {"query_id": 19522, "query": "Which spatial statistics tools to use in examining autocorrelation in two layers?"}
553
+ {"query_id": 71504, "query": "How to average a set of n rasters using gdal or other GRASS module?"}
554
+ {"query_id": 15168, "query": "Device for Logging GPS and Accelerometer Data?"}
555
+ {"query_id": 5761, "query": "Different approaches for map matching : links / ideas?"}
556
+ {"query_id": 70411, "query": "QGIS display world country shape files centered on pacific ocean using Robinson, Miller Cylindrical or other projection"}
557
+ {"query_id": 53081, "query": "How to add attributes in proportion to intersecting area from another layer"}
558
+ {"query_id": 60848, "query": "At the northpole, which way is east?"}
559
+ {"query_id": 61945, "query": "How to replace data in parts of raster A with the equivalent data in raster B?"}
560
+ {"query_id": 59869, "query": "Google Earth Enterprise vs. ArcGIS Server"}
561
+ {"query_id": 109290, "query": "Adding an excel database to an existing shapefile"}
562
+ {"query_id": 83977, "query": "Iterate Through All Combinations of Features by Selection in ArcGIS Python Script"}
563
+ {"query_id": 59865, "query": "How can a 3D model of a building be displayed in a web-browser?"}
564
+ {"query_id": 34929, "query": "How to calculate polyline azimuth or polyline direction?"}
565
+ {"query_id": 89038, "query": "pgrouting unexpected output"}
566
+ {"query_id": 27381, "query": "How to install GDAL for python on windows and use for spatial purpose?"}
567
+ {"query_id": 26050, "query": "Write out a WKT file from a loaded shapefile"}
568
+ {"query_id": 20521, "query": "How can I ignore NoData values in map algebra?"}
569
+ {"query_id": 91102, "query": "Can't select layer in the Road Graph plugin QGIS"}
570
+ {"query_id": 53091, "query": "Markers > 50000 Overlays on Openlayers"}
571
+ {"query_id": 58783, "query": "QGIS Plugin Windows"}
572
+ {"query_id": 21616, "query": "Select maximum number of points more than x meters apart"}
573
+ {"query_id": 57210, "query": "Field calculator error"}
574
+ {"query_id": 42776, "query": "Is it possible to postprocess Trimble .ssf files without Trimble Pathfinder Office?"}
575
+ {"query_id": 80454, "query": "How do I read SBET file in python?"}
576
+ {"query_id": 77288, "query": "How to perform Visibility Analysis using QGIS?"}
577
+ {"query_id": 2498, "query": "The Geometry is not M-Aware"}
578
+ {"query_id": 58787, "query": "Raster as Attribute Field Error"}
579
+ {"query_id": 82873, "query": "What is QGIS equivalent to ArcGIS Identity tool?"}
580
+ {"query_id": 111374, "query": "Holes in Rasterized DEM from QGIS"}
581
+ {"query_id": 93519, "query": "Street index to CSV/Excel file"}
582
+ {"query_id": 33826, "query": "How to convert KML to shapefile without losing attributes?"}
583
+ {"query_id": 103514, "query": ".tif and .tfw to GeoTIFF"}
584
+ {"query_id": 31402, "query": "add 3rd party repositories"}
585
+ {"query_id": 100061, "query": "what is the math behind rasterization? Doubt"}
586
+ {"query_id": 27806, "query": "Cartographic techniques for symbolizing routing data"}
587
+ {"query_id": 33251, "query": "What is the best practice for data management?"}
588
+ {"query_id": 67825, "query": "ESRI Error lookup COM Exceptions"}
589
+ {"query_id": 65403, "query": "OpenLayers Rendering Error"}
590
+ {"query_id": 35670, "query": "Remove Illegal Characters in Model Builder"}
591
+ {"query_id": 75685, "query": "QGIS display does not reflect projection"}
592
+ {"query_id": 22114, "query": "How to add Quick Export (Data Interoperability) to Model Builder in ArcGIS 10.0"}
593
+ {"query_id": 23688, "query": "How to split a vector in equal smaller parts in QGIS or similar?"}
594
+ {"query_id": 33018, "query": "Is there a (better) way to debug Visual Basic Code Block in calculate field using ArcGIS?"}
595
+ {"query_id": 86106, "query": "How to get feature data by passing lat/long value to FeatureServer in ArcGIS Online?"}
596
+ {"query_id": 112298, "query": "Generic Question about Union tool in Arcmap"}
597
+ {"query_id": 61044, "query": "Can the OpenGeo Community Edition be used in a commercial project?"}
598
+ {"query_id": 87432, "query": "What is an easy to use web GIS stack to use for making fictional maps?"}
599
+ {"query_id": 14972, "query": "Where to store (premade) styles?"}
600
+ {"query_id": 43290, "query": "How can I save the label style as SLD in QGIS?"}
601
+ {"query_id": 45469, "query": "How do you open shapefiles with ogr2ogr"}
602
+ {"query_id": 13891, "query": "Reordering polygon shapefile permanently?"}
603
+ {"query_id": 63235, "query": "Long range Trilateration from 3 lat, long, range"}
604
+ {"query_id": 24300, "query": "Adding Layerfiles (.lyr) to QGIS?"}
605
+ {"query_id": 75212, "query": "How to reproduce the gdal utility programs in Java by GDAL Java bindings"}
606
+ {"query_id": 74120, "query": "Buffer polygon inward by percentage of area"}
607
+ {"query_id": 26725, "query": "split multi line by use of distance field"}
608
+ {"query_id": 2039, "query": "How can I switch baselayers as a user zooms in to the map in OpenLayers"}
609
+ {"query_id": 50165, "query": "DXF created by QGIS crashes Autocad"}
610
+ {"query_id": 94191, "query": "How to determine distances of points from closest line? (Mapinfo or QGIS)"}
611
+ {"query_id": 50169, "query": "How to standardize raster output from 0 to 100 using raster algebra?"}
612
+ {"query_id": 79803, "query": "qgis2 slope analysis from NED data gives crazy histogram"}
613
+ {"query_id": 86333, "query": "Which districts are on the coast?"}
614
+ {"query_id": 100280, "query": "flatten / collapse one-to-many table and keep the 'many' attributes separate"}
615
+ {"query_id": 43037, "query": "Are there QGIS tools that will allow users to get tabular statistics from their table?"}
616
+ {"query_id": 63240, "query": "Geocoding - get lat/long from 11000 address"}
617
+ {"query_id": 4230, "query": "Rubber sheeting in GRASS or QGIS"}
618
+ {"query_id": 72193, "query": "Difference between Make Feature Layer (Data Management) and using in_memory workspace?"}
619
+ {"query_id": 56953, "query": "Obtaining NDVI value from NDVI image"}
620
+ {"query_id": 10352, "query": "How to create a circle in PostGIS?"}
621
+ {"query_id": 88301, "query": "How to replace accented strings in attribute tables using Python or VBA ArcGIS 10.2"}
622
+ {"query_id": 85031, "query": "How to load sample points or coordinates on GPSMAP 62s?"}
623
+ {"query_id": 91707, "query": "Geoserver Map Rendering"}
624
+ {"query_id": 91949, "query": "Extract coordinates from polyline in QGIS"}
625
+ {"query_id": 56957, "query": "What are these Google Maps glowing spots?"}
626
+ {"query_id": 62390, "query": "Database Diagrammer for PostGIS"}
627
+ {"query_id": 11204, "query": "GeoJSON/GeoCouch questions from a newb"}
628
+ {"query_id": 49802, "query": "Is there a way to permanently rearrange attribute fields in arc10.1 advanced?"}
629
+ {"query_id": 26707, "query": "How to create a Digital Elevation Model"}
630
+ {"query_id": 44116, "query": "How to convert ArcMap *.shp to MapInfo *.tab file?"}
631
+ {"query_id": 45449, "query": "How to Digitize Free Satellite Imagery in QGIS - Alignment issues with Openlayers Plugin"}
632
+ {"query_id": 96153, "query": "ArcGIS Attribute Subdomain?"}
633
+ {"query_id": 103797, "query": "unwanted pixel removal in the image"}
634
+ {"query_id": 305, "query": "Consuming Google Maps as background map through ArcGIS Server?"}
635
+ {"query_id": 5568, "query": "Drawing circles on map using openlayers"}
636
+ {"query_id": 11216, "query": "Is there a way to access QGIS plugins in Python?"}
637
+ {"query_id": 5583, "query": "How to convert image of map into vector format?"}
638
+ {"query_id": 63022, "query": "ArcToolBox input layer and SDE default database connection"}
639
+ {"query_id": 4011, "query": "Where can I find China data?"}
640
+ {"query_id": 63024, "query": "GDAL2Tiles: MapTiles from BSB/KAP are Switched"}
641
+ {"query_id": 102288, "query": "Copy queried attributes of a shapefile to a new shapefile"}
642
+ {"query_id": 18057, "query": "Efficiently find points within a great circle corridor"}
643
+ {"query_id": 92820, "query": "Arcgis 10 assign values to field based on values in other field"}
644
+ {"query_id": 30183, "query": "How to get started with pgRouting and OSM?"}
645
+ {"query_id": 81928, "query": "Help gathering large amounts block group data using factfinder2.census.gov?"}
646
+ {"query_id": 68956, "query": "How to do a Point to Polygon analysis with multiple variables?"}
647
+ {"query_id": 24735, "query": "Determine the Closest road to a GPS point"}
648
+ {"query_id": 2071, "query": "How to catch when scale is changed in ArcGIS?"}
649
+ {"query_id": 87478, "query": "pgrouting - possible to find route through points rather than links?"}
650
+ {"query_id": 89898, "query": "naturalearth sqlite db not loading into qgis 2.2"}
651
+ {"query_id": 5579, "query": "What is the right solution (and map projection) to compute distances between points located all over the World?"}
652
+ {"query_id": 86383, "query": "OpenLayers.Request.GET returning xmlHttpRequest erroe"}
653
+ {"query_id": 44334, "query": "Reduce level of detail for vector contour lines"}
654
+ {"query_id": 6440, "query": "What are the consequences of setting the SupportedImageReturnTypes to MIME in ArcGIS Server"}
655
+ {"query_id": 31261, "query": "Where can I find shapefiles of pipeline data?"}
656
+ {"query_id": 35624, "query": "How to fix The procedure entry point squlites3_open_v2 could not be located in the dynamic link library squlite3.dll?"}
657
+ {"query_id": 34532, "query": "Identify the latitudinal and longitudinal point directly beneath an object in space"}
658
+ {"query_id": 22560, "query": "How to get the coordinates in Lat/long from a point layer?"}
659
+ {"query_id": 77425, "query": "How to calculate centroid of a polygon defined by a list of longitude/latitude points?"}
660
+ {"query_id": 11431, "query": "How can I create a parallel lines in a MULTILINESTRING table using Postgis?"}
661
+ {"query_id": 33208, "query": "How to georeference a vector layer with control points?"}
662
+ {"query_id": 88792, "query": "Can a shapefile store several geometry types?"}
663
+ {"query_id": 46741, "query": "How to Convert labels to DWG Cad file?"}
664
+ {"query_id": 67887, "query": "What is the MS SQL Spatial syntax for counting points within polygons?"}
665
+ {"query_id": 20594, "query": "Moving an Annotation Layer inside a Group Layer Crashes ArcMap"}
666
+ {"query_id": 17184, "query": "Method to shade or overlay a raster map to reflect time of day and ambient light"}
667
+ {"query_id": 43238, "query": "How to perform a join on simultaneous spatial and attribute criteria in ArcGIS?"}
668
+ {"query_id": 88104, "query": "Postgis and osm2pgsql: find all cities that belong to selected state"}
669
+ {"query_id": 66563, "query": "PostGis functions vs. EWKT"}
670
+ {"query_id": 5132, "query": "Lines to Polygons"}
671
+ {"query_id": 8401, "query": "Install ArcView 3.2 and extensions from original disks"}
672
+ {"query_id": 22545, "query": "How to Intersect a layer with custom CRS with NED data?"}
673
+ {"query_id": 87248, "query": "How to produce a CSV file from .tif file with elevation data?"}
674
+ {"query_id": 87004, "query": "Qgis creating point within complex shapes (with holes)"}
675
+ {"query_id": 75602, "query": "GeoReference use wordfile in arcgis"}
676
+ {"query_id": 72575, "query": "ArcPy: Distortion towards edges when exporting to TIFF"}
677
+ {"query_id": 64950, "query": "Which is the best way of working with PostGIS data in R?"}
678
+ {"query_id": 26676, "query": "QGIS installation error"}
679
+ {"query_id": 110829, "query": "How to get link of wms layer in Geoserver"}
680
+ {"query_id": 24258, "query": "How to delete a column of a shape file in QGIS?"}
681
+ {"query_id": 63868, "query": "How to rotate North oriented Map"}
682
+ {"query_id": 64714, "query": "Import attribute data?"}
683
+ {"query_id": 6470, "query": "Arcpy and arcobject"}
684
+ {"query_id": 41829, "query": "Is there any way to set polygon features fill color and outline programmatically?"}
685
+ {"query_id": 85897, "query": "How can I crop an area from openstreetmap in QGIS?"}
686
+ {"query_id": 52975, "query": "Adding a new attribute to shapefile from Excel sheet"}
687
+ {"query_id": 45195, "query": "Is QGIS 1.8 available for Ubuntu?"}
688
+ {"query_id": 14455, "query": "Illinois Legislative Zip to District Match Data Set"}
689
+ {"query_id": 75859, "query": "Scalebar unit different from project unit (QGIS)"}
690
+ {"query_id": 108752, "query": "Problem with Geoserver's start process"}
691
+ {"query_id": 25117, "query": "How to move SHP to gdb with ArcView license?"}
692
+ {"query_id": 40728, "query": "How can I make segmented roads appear as one line?"}
693
+ {"query_id": 83229, "query": "Labeling mulitple interests stacking problem"}
694
+ {"query_id": 82134, "query": "How to get the subbasin area of each specified river segment\uff1f"}
695
+ {"query_id": 25353, "query": "Installation problem with XY Tools"}
696
+ {"query_id": 44098, "query": "Exporting shp into a GPS"}
697
+ {"query_id": 50325, "query": "Connecting to ArcGIS Desktop PostgreSQL database (running locally)"}
698
+ {"query_id": 84552, "query": "Is there a way of converting polygon vertices to points using GDAL python?"}
699
+ {"query_id": 94148, "query": "How do I use 'model builder' in QGIS 2.2?"}
700
+ {"query_id": 12493, "query": "List of Map Service Software"}
701
+ {"query_id": 58054, "query": "Convert time field"}
702
+ {"query_id": 76962, "query": "Installing qgis server and qgis web client on windows 7 64bit"}
703
+ {"query_id": 7339, "query": "Shapefiles to Text"}
704
+ {"query_id": 13107, "query": "How to join data in a spreadsheet to a shapefile ?"}
705
+ {"query_id": 30920, "query": "Animate feature in openlayers"}
706
+ {"query_id": 4086, "query": "I am struggling to convert .dwg to .shp, ideas?"}
707
+ {"query_id": 73458, "query": "How practical is this workflow, tiling from a complex, multi-step GDAL VRT?"}
708
+ {"query_id": 104133, "query": "OpenStreetMap data quality"}
709
+ {"query_id": 108971, "query": "How do i add online GeoServer layers on android mobile app"}
710
+ {"query_id": 75876, "query": "How do I create a shapefile of polygons from points in a spreadsheet?"}
711
+ {"query_id": 70185, "query": "How to Keep Database and Server Connections active"}
712
+ {"query_id": 74301, "query": "Can anybody give me some advice that why when I am moving or dragging the map,it occurs \"jump around\"?"}
713
+ {"query_id": 74543, "query": "How to get QGIS Server GetCapabilities working on Windows?"}
714
+ {"query_id": 24486, "query": "How to insert a point into postgis?"}
715
+ {"query_id": 104370, "query": "Auto-Increment Integer Field in a Feature Class"}
716
+ {"query_id": 35369, "query": "Is it possible to edit layers from a FGDB - File Geodatabse in QGIS?"}
717
+ {"query_id": 147, "query": "How to connect to PostGIS database from ArcMap?"}
718
+ {"query_id": 86754, "query": "Why cant i buffer vector points imported from csv?"}
719
+ {"query_id": 24001, "query": "Merge polygons into a single polygon"}
720
+ {"query_id": 37543, "query": "How do I configure GeoWebCache to read a TMS (GoogleMaps or OSM)"}
721
+ {"query_id": 37304, "query": "Python scripts that run inside ArcMap vs ones that run outside?"}
722
+ {"query_id": 54949, "query": "How to evaluate raster calculator expressions from the console?"}
723
+ {"query_id": 50108, "query": "Elevation profile 10 km each side of a line"}
724
+ {"query_id": 8453, "query": "Can I store an ArcObject inside a BLOB or XML field?"}
725
+ {"query_id": 45159, "query": "Finding minimum bounding extent of given pixel value within raster?"}
726
+ {"query_id": 61482, "query": "How to convert Rotated Polar grid raster to Non Rotated Polar Raster?"}
727
+ {"query_id": 14650, "query": "Shapefiles for real world places"}
728
+ {"query_id": 10053, "query": "Geonames querying for parks in Puerto Rico or US Virgin Islands"}
729
+ {"query_id": 74554, "query": "accuracy of classification in qgis"}
730
+ {"query_id": 35593, "query": "Using the python shape library: pyshp - how to convert .csv file to .shp"}
731
+ {"query_id": 35591, "query": "Why are two incompatible projections used together in OpenLayers?"}
732
+ {"query_id": 111715, "query": "Generating a map from a shapefile using ms4w mapserver"}
733
+ {"query_id": 32082, "query": "Can QGIS open KMZ files?"}
734
+ {"query_id": 99850, "query": "Get Coordinates of Voronoi Polygon Vertices"}
735
+ {"query_id": 23129, "query": "shapefile and multiple lines of census data QGIS"}
736
+ {"query_id": 40943, "query": "How to digitize 90 degree angles?"}
737
+ {"query_id": 1811, "query": "How to prevent automatic new line when labeling point feature class?"}
738
+ {"query_id": 53620, "query": "Using Collect Values Tool with Union in ModelBuilder?"}
739
+ {"query_id": 60398, "query": "Cannot fix QGIS after upgrade to Ubuntu 13.04 Raring"}
740
+ {"query_id": 88723, "query": "QGIS 2.2 rendering problems"}
741
+ {"query_id": 44063, "query": "How to find and delete identical points?"}
742
+ {"query_id": 78923, "query": "How to change the aspect ratio of a map without the scale changing?"}
743
+ {"query_id": 20095, "query": "Simple field calculator equation in ArcGIS 10 not working"}
744
+ {"query_id": 8449, "query": "saving .xls as .dbf...at a dead end"}
745
+ {"query_id": 86300, "query": "How to find & send alert SMS for next bus stop in a GPS tracking system (PostGIS DB)?"}
746
+ {"query_id": 48899, "query": "Iterating a model to create 3 buffers around three points and find their intersection (trilateration) in arcgis 10"}
747
+ {"query_id": 59170, "query": "QGIS Map Composer, right hand pane has gone!"}
748
+ {"query_id": 107227, "query": "Calculate distance between point and linestring and how to represent that on QGIS?"}
749
+ {"query_id": 75899, "query": "problem in loading outputs from processing tool (sextante)"}
750
+ {"query_id": 95249, "query": "How to auto increment a field in a feature class?"}
751
+ {"query_id": 62103, "query": "How do you convert to degrees and minutes from 8/9-digit lat/lon DMS code?"}
752
+ {"query_id": 73476, "query": "How to find out which layer had a Selection made on it?"}
753
+ {"query_id": 61499, "query": "Errors using SelectLayerByAttribute in ArcPy"}
754
+ {"query_id": 59173, "query": "How to find the nearest line to a point in QGIS?"}
755
+ {"query_id": 35106, "query": "Where can I get zip code shapefiles for years 2000 to 2010?"}
756
+ {"query_id": 88715, "query": "How to update attribute table of a shapefile on display automatically?"}
757
+ {"query_id": 15755, "query": "Training courses in geostatistics and spatial modelling"}
758
+ {"query_id": 82175, "query": "QGIS Street graph using from and to coordinates from a table(excel)"}
759
+ {"query_id": 38855, "query": "XMLHttpRequest cannot load http://localhost: /geoserver/wfs. Origin http://localhost is not allowed by Access-Control-Allow-Origin"}
760
+ {"query_id": 109853, "query": "QGIS, Multiple lines and wrap on character?"}
761
+ {"query_id": 104165, "query": "How can i find shortest point on edge of a polygon from a point to that polygon (not it's distance )"}
762
+ {"query_id": 7147, "query": "How to Batch export MXD to PDF files?"}
763
+ {"query_id": 67804, "query": "setting model workspace from script (and saving the setting)"}
764
+ {"query_id": 22255, "query": "are there any methods can choose all field and make the SUM for each fields or I must do it one by one?"}
765
+ {"query_id": 95035, "query": "GeoServer - set declared SRS using curl"}
766
+ {"query_id": 25522, "query": "Advantage of using WMS over WFS"}
767
+ {"query_id": 93093, "query": "How to split a polygon by a polygon and apportion attributes - postgis"}
768
+ {"query_id": 72393, "query": "Calculating a field based on two other fields, if they exist"}
769
+ {"query_id": 72392, "query": "How to apply the same style to different columns?"}
770
+ {"query_id": 37518, "query": "How can I set python path and version for QGIS?"}
771
+ {"query_id": 40919, "query": "QGIS exporting huge SVG"}
772
+ {"query_id": 53402, "query": "How to mask out features outside of the Coverage Layer for Atlas plugin?"}
773
+ {"query_id": 12459, "query": "Geoserver 2.1.1 with ECW support"}
774
+ {"query_id": 84141, "query": "Taudem one of the most important tool series doesn't work"}
775
+ {"query_id": 45365, "query": "How to create vertical labels in QGIS?"}
776
+ {"query_id": 62121, "query": "How to adjust online basemap to Arcmap"}
777
+ {"query_id": 36891, "query": "Does Calculate Value (Model Only Tool) work correctly in tools run in Batch?"}
778
+ {"query_id": 44035, "query": "Real time GPS data sources"}
779
+ {"query_id": 49729, "query": "pgRouting Dijkstra returns wrong"}
780
+ {"query_id": 49728, "query": "Import functions in python Add-In logic script"}
781
+ {"query_id": 34237, "query": "Do any know another application like pgrouting?"}
782
+ {"query_id": 48872, "query": "Integrating geolocated Twitter posts in ArcGIS for Desktop?"}
783
+ {"query_id": 87401, "query": "Can I automatically save datetime for every entry in my spatialite tabel?"}
784
+ {"query_id": 10046, "query": "How to develop a map with layers in Geoserver?"}
785
+ {"query_id": 112600, "query": "How do I map points on a 2D map to a 3D illustration of the same area?"}
786
+ {"query_id": 68233, "query": "Large Dataset Buffer Help"}
787
+ {"query_id": 44948, "query": "Converting .dwg to .shp using QGIS?"}
788
+ {"query_id": 43617, "query": "What is the maximum Theoretical accuracy of GPS?"}
789
+ {"query_id": 29305, "query": "qgis.core error"}
790
+ {"query_id": 10932, "query": "Overlaying GPX data on rasters in QGIS"}
791
+ {"query_id": 101706, "query": "QGIS 2.2 Print Composer - pointer will not select or move items"}
792
+ {"query_id": 80127, "query": "Multiple viewparams in openlayer"}
793
+ {"query_id": 81212, "query": "How to draw a simple bus network that works with pgRouting?"}
794
+ {"query_id": 32723, "query": "How to open popup on mouseover in Leaflet?"}
795
+ {"query_id": 89177, "query": "how to use distance matrix results in table joins?"}
796
+ {"query_id": 89165, "query": "Differences between PostGis and SpatiaLite"}
797
+ {"query_id": 72985, "query": "how to find angle between two points in QGIS?"}
798
+ {"query_id": 14066, "query": "How to find the area of raster values within polygon zones?"}
799
+ {"query_id": 42516, "query": "qgis projections from Michigan's CGI data"}
800
+ {"query_id": 41423, "query": "How do I export neighbourhoods in wikimapia to KML file"}
801
+ {"query_id": 77184, "query": "Geographic Coordinate system and Projected coordinate system"}
802
+ {"query_id": 10703, "query": "Looking for a tool to convert DD to DMS"}
803
+ {"query_id": 84956, "query": "Converting from Vector to Raster"}
804
+ {"query_id": 8277, "query": "Recomputing footprints on old satellite imagery"}
805
+ {"query_id": 97814, "query": "When symbolising by category can I make the transparency different for each category?"}
806
+ {"query_id": 93697, "query": "How to access annotation feature classes in ArcPy?"}
807
+ {"query_id": 107474, "query": "Merging vector layers using QGIS?"}
808
+ {"query_id": 18874, "query": "How to generate shape file from Excel or CSV files?"}
809
+ {"query_id": 93696, "query": "How to limit the number of decimal digits in ARCGIS to have the exported file in CAD with the same format?"}
810
+ {"query_id": 42500, "query": "How to generate all possible routes between two points?"}
811
+ {"query_id": 44926, "query": "how do you sort points so that they are geographically near each other"}
812
+ {"query_id": 61862, "query": "Simple thematic mapping of shapefile using Python?"}
813
+ {"query_id": 110409, "query": "Can't run SAGA or GRASS commands from QGIS processing toolbox"}
814
+ {"query_id": 8032, "query": "How do various JavaScript mapping libraries compare?"}
815
+ {"query_id": 54094, "query": "Python Code: Help with Printing a Message from an AddMessage Result?"}
816
+ {"query_id": 62949, "query": "Is there a QGIS equivalent of the erase tool in ArcGIS?"}
817
+ {"query_id": 4906, "query": "Why is law of cosines more preferable than haversine when calculating distance between two latitude-longitude points?"}
818
+ {"query_id": 4901, "query": "OpenLayers/proj4js and the EPSG:27700 (UK) Projection"}
819
+ {"query_id": 72506, "query": "How to fix Runtime Error R6034: An application has made an attempt to load th C runtime library incorrectly?"}
820
+ {"query_id": 41880, "query": "ModelBuilder Run Time Errors Using ArcGIS 10.0"}
821
+ {"query_id": 17550, "query": "Superimpose grid on points, then aggregate points within each grid cell"}
822
+ {"query_id": 29777, "query": "Qgis - Running SDA4PP"}
823
+ {"query_id": 55196, "query": "How can I get the proj4 string or EPSG code from a shapefile .prj file?"}
824
+ {"query_id": 85825, "query": "ArcGIS Python Add in: Pass Entry from Combo Box (in Toolbar) to mdb"}
825
+ {"query_id": 2976, "query": "Best practices for organization and tidiness - How do you deal with multiple copies of layers?"}
826
+ {"query_id": 26262, "query": "How to run GDAL command in php page?"}
827
+ {"query_id": 58224, "query": "How do I select only those contours who heights are Integers?"}
828
+ {"query_id": 25177, "query": "Which hardware configuration is necessary for QGIS?"}
829
+ {"query_id": 109234, "query": "Assigning values to new field using field calculator?"}
830
+ {"query_id": 70591, "query": "Creating Shapely MultiPolygons from shape file MultiPolygons"}
831
+ {"query_id": 108380, "query": "Availability of MXD file for OpenStreetMap data in Esri Geodatabase?"}
832
+ {"query_id": 29501, "query": "How to get \".GDB\" Esri File Geodatabase in QGIS for MAC OSX 10.6?"}
833
+ {"query_id": 1892, "query": "Quantum GIS and ECW images?"}
834
+ {"query_id": 50754, "query": "Why does \"save\" overwrite the \"capture point\" function?"}
835
+ {"query_id": 48265, "query": "How to find dead-ends in a road network"}
836
+ {"query_id": 68273, "query": "How do I get the coordinates of my data frame always in long/lat?"}
837
+ {"query_id": 9157, "query": "Label points at regular intervals using ArcGIS for Desktop?"}
838
+ {"query_id": 69137, "query": "Is there a Raster Equivalent of the Split tool?"}
839
+ {"query_id": 108397, "query": "Importing a Shapefile in SpaceStat with GeoTools"}
840
+ {"query_id": 57394, "query": "How to enumerate join values with ArcGIS?"}
841
+ {"query_id": 35187, "query": "How to detect duplicate attribute values in a table using ArcPy"}
842
+ {"query_id": 61411, "query": "drawing line from points"}
843
+ {"query_id": 108154, "query": "Calculating average raster values around set of points using ArcGIS for Desktop (or R)?"}
844
+ {"query_id": 28667, "query": "Qgis polygonize problem - DLL load fail"}
845
+ {"query_id": 35183, "query": "overlay a county shapefiles for 2 different years"}
846
+ {"query_id": 107062, "query": "Converting file geodatabase with coded domains to PostgreSQL / PostGIS?"}
847
+ {"query_id": 40536, "query": "Extract Raster Value into Polygon Attribute"}
848
+ {"query_id": 57151, "query": "Why does Google satellite layer change the project CRS?"}
849
+ {"query_id": 30970, "query": "How are the edges of a polygon defined?"}
850
+ {"query_id": 59339, "query": "generate random world point geometries"}
851
+ {"query_id": 26484, "query": "Issues while plotting the results of pgRouting shortest path"}
852
+ {"query_id": 37125, "query": "Is ArcSDE no longer needed at ArcGIS 10.1?"}
853
+ {"query_id": 101995, "query": "Plugin of Multiple buffers in QGIS"}
854
+ {"query_id": 50769, "query": "Where to report QGIS and QGIS-Plugin bugs?"}
855
+ {"query_id": 101998, "query": "What is a better idea for modelling a fault plane than as TIN?"}
856
+ {"query_id": 73649, "query": "LiDAR Feature extraction specifications/standards"}
857
+ {"query_id": 42947, "query": "How can you join attributes from polygons to points which are within the polygon feature using PostgreSQL and PostGIS?"}
858
+ {"query_id": 59580, "query": "Displaying PDF files associated to feature objects location."}
859
+ {"query_id": 59582, "query": "Maintain 8-bit pixel depth in Raster Calculator"}
860
+ {"query_id": 25361, "query": "How to install \"1-band color raster color table\"?"}
861
+ {"query_id": 41608, "query": "How to find self-intersecting polylines using ArcObjects?"}
862
+ {"query_id": 101969, "query": "How to: create a table containing point values (continuous) within polygons (continuous)"}
863
+ {"query_id": 102819, "query": "QGIS - View bathymetry info in the status bar"}
864
+ {"query_id": 26452, "query": "How to use cql_filter in OpenLayers.Control.WMSGetFeatureInfo?"}
865
+ {"query_id": 84786, "query": "Closed source plugins"}
866
+ {"query_id": 83212, "query": "Import a .las-file into QGIS 2.0.1?"}
867
+ {"query_id": 111781, "query": "FWTools Python ImportError: DLL load failed:parameter is incorrect"}
868
+ {"query_id": 16656, "query": "Finding two locations with H elevation difference on a DEM"}
869
+ {"query_id": 82121, "query": "Convert shapefile to MIF programmally"}
870
+ {"query_id": 15565, "query": "Why do ArcToolbox tools give ActiveX error?"}
871
+ {"query_id": 17503, "query": "How can I identify the pixel with the maximum value in a grid?"}
872
+ {"query_id": 50537, "query": "Is there an inbuilt arcpy method to insert a new line?"}
873
+ {"query_id": 40991, "query": "How can I add KML to OpenLayers from remote server"}
874
+ {"query_id": 97845, "query": "Integrating polygons into geometric networks"}
875
+ {"query_id": 28888, "query": "Does ArcMap/ArcPy support creation of textElements using Python?"}
876
+ {"query_id": 29734, "query": "How to calculate area of 1 x 1 degree cells in a raster"}
877
+ {"query_id": 92396, "query": "Point-sampling rasters using R?"}
878
+ {"query_id": 28406, "query": "ESRI Shapefile to ARCGIS Javascript JSON format"}
879
+ {"query_id": 58262, "query": "How to dissolve polygons and aggregate their data in QGIS?"}
880
+ {"query_id": 28881, "query": "Convert an arbitrary meta-data-free map image into QGIS project"}
881
+ {"query_id": 2777, "query": "What's the value of being GISP certified?"}
882
+ {"query_id": 59356, "query": "how to stretch GMT raster with gdal to work with google"}
883
+ {"query_id": 82598, "query": "Reducing field length"}
884
+ {"query_id": 102820, "query": "QGIS - Obtain elevation profile"}
885
+ {"query_id": 1449, "query": "Getting a GIS Position"}
cqadupstack-mathematica.jsonl ADDED
@@ -0,0 +1,804 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 39076, "query": "Keep data in memory inside a notebook without having to evaluate it again"}
2
+ {"query_id": 39078, "query": "Return \"true\" if point is in Convex Hull"}
3
+ {"query_id": 42483, "query": "Join matrix based on conditions"}
4
+ {"query_id": 44421, "query": "Use of N@ with Table"}
5
+ {"query_id": 45994, "query": "iterative programming"}
6
+ {"query_id": 16194, "query": "Movable text on a curve"}
7
+ {"query_id": 22876, "query": "Symbolic Calculations with formal matrices"}
8
+ {"query_id": 44428, "query": "The precision of the number"}
9
+ {"query_id": 4727, "query": "Does Mathematica support variable frame rate for any video format, in analogue of GIF-style \"DisplayDurations\"?"}
10
+ {"query_id": 2789, "query": "Aborting evaluation when the memory exceeds a certain limit"}
11
+ {"query_id": 4729, "query": "How to format numbers with at least one figure after the decimal point"}
12
+ {"query_id": 55568, "query": "Why isn't Refresh working as expected?"}
13
+ {"query_id": 4720, "query": "Labelling ArrayPlot Charts"}
14
+ {"query_id": 32447, "query": "How to take the log of an equation?"}
15
+ {"query_id": 41141, "query": "Sorting lists element by element"}
16
+ {"query_id": 18142, "query": "How can I seperate specific elements from the list?"}
17
+ {"query_id": 20228, "query": "How to use \"Drop\" function to drop matrix' rows and columns in an arbitrary way?"}
18
+ {"query_id": 21558, "query": "Confusing efficiency and evaluation when returning pure functions?"}
19
+ {"query_id": 20468, "query": "Collapse matching brackets"}
20
+ {"query_id": 23734, "query": "Manipulate a Plot that contains a variable that contains symbol"}
21
+ {"query_id": 54486, "query": "How to access new colour schemes in version 10?"}
22
+ {"query_id": 1, "query": "Usage of \\[InvisibleApplication] and other related invisible characters"}
23
+ {"query_id": 10669, "query": "How to make a Line[] with no end?"}
24
+ {"query_id": 30014, "query": "How to create a simple cross eyed 3d plot"}
25
+ {"query_id": 27091, "query": "Unresolved differential equation"}
26
+ {"query_id": 3646, "query": "How to make a 3D globe?"}
27
+ {"query_id": 21764, "query": "Define a Plot3D function with custom options"}
28
+ {"query_id": 19201, "query": "Embedding Mathematica Console into a Java/.NET Application"}
29
+ {"query_id": 22611, "query": "Autocomplete short symbol names in non-global context"}
30
+ {"query_id": 33513, "query": "How to remove the background noise from a single sound file?"}
31
+ {"query_id": 11725, "query": "How to find circular objects in an image?"}
32
+ {"query_id": 33992, "query": "Double sum over primes"}
33
+ {"query_id": 3412, "query": "Conditional Gathering of lists"}
34
+ {"query_id": 3897, "query": "Plotting Error Bars on a Log Scale"}
35
+ {"query_id": 4744, "query": "GridBox/packed array behaviour"}
36
+ {"query_id": 6923, "query": "Edit a Mathematica plot in Illustrator, missing font problem"}
37
+ {"query_id": 38196, "query": "Importing and running a notebook"}
38
+ {"query_id": 19457, "query": "Finding the likeliest path in a Markov process"}
39
+ {"query_id": 24807, "query": "Dynamically labeling a family of curves"}
40
+ {"query_id": 45725, "query": "How to simplify a polynomial and get the results in the order that I want?"}
41
+ {"query_id": 29254, "query": "Defining a polygon by clicking on an image"}
42
+ {"query_id": 31566, "query": "How to keep front and back colors of Polygon in Graphics3D same all the time"}
43
+ {"query_id": 29016, "query": "Short circuit logical operators"}
44
+ {"query_id": 32658, "query": "Combine 2D images perpendicular to each other"}
45
+ {"query_id": 21742, "query": "Extracting Facebook Managed accounts (pages) in Mathematica?"}
46
+ {"query_id": 41350, "query": "Mathematica Semilog (LogLinearPlot) using x,y points from table"}
47
+ {"query_id": 16398, "query": "Loops and subroutines"}
48
+ {"query_id": 40029, "query": "Is it possible to modify the options for a particular cell from another cell?"}
49
+ {"query_id": 42209, "query": "Tick labels above axis"}
50
+ {"query_id": 27049, "query": "InputField with Scrollbars"}
51
+ {"query_id": 37093, "query": "mathematica function autocomplete issue"}
52
+ {"query_id": 5619, "query": "How to create a floating image with no window background"}
53
+ {"query_id": 11705, "query": "saving Manipulate data inside a notebook"}
54
+ {"query_id": 10619, "query": "Sort strings by natural ordering"}
55
+ {"query_id": 56213, "query": "Possible bug involving Dataset/Query and RightComposition"}
56
+ {"query_id": 4764, "query": "Non-commutative symbolic linear algebra"}
57
+ {"query_id": 21993, "query": "Equidistant points on a polyline"}
58
+ {"query_id": 39026, "query": "Loop function over list"}
59
+ {"query_id": 17250, "query": "Is it possible to change the color of plot in Show?"}
60
+ {"query_id": 33721, "query": "While loop not breaking when condition is met"}
61
+ {"query_id": 31302, "query": "How do I create a package from an existing notebook?"}
62
+ {"query_id": 6955, "query": "Is it possible to insert arguments into functions when they're used like Function@ or //Function?"}
63
+ {"query_id": 32878, "query": "Finding hidden treasure (aka finding undocumented functions)"}
64
+ {"query_id": 7804, "query": "Evaluation inside Button stops after some seconds"}
65
+ {"query_id": 11950, "query": "Stategies to avoid NIntegrate::slwcon error"}
66
+ {"query_id": 4537, "query": "Rotating 3DPlot into animated gif"}
67
+ {"query_id": 33724, "query": "How do I include both text and variables in Input[ ]?"}
68
+ {"query_id": 33966, "query": "How to \"explode\" a list inside a function call argument list?"}
69
+ {"query_id": 20873, "query": "Graphing the amount of time a function takes"}
70
+ {"query_id": 14193, "query": "Good way to discriminate between Mathematica/PlayerPro/CDFPlayer"}
71
+ {"query_id": 38166, "query": "Pulling constants out of integrations"}
72
+ {"query_id": 18310, "query": "Mathematica and Python integration?"}
73
+ {"query_id": 1041, "query": "How to pipe a stream to another notebook?"}
74
+ {"query_id": 1283, "query": "Permutations[Range[12]] produces an error instead of a list"}
75
+ {"query_id": 850, "query": "How do I clear all user defined symbols?"}
76
+ {"query_id": 27023, "query": "Animated 3D graphics is low resolution"}
77
+ {"query_id": 10838, "query": "Why does mathematica crash when I rotate a 3D graph?"}
78
+ {"query_id": 39019, "query": "Exporting images in a Mathematica array to a PDF s.t. each image is precisely $n \\times m$ millimeter in dimension"}
79
+ {"query_id": 38152, "query": "How to make a control array of buttons or togglers?"}
80
+ {"query_id": 42411, "query": "Use Map with OptionValue"}
81
+ {"query_id": 22828, "query": "Factorize and find the null space of a polynomial in several variables"}
82
+ {"query_id": 41569, "query": "Optimizing a bubble art code"}
83
+ {"query_id": 27038, "query": "Simple Macro or Meta Programming for Data Analysis"}
84
+ {"query_id": 27274, "query": "Sort+Union on a list"}
85
+ {"query_id": 5409, "query": "Interdependent controls in Manipulate"}
86
+ {"query_id": 30432, "query": "RevolutionPlot3D: revolving around a line NOT an axis"}
87
+ {"query_id": 29696, "query": "Making a C++ callable .lib or .dll file from a Mathematica notebook"}
88
+ {"query_id": 49289, "query": "Converting strings of the form \"1.34e5\" to real numbers?"}
89
+ {"query_id": 5644, "query": "Partition string into chunks"}
90
+ {"query_id": 26837, "query": "\"Go back\" and \"Go forward\" in help?"}
91
+ {"query_id": 27921, "query": "Problem with ListVectorPlot3D"}
92
+ {"query_id": 33373, "query": "How to get a list of pairs into the form $(x,y)$?"}
93
+ {"query_id": 25502, "query": "How to type a capital 'E' in Mathematica 9 using 'ToExpression' and 'TeXForm'?"}
94
+ {"query_id": 24892, "query": "Outputting a set of graphics 3D objects with positions defined by one array and colors by another?"}
95
+ {"query_id": 35553, "query": "Mathematica's ArcTan function"}
96
+ {"query_id": 14611, "query": "Function behaves differently inside a package than outside"}
97
+ {"query_id": 20051, "query": "How do I get my equation to have the form $(x-a)^2 + (y-b)^2 + (z-c)^2-d = 0$?"}
98
+ {"query_id": 13520, "query": "Evaluate while external command is being run"}
99
+ {"query_id": 8922, "query": "position of sequence of elements in list"}
100
+ {"query_id": 15945, "query": "How to implement FittedModel like objects"}
101
+ {"query_id": 30090, "query": "Use the same scale for two ListContour plots"}
102
+ {"query_id": 15718, "query": "Can I make a default for an optional argument the value of another argument?"}
103
+ {"query_id": 13538, "query": "How to make 3d solid volume from set of images"}
104
+ {"query_id": 38819, "query": "What are the limits of the Prime-functions?"}
105
+ {"query_id": 35544, "query": "How to use Automorphisms[] on a graph?"}
106
+ {"query_id": 2157, "query": "Customize front end to add notifications when evaluation finishes?"}
107
+ {"query_id": 55972, "query": "Which function definition is used to evaluate an expression that matches the lefthand side of more than one definition?"}
108
+ {"query_id": 21150, "query": "How can I compile a ColorFunction with Blend?"}
109
+ {"query_id": 54645, "query": "Simplifying (A+B)* C doesn't work"}
110
+ {"query_id": 4338, "query": "Graph relationships between functions and variables"}
111
+ {"query_id": 39904, "query": "To put a plot inside of a plot"}
112
+ {"query_id": 20277, "query": "How to define a vector of arbitary length"}
113
+ {"query_id": 45574, "query": "Generate polyhedron from coordinates"}
114
+ {"query_id": 46662, "query": "Scope of variables within a Manipulate expression"}
115
+ {"query_id": 18193, "query": "balanced Shortest[] and string-patterns"}
116
+ {"query_id": 34682, "query": "Esc-esc for special characters and autocomplete in Mathematica 9"}
117
+ {"query_id": 30085, "query": "The order of the result $x^2 \\left(b-\\frac{a}{2}\\right)+(a-2) x^3+\\left(2-\\frac{b}{2}\\right) x+4 x^4-1$"}
118
+ {"query_id": 15929, "query": "Graphics exported from Mathematica 9 are very large because even standard fonts are embedded"}
119
+ {"query_id": 20272, "query": "How to work with the symbol EndOfFile?"}
120
+ {"query_id": 5434, "query": "Using D to find a symbolic derivative"}
121
+ {"query_id": 13981, "query": "How to generate a RandomVariate of a custom distribution?"}
122
+ {"query_id": 54899, "query": "Addition of all elements of two sets with each other"}
123
+ {"query_id": 8943, "query": "Formatting Framed - some FrameStyle graphic directives don't work?"}
124
+ {"query_id": 29085, "query": "MathKernel doesn't return all Messages"}
125
+ {"query_id": 21374, "query": "Show doesn't show all the plots"}
126
+ {"query_id": 46893, "query": "How to Plot a function that returns multiple values?"}
127
+ {"query_id": 5454, "query": "Implementing bookmarks in the front end when editing a package"}
128
+ {"query_id": 24882, "query": "What causes strange line artifacts to appear in plots with certain PlotRanges?"}
129
+ {"query_id": 1096, "query": "List of compilable functions"}
130
+ {"query_id": 47749, "query": "ListDensityPlot with discrete bins"}
131
+ {"query_id": 29098, "query": "How to create a ListPlot containing two lists?"}
132
+ {"query_id": 55517, "query": "Generating a Table with a certian Density"}
133
+ {"query_id": 9801, "query": "How can I tell mathematica to generate an histogram from nominal data?"}
134
+ {"query_id": 13757, "query": "How to make a function that evaluates an expression?"}
135
+ {"query_id": 13754, "query": "Time varying equation plot"}
136
+ {"query_id": 13513, "query": "Plot Even Piecewise function"}
137
+ {"query_id": 19027, "query": "Is there a way to ask Mathematica for the RAM installed?"}
138
+ {"query_id": 19264, "query": "Converting a list of replacement rules into a list of real values"}
139
+ {"query_id": 45551, "query": "How to reduce notebook or CDF file size with many images in it?"}
140
+ {"query_id": 6796, "query": "Using the result of Solve in subsequent calculations"}
141
+ {"query_id": 33574, "query": "What's the correct way to shift zero frequency to the center of a Fourier Transform?"}
142
+ {"query_id": 13961, "query": "Plotting graphics as ASCII plots"}
143
+ {"query_id": 4368, "query": "How to insert graphics primitives into a plot?"}
144
+ {"query_id": 42035, "query": "Problem with With"}
145
+ {"query_id": 6562, "query": "How can I create a rectangular graphic with curved edges?"}
146
+ {"query_id": 20023, "query": "Plot 4D data with color as 4th dimension"}
147
+ {"query_id": 19035, "query": "What does # mean in Mathematica?"}
148
+ {"query_id": 5235, "query": "Why doesn't Evaluate appear to work in this RegionPlot example with MatchQ?"}
149
+ {"query_id": 17093, "query": "Exp[I \u03b8] + b Exp[-I \u03b8], Part II"}
150
+ {"query_id": 18183, "query": "How to install the Wolfram Workbench plugin into Eclipse Kepler?"}
151
+ {"query_id": 30290, "query": "Checking for duplicates in sublists"}
152
+ {"query_id": 24623, "query": "question about Inner"}
153
+ {"query_id": 33561, "query": "Classification of a linear system of equations with a parameter"}
154
+ {"query_id": 11794, "query": "Get polynomial interpolation formula"}
155
+ {"query_id": 7408, "query": "ListPlot with plotmarkers determined by point"}
156
+ {"query_id": 46866, "query": "Is it possible to auto-load documentation for current function?"}
157
+ {"query_id": 48802, "query": "My \"N\" turned red randomly"}
158
+ {"query_id": 5242, "query": "How to import all files of a folder at once?"}
159
+ {"query_id": 22419, "query": "Benchmarking expressions"}
160
+ {"query_id": 44200, "query": "How to modify the file \"KeyEventTranslations.tr\" to use Enter to evaluate the current cell?"}
161
+ {"query_id": 22651, "query": "Applying a transformation rule on an Image"}
162
+ {"query_id": 21328, "query": "how can i convert data into string format?"}
163
+ {"query_id": 4390, "query": "Threading behavior of SameQ vs Equals"}
164
+ {"query_id": 33314, "query": "How to improve the quality of 3D rendering?"}
165
+ {"query_id": 451, "query": "Saving a notebook as PDF, preserving syntax highlighting"}
166
+ {"query_id": 32223, "query": "Obtaining the name of a variable as a string"}
167
+ {"query_id": 51188, "query": "Timing of ParallelDo versus Do: simple example"}
168
+ {"query_id": 20470, "query": "Function with custom Options and modified Options for built-in Symbols"}
169
+ {"query_id": 55308, "query": "LegendLayout not working as asked"}
170
+ {"query_id": 8748, "query": "AbsoluteOptions of a Histogram with PlotRange"}
171
+ {"query_id": 43350, "query": "Working with symmetric polynomials"}
172
+ {"query_id": 10432, "query": "How to avoid nested With[]?"}
173
+ {"query_id": 41170, "query": "Plotting: Basic Question"}
174
+ {"query_id": 55309, "query": "Marking certain detected points on an image"}
175
+ {"query_id": 23517, "query": "Question about rendering axes"}
176
+ {"query_id": 39089, "query": "How to do subtraction with sets in which the elements have multiplicity indicators?"}
177
+ {"query_id": 20243, "query": "TabView resets to default when selecting data using Control object"}
178
+ {"query_id": 6102, "query": "MapThread with non-rectangular lists"}
179
+ {"query_id": 19253, "query": "Plotting a 3D list causes kernel to crash if x and y axes have vastly different scales"}
180
+ {"query_id": 23751, "query": "Passing an iterator"}
181
+ {"query_id": 44439, "query": "How to change default font?"}
182
+ {"query_id": 45528, "query": "How to get a number from a dynamic variable in \"manipulate\""}
183
+ {"query_id": 52043, "query": "Stopping Mathematica from reordering expressions"}
184
+ {"query_id": 54464, "query": "Bug in NDSolve (Mathematica 9.0.1)?"}
185
+ {"query_id": 57975, "query": "ToExpression from commandline"}
186
+ {"query_id": 7668, "query": "Why won't Mathematica Solve a set of two equations for one variable?"}
187
+ {"query_id": 6338, "query": "Prefix operator with low precedence"}
188
+ {"query_id": 30038, "query": "Is there an analogue of the Variables command for general expressions?"}
189
+ {"query_id": 6350, "query": "How to estimate time series from a plot?"}
190
+ {"query_id": 47019, "query": "appending element to sub list"}
191
+ {"query_id": 9623, "query": "How to make hollow polyhedra?"}
192
+ {"query_id": 27645, "query": "Calculating volume between two surfaces of revolution"}
193
+ {"query_id": 28977, "query": "Split dataset based on the first column"}
194
+ {"query_id": 29822, "query": "Plotting list-valued interpolating function"}
195
+ {"query_id": 23280, "query": "Calculating Taylor polynomial of an implicit function given by an equation"}
196
+ {"query_id": 22193, "query": "Can anyone identify these plots?"}
197
+ {"query_id": 24373, "query": "How to monitor the progress of Importing files?"}
198
+ {"query_id": 27883, "query": "Understanding the coordinate system for ImageTake"}
199
+ {"query_id": 7679, "query": "Sort lists according to the order of another"}
200
+ {"query_id": 9631, "query": "find subsequences of constant increase"}
201
+ {"query_id": 14340, "query": "How can I define an option \"packet\" for plots so I can only alter the definition and all plots with that \"packet\" will change appearance?"}
202
+ {"query_id": 7214, "query": "How to Set parts of indexed lists?"}
203
+ {"query_id": 8544, "query": "How to plot Fit functions?"}
204
+ {"query_id": 59253, "query": "How to get a multiple line plot from a list of lists"}
205
+ {"query_id": 59013, "query": "DSolve not returning \"trivial\" solutions"}
206
+ {"query_id": 246, "query": "How to combine images with the same dimensions in a grid?"}
207
+ {"query_id": 17857, "query": "How do I troubleshoot when I get a Part::partd or a Part::partw error?"}
208
+ {"query_id": 31902, "query": "Do any users know of methods to capture Twitter feeds and subject them to analysis?"}
209
+ {"query_id": 17617, "query": "Using the symbol I for electrical current"}
210
+ {"query_id": 18707, "query": "Programming Mathematica - Introduction by Paul Wellin"}
211
+ {"query_id": 51776, "query": "How get eigenvectors without phase jump?"}
212
+ {"query_id": 15679, "query": "Difference between function definitions"}
213
+ {"query_id": 8310, "query": "Using the Mathematica front-end efficiently for editing notebooks"}
214
+ {"query_id": 29808, "query": "Detecting a more general pattern"}
215
+ {"query_id": 7463, "query": "Is this the most efficient way to round approximate integers to integers while leaving other Reals untouched?"}
216
+ {"query_id": 26776, "query": "Keeping memory to reduce the running time of recursion"}
217
+ {"query_id": 27868, "query": "Combining the items with common available dates from two lists"}
218
+ {"query_id": 40837, "query": "How do I switch between two notebooks in Mathematica 9 interface?"}
219
+ {"query_id": 51783, "query": "How to find these two intersections?"}
220
+ {"query_id": 47475, "query": "Drop last element of parts of a list"}
221
+ {"query_id": 15885, "query": "Combining two lists of different dimensions into a list of all combinations of points?"}
222
+ {"query_id": 17826, "query": "How to automate generation of image files?"}
223
+ {"query_id": 15649, "query": "Setting the default font for PlotLegends"}
224
+ {"query_id": 1911, "query": "What is the fastest way to locate an image inside a larger image?"}
225
+ {"query_id": 46136, "query": "Ordering the Terms in an Expression"}
226
+ {"query_id": 7235, "query": "Exchange axes in ListLinePlot"}
227
+ {"query_id": 23034, "query": "StreamPlot in Polar Coordinates"}
228
+ {"query_id": 41920, "query": "Typesetting - entering derivative in traditional form"}
229
+ {"query_id": 33067, "query": "What is the syntax to combine conditions and options?"}
230
+ {"query_id": 11298, "query": "Map-Thread-Through-Apply a list of functions onto a list of (lists of) values"}
231
+ {"query_id": 15655, "query": "Preserving labels when using graph functions"}
232
+ {"query_id": 9406, "query": "How to ensure that Polygon[list] plots a simple polygon?"}
233
+ {"query_id": 11059, "query": "Combining lists with common elements efficiently"}
234
+ {"query_id": 39604, "query": "Interrupting FactorInteger automatically when it takes a very long time"}
235
+ {"query_id": 45040, "query": "Notification when evaluation completes"}
236
+ {"query_id": 26519, "query": "Making a ListVectorPlot3D from data in an external file"}
237
+ {"query_id": 48307, "query": "How to find the maximum values and the place of the max value in the list?"}
238
+ {"query_id": 6397, "query": "Is it possible to set a variable as a positive one in the whole notebook?"}
239
+ {"query_id": 13440, "query": "Wrapping EventHandler by Table"}
240
+ {"query_id": 8576, "query": "Managing Exclusions in Plot[]"}
241
+ {"query_id": 37894, "query": "Treat all variables as local in a module"}
242
+ {"query_id": 33051, "query": "How do I generate arbitrarily many integration bounds?"}
243
+ {"query_id": 33293, "query": "Why does AbsoluteOptions give the wrong answer for ListPlot?"}
244
+ {"query_id": 26995, "query": "message about string expected in pattern"}
245
+ {"query_id": 59043, "query": "Is there a reliable way to compute the Hurst Dimension of a time series"}
246
+ {"query_id": 51560, "query": "How to joint symbolic expressions together"}
247
+ {"query_id": 52414, "query": "Error changing Dataset using Part"}
248
+ {"query_id": 14534, "query": "How can I get information about properties of a style?"}
249
+ {"query_id": 11024, "query": "Combine DistributionChart and ListPlot"}
250
+ {"query_id": 37414, "query": "limit calculation step by step"}
251
+ {"query_id": 37656, "query": "How can I remove the singleton dimensions of an array?"}
252
+ {"query_id": 37416, "query": "Annoying errors in sections of plot"}
253
+ {"query_id": 47207, "query": "Prevent trigonometric simplification"}
254
+ {"query_id": 6164, "query": "Formula Formatting is Small and Chunky?"}
255
+ {"query_id": 11271, "query": "how to read in a file in the same directory?"}
256
+ {"query_id": 13210, "query": "No result from DSolve"}
257
+ {"query_id": 23014, "query": "Defining a function that completes the square given a quadratic polynomial expression"}
258
+ {"query_id": 26527, "query": "How to decompose a complex expression containing repeated subexpressions?"}
259
+ {"query_id": 28946, "query": "Fastest way to add a constant column into a array"}
260
+ {"query_id": 24581, "query": "Plotting heat equation in a Manipulate expression"}
261
+ {"query_id": 25673, "query": "How safe is the use of Block and Internal`InheritedBlock"}
262
+ {"query_id": 15634, "query": "Inputting abbreviated units"}
263
+ {"query_id": 21075, "query": "How do I read a CSV file and remove comments from it"}
264
+ {"query_id": 46595, "query": "Append subscript to variable name"}
265
+ {"query_id": 46350, "query": "Automatic method for NDSolve"}
266
+ {"query_id": 14543, "query": "Antialiasing of horizontal lines"}
267
+ {"query_id": 54607, "query": "Mathematica 10 Dataset doesn't format more than 4 columns?"}
268
+ {"query_id": 17811, "query": "How to import data from Blender or 3DS max file?"}
269
+ {"query_id": 1945, "query": "Using implicit differentiation to find a line that is tangent to a curve at a point"}
270
+ {"query_id": 8353, "query": "Why aren't these additions of integrals and summations equal?"}
271
+ {"query_id": 10391, "query": "Is Mathematica matrix multiplication with its inverse wrong?"}
272
+ {"query_id": 23221, "query": "Help bogged down at first query"}
273
+ {"query_id": 25885, "query": "Numerical solution of Schr\u00f6dinger-type equation in Mathematica"}
274
+ {"query_id": 24556, "query": "Open-source IntelliJIDEA plugin to support Mathematica development"}
275
+ {"query_id": 9440, "query": "How to get the list of defined values for an indexed variable?"}
276
+ {"query_id": 296, "query": "How to export large graphics?"}
277
+ {"query_id": 33039, "query": "Extract matrix from a system of linear equations"}
278
+ {"query_id": 21284, "query": "AxesLabel in Histogram3D unreadable"}
279
+ {"query_id": 13420, "query": "Composition of mappings not working as expected"}
280
+ {"query_id": 46581, "query": "Visualizing Dynamic Time Warping"}
281
+ {"query_id": 45010, "query": "Set Standard Plot Thickness"}
282
+ {"query_id": 11247, "query": "How to combine ArrayPlots?"}
283
+ {"query_id": 13426, "query": "Why doesn't Mathematica solve $x=\\cos\\,x$ properly?"}
284
+ {"query_id": 46336, "query": "How to get integer/rational and real eigenvectors to be the same?"}
285
+ {"query_id": 44154, "query": "Integration of any interpolation generates invalid comparison errors"}
286
+ {"query_id": 37860, "query": "Unable to solve the expontial equations"}
287
+ {"query_id": 35683, "query": "Finding the volume of a sphere using the Monte Carlo algorithm"}
288
+ {"query_id": 26983, "query": "How to apply a free-form input Function using InputField"}
289
+ {"query_id": 28925, "query": "Can I make the subsection CounterBox continue counting across section boundaries?"}
290
+ {"query_id": 23470, "query": "Conflict among Permutations and Graph utilities once Combinatorica is loaded"}
291
+ {"query_id": 51597, "query": "How to check the decimal accuracy of result?"}
292
+ {"query_id": 14523, "query": "Can we teach Mathematica about functional differentiation?"}
293
+ {"query_id": 15858, "query": "Bifurcation diagrams for multiple equation systems"}
294
+ {"query_id": 52207, "query": "Get names of all folders in a directory"}
295
+ {"query_id": 14525, "query": "Reading a specified line number from a text file"}
296
+ {"query_id": 55716, "query": "Can't get Append to append a record (association) to a dataset"}
297
+ {"query_id": 15021, "query": "Insert $+$, $-$, $\\times$, $/$, $($, $)$ into $123456789$ to make it equal to $100$"}
298
+ {"query_id": 15023, "query": "Multivariable Taylor expansion does not work as expected"}
299
+ {"query_id": 38388, "query": "How to get back name of the number from Max function?"}
300
+ {"query_id": 42403, "query": "How to do Inverse formulas/Rearrange formulas in Mathematica?"}
301
+ {"query_id": 21701, "query": "Find closed form expression for series expansion coefficients"}
302
+ {"query_id": 42889, "query": "save data in parallel table"}
303
+ {"query_id": 25061, "query": "LogLinearPlot analog for Plot3D?"}
304
+ {"query_id": 59646, "query": "How to pattern match an association?"}
305
+ {"query_id": 2821, "query": "Does Mathematica have advanced indexing?"}
306
+ {"query_id": 50831, "query": "RK4 Gravity Simulator"}
307
+ {"query_id": 30429, "query": "Complement on pre-sorted lists"}
308
+ {"query_id": 19867, "query": "Trying to plot a velocity profile in x-y plane"}
309
+ {"query_id": 32601, "query": "Simplify vector expression - is there something like \"Factor\" for vectors, dot products etc.?"}
310
+ {"query_id": 3912, "query": "Using several anonymous functions mixed together"}
311
+ {"query_id": 14185, "query": "Solve an equation in $\\mathbb{R}^+$"}
312
+ {"query_id": 14189, "query": "How do I Export through a standard system file save dialog activated by a Button?"}
313
+ {"query_id": 55292, "query": "A problem about function N"}
314
+ {"query_id": 44812, "query": "Convert epoch seconds to date"}
315
+ {"query_id": 55294, "query": "DeleteDuplicatesBy is not performing as I'd hoped. Am I missing something?"}
316
+ {"query_id": 13090, "query": "Getting imaginary data from known real data using Kramers-Kronig relations"}
317
+ {"query_id": 57470, "query": "Values of an algebraic curve"}
318
+ {"query_id": 55056, "query": "How can I name and manipulate several Input Fields?"}
319
+ {"query_id": 28103, "query": "Extracting function variables from a list"}
320
+ {"query_id": 30417, "query": "Partitioning a list of 2D points into sublists that fit into non-overlapping equal-sized squares"}
321
+ {"query_id": 37048, "query": "Not getting the range I want when plotting a function with Show"}
322
+ {"query_id": 31501, "query": "Conditional printed output"}
323
+ {"query_id": 18549, "query": "Strange ::usage behavior in v9"}
324
+ {"query_id": 39696, "query": "Create a new infix operator"}
325
+ {"query_id": 40201, "query": "How to write a variable in terms of the other"}
326
+ {"query_id": 41774, "query": "Drawing a shape on the mesh of a Plot3D"}
327
+ {"query_id": 8390, "query": "Plot not plotting entire range of function"}
328
+ {"query_id": 40204, "query": "Reflecting the Polya-Aeppli distribution"}
329
+ {"query_id": 42628, "query": "Question about a ParametricPlot with a shading grey family of lines and/or different sizes"}
330
+ {"query_id": 57242, "query": "Remove curly brackets _completely_ to map a function to the elements of a list"}
331
+ {"query_id": 9483, "query": "How to put terms in lexicographic order?"}
332
+ {"query_id": 25282, "query": "Preventing cell height adjustment when rotating 3D graphics"}
333
+ {"query_id": 26370, "query": "Exporting HTML code to file.html"}
334
+ {"query_id": 25285, "query": "Generating partitions of a set with a specified size of the parts"}
335
+ {"query_id": 28553, "query": "List elements and iterator name collision"}
336
+ {"query_id": 38126, "query": "Arrowed circular arc"}
337
+ {"query_id": 20841, "query": "Correspondence between eigenvectors and eigenvalues"}
338
+ {"query_id": 41521, "query": "Return only one numeric solution to equation"}
339
+ {"query_id": 41523, "query": "How to vary thickness of line on the plot?"}
340
+ {"query_id": 51711, "query": "Understanding Mathematica: How to write fast code?"}
341
+ {"query_id": 3943, "query": "Usage displays properly only after second call"}
342
+ {"query_id": 18526, "query": "Built-in unit strings recognized by Quantity?"}
343
+ {"query_id": 40422, "query": "Prevent Mathematica from \"romanizing\" a string of letters?"}
344
+ {"query_id": 41517, "query": "densityplot + world map overlay"}
345
+ {"query_id": 55086, "query": "Mathematica 10 doesn't support path containing Chinese characters"}
346
+ {"query_id": 25260, "query": "NDSolve with vector function"}
347
+ {"query_id": 59206, "query": "How to plot the result of this singular integral?"}
348
+ {"query_id": 26355, "query": "How to add something like a shadow to my resulting figure?"}
349
+ {"query_id": 48387, "query": "Convert Tube[BSplineCurve[...]] Graphics3D object to polygons"}
350
+ {"query_id": 48386, "query": "How to eliminate the margin between figure and frame in DensityPlot?"}
351
+ {"query_id": 49230, "query": "Exporting pictures in their correct size when using Grid"}
352
+ {"query_id": 9035, "query": "How Can I use Solve/Reduce Output"}
353
+ {"query_id": 13055, "query": "How to run a Mathematica program using command line on windows?"}
354
+ {"query_id": 37242, "query": "is there a way to speed up rule replace?"}
355
+ {"query_id": 13054, "query": "Estimate error on slope of linear regression given data with associated uncertainty"}
356
+ {"query_id": 16562, "query": "Is it possible to customize the Suggestions Bar?"}
357
+ {"query_id": 20823, "query": "Where to find a summary for Q functions?"}
358
+ {"query_id": 25031, "query": "How to draw some 2D curves in a 3D plot?"}
359
+ {"query_id": 1300, "query": "ListPlot with each point a different color and a legend bar"}
360
+ {"query_id": 1542, "query": "Exporting graphics to PDF - huge file"}
361
+ {"query_id": 25277, "query": "Visualize Plot of a function of 3 Variables using color and contours"}
362
+ {"query_id": 28541, "query": "Embedding text on an opaque plane in 3D"}
363
+ {"query_id": 28300, "query": "Using Dynamic to import the chronologically newest file in a directory"}
364
+ {"query_id": 37247, "query": "Convert separate digits of a number into an array"}
365
+ {"query_id": 16324, "query": "Is there a Mathematica equivalent to MATLAB's logspace?"}
366
+ {"query_id": 51732, "query": "How to use Fold with 3 variables"}
367
+ {"query_id": 2639, "query": "What does the construct f[x_] := f[x] = ... mean?"}
368
+ {"query_id": 3723, "query": "Filling a polygon with a pattern of insets"}
369
+ {"query_id": 29609, "query": "Where is my memory? -- LibraryLink never returns the memory"}
370
+ {"query_id": 9288, "query": "Sum or Product with Exclusions"}
371
+ {"query_id": 40640, "query": "Compiling Visual Studio C++ to Run on Computers without Mathematica"}
372
+ {"query_id": 39654, "query": "How to exclude numbers in a series and still plot the graph?"}
373
+ {"query_id": 24156, "query": "How can I place gui controls inside Grid?"}
374
+ {"query_id": 35294, "query": "Comparing large numbers"}
375
+ {"query_id": 1315, "query": "Customizing syntax highlighting for private cell styles"}
376
+ {"query_id": 5919, "query": "Finding the area, algebraic curve and jaggedness of an arbitrary shape"}
377
+ {"query_id": 17622, "query": "Sort date list in format DD/MM/YYYY"}
378
+ {"query_id": 47030, "query": "Filter sublists that contain a certain value"}
379
+ {"query_id": 50418, "query": "Select duplicate values from a list"}
380
+ {"query_id": 38792, "query": "Save an indexed function"}
381
+ {"query_id": 14122, "query": "DeleteCases messing with my mind"}
382
+ {"query_id": 47028, "query": "If statements with a Boolean"}
383
+ {"query_id": 3991, "query": "Saving high-quality graphics through commands"}
384
+ {"query_id": 24167, "query": "Select performance"}
385
+ {"query_id": 25257, "query": "How can I assign EdgeCost for the graph edges?"}
386
+ {"query_id": 1571, "query": "How to distribute proprietary Mathematica code"}
387
+ {"query_id": 41966, "query": "How to generate closed-form stiff matrix of triangular prism element by mathematica"}
388
+ {"query_id": 23074, "query": "Finding Maximum Root"}
389
+ {"query_id": 25255, "query": "How to crop graphics outside PlotRange with Show?"}
390
+ {"query_id": 2652, "query": "Labeling a bar chart, changing how rotated labels are centered"}
391
+ {"query_id": 2651, "query": "How to pass a symbol name to a function with any of the Hold attributes?"}
392
+ {"query_id": 30836, "query": "Encrypt the password used for SendMail"}
393
+ {"query_id": 17633, "query": "How to set a TraditionalForm output for a symbol"}
394
+ {"query_id": 3747, "query": "How to change the axes' origin and direction?"}
395
+ {"query_id": 20334, "query": "Numerical integration of a numeric data available as a nested list"}
396
+ {"query_id": 42366, "query": "How do I define a tensor from another tensor with summations?"}
397
+ {"query_id": 18258, "query": "Plotting Inverse Functions using ParametricPlot gives error message"}
398
+ {"query_id": 21421, "query": "Plot3D has a break in the center of the plot"}
399
+ {"query_id": 30381, "query": "NonLinearModelFit not generating a model without the use of \"BestFit\", not sure why"}
400
+ {"query_id": 45878, "query": "Creating If statements programmatically"}
401
+ {"query_id": 28056, "query": "Using Through to evaluate complex expressions"}
402
+ {"query_id": 4608, "query": "Why does the Front End group backslashes into pairs?"}
403
+ {"query_id": 3510, "query": "How to replace the style of the inline cell in a StyleSheet"}
404
+ {"query_id": 5930, "query": "Is it possible to change the colors of the highlighted code in the Mathematica frontend?"}
405
+ {"query_id": 3518, "query": "Using PlotLegends with Show messes up the graphics"}
406
+ {"query_id": 32569, "query": "Mapping function onto two lists, simultaneously"}
407
+ {"query_id": 18025, "query": "How do I remove the flat parts that are not part of the function in Plot3D?"}
408
+ {"query_id": 44533, "query": "How to avoid malicious code when opening & executing notebooks"}
409
+ {"query_id": 43204, "query": "Dot shading a.k.a. Stippling effect"}
410
+ {"query_id": 46950, "query": "Meaning of backtick in conjunction with units"}
411
+ {"query_id": 21672, "query": "Exporting large numbers to a text file"}
412
+ {"query_id": 43683, "query": "Accumulate 2D points that have the same first component"}
413
+ {"query_id": 43449, "query": "Extracting second value of each sublist"}
414
+ {"query_id": 20105, "query": "Efficiently determining if 3D points are within a surface composed of polygons"}
415
+ {"query_id": 57878, "query": "Disable Input Assistant Mathematica 10"}
416
+ {"query_id": 1584, "query": "How to convert between various ItemSize/ImageSize units?"}
417
+ {"query_id": 56785, "query": "Generate all strings of fixed length from an alphabet"}
418
+ {"query_id": 57632, "query": "Does Dataset round?"}
419
+ {"query_id": 4612, "query": "Mathematica slope fields"}
420
+ {"query_id": 33405, "query": "find the number of integral solutions a+b+c+d+e+f = 18"}
421
+ {"query_id": 46702, "query": "Simple subtraction question"}
422
+ {"query_id": 3780, "query": "How to determine the convex hull of some text?"}
423
+ {"query_id": 3541, "query": "Why does Assuming[x > 0, TrueQ[x > 0]] return False?"}
424
+ {"query_id": 17381, "query": "Distributing elements across a list of lists"}
425
+ {"query_id": 29129, "query": "Button evaluation inside DynamicModule"}
426
+ {"query_id": 46945, "query": "Plot two functions of two variables against each other"}
427
+ {"query_id": 2688, "query": "How to efficiently Append a result of an operation on each element of a list to itself"}
428
+ {"query_id": 11608, "query": "Why do Arrowheads interfere with ImagePadding?"}
429
+ {"query_id": 10990, "query": "How to join two Style[]d strings"}
430
+ {"query_id": 34727, "query": "how to plot 3d graph with its projection on the plane?"}
431
+ {"query_id": 938, "query": "How to make a drop-shadow for Graphics3D objects"}
432
+ {"query_id": 21655, "query": "Tick marks shrinking with ImageResolution"}
433
+ {"query_id": 42334, "query": "Restoring a Mathematica session without notebook interface"}
434
+ {"query_id": 21410, "query": "Construct file names using a number and a string prefix"}
435
+ {"query_id": 17154, "query": "How do I use RSolve to solve a system of recurrence relations?"}
436
+ {"query_id": 42330, "query": "Make output be to a certain number of places after the decimal point"}
437
+ {"query_id": 44751, "query": "Points on circle equally spaced"}
438
+ {"query_id": 44756, "query": "Intersection of surface with parallel planes"}
439
+ {"query_id": 21898, "query": "Mathematica: How to apply a function to a list of tuples"}
440
+ {"query_id": 3306, "query": "Extract real part of a complex expression better than Re does"}
441
+ {"query_id": 58502, "query": "DelaunayTriangulation in Mathematica V 7.01.0"}
442
+ {"query_id": 34710, "query": "map rational number"}
443
+ {"query_id": 2214, "query": "Point Renderings Slightly Off in Mathematica"}
444
+ {"query_id": 56565, "query": "Behaviour of Plot3D with large numbers"}
445
+ {"query_id": 702, "query": "Undocumented form for FilledCurve[]"}
446
+ {"query_id": 28283, "query": "Unwrapping a list when invoking a function"}
447
+ {"query_id": 15184, "query": "Precise Timing for nested functions, how to?"}
448
+ {"query_id": 22956, "query": "DeleteCases and Inequalities"}
449
+ {"query_id": 44744, "query": "Chopping pure Imaginary numbers"}
450
+ {"query_id": 46920, "query": "Import .dat table but losing decimals"}
451
+ {"query_id": 40146, "query": "Filling only part of a plot"}
452
+ {"query_id": 18210, "query": "Interpolating 2D data with missing values"}
453
+ {"query_id": 5740, "query": "Using MapAt to map at a particular depth (levelspec)"}
454
+ {"query_id": 44507, "query": "About making a fraction \"taller\""}
455
+ {"query_id": 2230, "query": "Mathematica Debuggability"}
456
+ {"query_id": 3561, "query": "How to add a vertical line to a plot"}
457
+ {"query_id": 46927, "query": "How to put x-Label below the x-Axis?"}
458
+ {"query_id": 58992, "query": "How do you turn off the Dashed graphics directive?"}
459
+ {"query_id": 43415, "query": "Set Image Size and Page Orientation When Exporting to PDF"}
460
+ {"query_id": 44987, "query": "Needs, Get and <<"}
461
+ {"query_id": 1137, "query": "How to \"Copy as Unicode\" from a Notebook?"}
462
+ {"query_id": 49190, "query": "$IterationLimit and parallel computing"}
463
+ {"query_id": 28258, "query": "Are FEM methods integrated in NDSolve yet?"}
464
+ {"query_id": 28014, "query": "Importing specific columns of a .txt file"}
465
+ {"query_id": 4406, "query": "How can I connect to a database using the 32 Bit ODBC on a Windows 7 (64 Bit) machine?"}
466
+ {"query_id": 3319, "query": "Handling failed FindRoot calls"}
467
+ {"query_id": 21870, "query": "Why are there two separate MathKernel processes running when I start up Mathematica 9?"}
468
+ {"query_id": 17370, "query": "How do I expand a sum (again)?"}
469
+ {"query_id": 28028, "query": "How can I generate a generalized product to two lists in a special way?"}
470
+ {"query_id": 18460, "query": "Import Excel sheet into 3D array?"}
471
+ {"query_id": 57430, "query": "How to prevent function from substituting the part of the parameter name if it has a subscript?"}
472
+ {"query_id": 59613, "query": "Binning of listplot"}
473
+ {"query_id": 29358, "query": "Using Select on list of vectors"}
474
+ {"query_id": 27178, "query": "How to simulate with a user specified bivariate continuous probability distribution"}
475
+ {"query_id": 57434, "query": "Plotting Semi-hollow spheres"}
476
+ {"query_id": 4413, "query": "How can I influence the spaces between labels on a BarChart"}
477
+ {"query_id": 10501, "query": "Plotting discontinuous functions without spurious vertical segments"}
478
+ {"query_id": 29590, "query": "How can I convert a list to an expression?"}
479
+ {"query_id": 7926, "query": "Randomly selecting elements without repetition"}
480
+ {"query_id": 16252, "query": "Plotting complex numbers"}
481
+ {"query_id": 43874, "query": "Hide MathKernel Tab on Taskbar when using C++"}
482
+ {"query_id": 39137, "query": "Finding a 3d curve from torsion and curvature with NDSolve"}
483
+ {"query_id": 7941, "query": "How to nest my own \"times\" function to get powers"}
484
+ {"query_id": 17342, "query": "How do I get the equivalent of the $\\LaTeX$ \\tag{} in Mathematica?"}
485
+ {"query_id": 43638, "query": "$H_{\\infty}$ optimization of transfer function matrix"}
486
+ {"query_id": 41215, "query": "Exporting Animated gif"}
487
+ {"query_id": 10956, "query": "Can the toolbar be moved to the code window?"}
488
+ {"query_id": 32983, "query": "How do I remove \"->\" in output so that I can ListPlot it?"}
489
+ {"query_id": 16259, "query": "Importing .zip file"}
490
+ {"query_id": 16258, "query": "Dynamic Chart Elements in Bar Chart"}
491
+ {"query_id": 39361, "query": "How to generate a random snowflake"}
492
+ {"query_id": 14083, "query": "How to Plot an Infinite Series"}
493
+ {"query_id": 17357, "query": "Do you really want to quit the kernel? Yes!"}
494
+ {"query_id": 22705, "query": "Simplify expressions with Log"}
495
+ {"query_id": 22948, "query": "Why is ReplaceAll behaving like this?"}
496
+ {"query_id": 15176, "query": "Problem to connect remote Mathematica Kernel using J/Link"}
497
+ {"query_id": 6862, "query": "Plotting complex Sine"}
498
+ {"query_id": 1172, "query": "Discrete Convolution"}
499
+ {"query_id": 44955, "query": "How to find the local maximum of a list"}
500
+ {"query_id": 20766, "query": "Enforcing correct variable bindings and avoiding renamings for conflicting variables in nested scoping constructs"}
501
+ {"query_id": 42778, "query": "Plot periodic function from Dirac delta function"}
502
+ {"query_id": 44709, "query": "adding vectors of unequal length"}
503
+ {"query_id": 745, "query": "Fontsize is too small"}
504
+ {"query_id": 34916, "query": "System Modeler can't find g++ in Mac OS X Mavericks"}
505
+ {"query_id": 4679, "query": "Is there a simple way to plot complex numbers satisfying a given criteria"}
506
+ {"query_id": 31402, "query": "How to implement this simple product rule in mathematica"}
507
+ {"query_id": 47656, "query": "How to take single item out of List?"}
508
+ {"query_id": 45475, "query": "How do I get all possible solutions in an underdetermined system?"}
509
+ {"query_id": 5782, "query": "Implementing continuous phase/Arg function"}
510
+ {"query_id": 11460, "query": "Download binary file bypassing Import/Export?"}
511
+ {"query_id": 45476, "query": "Is it possible to obtain vector differentiation results in terms of vectors rather than components?"}
512
+ {"query_id": 18090, "query": "sliding a tangent line along a curve"}
513
+ {"query_id": 18091, "query": "Adding three integer sparse matrices is very slow. Adding only two is fast"}
514
+ {"query_id": 27801, "query": "Ignoring Indeterminate Results"}
515
+ {"query_id": 13406, "query": "Annoyance: Plot Markers disappear when ListPlot options are set in SetOptions instead of in ListPlot"}
516
+ {"query_id": 32168, "query": "Method -> {\"AxesInFront\" -> False} for Graphics3D"}
517
+ {"query_id": 55600, "query": "How to solve an integral equation by iteration method?"}
518
+ {"query_id": 54993, "query": "intersection between two curves in Mathematica"}
519
+ {"query_id": 5790, "query": "How to make Jacobian automatically in Mathematica"}
520
+ {"query_id": 46315, "query": "Bizarre behavior of With, Compile and Break"}
521
+ {"query_id": 23454, "query": "I can't use PatternSequence with Cases"}
522
+ {"query_id": 31063, "query": "Writing to file as it goes"}
523
+ {"query_id": 761, "query": "How to enter matrices in block matrix format?"}
524
+ {"query_id": 23692, "query": "How to import sound file from computer?"}
525
+ {"query_id": 47881, "query": "Matrix exponential via Cayley-Hamilton Theorem"}
526
+ {"query_id": 36995, "query": "Code to give center of circle given three points in 2D?"}
527
+ {"query_id": 38931, "query": "Can Mathematica identify formulae or sequences of numbers?"}
528
+ {"query_id": 13652, "query": "Can an Interpolation function be 'saved'?"}
529
+ {"query_id": 13657, "query": "Plot showing discontinuity where it shouldn't"}
530
+ {"query_id": 37602, "query": "Best method to do a List Plot of two series with the same x-Axes"}
531
+ {"query_id": 14987, "query": "Machine learning. SVM algorithm"}
532
+ {"query_id": 44126, "query": "Make ConditionalExpression go away"}
533
+ {"query_id": 26939, "query": "How can I control the controlplacement of Manipulate?"}
534
+ {"query_id": 19165, "query": "How to generate a 3-d simple cubic lattice of length 4 in each dimension?"}
535
+ {"query_id": 2051, "query": "Kernel Management"}
536
+ {"query_id": 31299, "query": "Why is a function I defined in a package not visible when I load the package?"}
537
+ {"query_id": 34565, "query": "Pattern matching list elements in pure functions"}
538
+ {"query_id": 533, "query": "Placement of Condition /; expressions"}
539
+ {"query_id": 2047, "query": "Automated testing for compatibility with older Mathematica versions"}
540
+ {"query_id": 34321, "query": "Where are the functional programming constructs: `every` and `some`?"}
541
+ {"query_id": 5314, "query": "Solving complex equations"}
542
+ {"query_id": 45693, "query": "relative directory paths within a mathematica package/what directory does a mathematica package see as local?"}
543
+ {"query_id": 5799, "query": "Delete duplicates in a list, depending on the sequence of numbers"}
544
+ {"query_id": 45450, "query": "Why does evaluating an integral within a Plot expression take so long?"}
545
+ {"query_id": 52358, "query": "What is wrong with combining two programs with event handlers?"}
546
+ {"query_id": 8829, "query": "What is the difference between Set and SetDelayed?"}
547
+ {"query_id": 22349, "query": "Mathematica for teaching orthographic projection"}
548
+ {"query_id": 45447, "query": "How can I compute the real part of $zeta^2$ numerically?"}
549
+ {"query_id": 4001, "query": "FindFit returns Infinity::indet error when data contains {0,0}"}
550
+ {"query_id": 4002, "query": "Minimizing a function of many coordinates"}
551
+ {"query_id": 4244, "query": "Visualizing a Complex Vector Field near Poles"}
552
+ {"query_id": 5575, "query": "How to find all the local minima/maxima in a range"}
553
+ {"query_id": 8841, "query": "How can I plot the direction field for a differential equation?"}
554
+ {"query_id": 19174, "query": "How to Initiate a queued evaluation from a Dynamic GUI without using a Button"}
555
+ {"query_id": 25610, "query": "Question regarding function definition overloading / argument passing test"}
556
+ {"query_id": 3152, "query": "Funny behaviour when plotting a polynomial of high degree and large coefficients"}
557
+ {"query_id": 3394, "query": "Arguments to If[] are not evaluated"}
558
+ {"query_id": 18081, "query": "How to interpret the FullForm of a SparseArray?"}
559
+ {"query_id": 54781, "query": "Where is the \"Function Navigator\" and \"Virtual Book\" gone?"}
560
+ {"query_id": 34554, "query": "NIntegrate receiving a function with NumericQ which returns a list"}
561
+ {"query_id": 11698, "query": "Customizing FrameTicks in DistributionChart"}
562
+ {"query_id": 9926, "query": "How to find palindromic numbers (Project Euler #4)?"}
563
+ {"query_id": 41077, "query": "How do I extend (prepend or append to) an existing TagSetDelayed rule?"}
564
+ {"query_id": 5580, "query": "Dr. StrangeNumbers or: How I Learned to Stop Worrying and Love Floating Point Arithmetic"}
565
+ {"query_id": 26917, "query": "Why are my plots displaying behind the axes?"}
566
+ {"query_id": 9942, "query": "How to change the style definitions for Default.nb?"}
567
+ {"query_id": 48941, "query": "How do I perform the riffle function backward?"}
568
+ {"query_id": 2076, "query": "How do I plot coordinates (latitude and longitude pairs) on a geographic map?"}
569
+ {"query_id": 33690, "query": "Plotting a defined function gives different results from plotting the function directly"}
570
+ {"query_id": 2073, "query": "Remove tick labels, but retain tick marks in RegionPlot (and related functions)"}
571
+ {"query_id": 552, "query": "How do I replace a variable in a polynomial?"}
572
+ {"query_id": 51042, "query": "Find the values of 3 variables that best fit 6 equations"}
573
+ {"query_id": 313, "query": "How to collect result continuously (interruptible calculation) when running parallel calculations?"}
574
+ {"query_id": 23880, "query": "Teaching Plan for High School Students"}
575
+ {"query_id": 51049, "query": "ListDensityPlot and ListPlot3D with big data"}
576
+ {"query_id": 58918, "query": "Mathematica 10 loads too long time"}
577
+ {"query_id": 7756, "query": "Using pure functions in Table"}
578
+ {"query_id": 45424, "query": "Why does the filling on my ListPlot not reach the axis for some values?"}
579
+ {"query_id": 23659, "query": "How to make traditional output for derivatives"}
580
+ {"query_id": 7772, "query": "More on combining 2d and 3d plots"}
581
+ {"query_id": 45662, "query": "Always the same problem with Conjugate"}
582
+ {"query_id": 7531, "query": "How can I label a ListDensityPlot with a color bar?"}
583
+ {"query_id": 8865, "query": "Pass function or formula as function parameter"}
584
+ {"query_id": 43485, "query": "Plot parametric solutions using Manipulate"}
585
+ {"query_id": 19392, "query": "Integration over region given by inequality"}
586
+ {"query_id": 52381, "query": "Integral over geometric region"}
587
+ {"query_id": 23656, "query": "Contour3Dplot more graphs in one picture"}
588
+ {"query_id": 24988, "query": "Can one identify the design patterns of Mathematica?"}
589
+ {"query_id": 21238, "query": "How to force Pane to always scroll to end of content?"}
590
+ {"query_id": 56984, "query": "File-name completion for custom functions"}
591
+ {"query_id": 34535, "query": "ContourPlot of implicit function doesn't work when I square the equation"}
592
+ {"query_id": 4017, "query": "Computing and plotting a spectrogram in Mathematica"}
593
+ {"query_id": 32119, "query": "How to join held Lists?"}
594
+ {"query_id": 4019, "query": "Map and Apply a function on a nested list"}
595
+ {"query_id": 8619, "query": "How is pattern specificity decided?"}
596
+ {"query_id": 20355, "query": "Export plot data in Mathematica"}
597
+ {"query_id": 21444, "query": "Can't see updating performed by NMinimize[...,StepMonitor->(...)] outside of Button in which it's called"}
598
+ {"query_id": 6210, "query": "Memory leak in FE?"}
599
+ {"query_id": 19127, "query": "Can you fill in a closed curve?"}
600
+ {"query_id": 46986, "query": "How to change $n$ variables with $n$ Buttons automatically"}
601
+ {"query_id": 32346, "query": "How to plot crossing lines shown by one function"}
602
+ {"query_id": 55663, "query": "What is wrong with ContourPlot"}
603
+ {"query_id": 334, "query": "How do I evaluate only one step of an expression?"}
604
+ {"query_id": 7779, "query": "How can I easily eliminate the dependency of a stylesheet on a non-built-in stylesheet?"}
605
+ {"query_id": 9719, "query": "Replace values which obey certain criteria"}
606
+ {"query_id": 11403, "query": "Can the banner in the Home Edition be removed?"}
607
+ {"query_id": 41291, "query": "Plot and Parametric plot give different results"}
608
+ {"query_id": 34526, "query": "DialogInput inside ButtonBar freezes Mathematica"}
609
+ {"query_id": 17196, "query": "Order of integration changes output of indefinite multiple integral in Mathematica 7"}
610
+ {"query_id": 5375, "query": "Extract current viewing parameters from a 3D view?"}
611
+ {"query_id": 35603, "query": "Executing several input cell simultaneously with parallelization"}
612
+ {"query_id": 31244, "query": "How to divide all rows of a matrix by their row sums"}
613
+ {"query_id": 6472, "query": "Intermediate display similar to PrintTemporary"}
614
+ {"query_id": 29708, "query": "Use of $Assumptions"}
615
+ {"query_id": 39511, "query": "One fill color for a curve when it is above the x-axis and another when it is below"}
616
+ {"query_id": 6236, "query": "ShowLegend values"}
617
+ {"query_id": 25587, "query": "How do I automatically \"trim\" the bounding box for a Graphics3D output?"}
618
+ {"query_id": 28611, "query": "Phase portraits and StreamPlot"}
619
+ {"query_id": 29700, "query": "Why is my funtion is wrong?"}
620
+ {"query_id": 40748, "query": "Order of operations, precedence in Mathematica"}
621
+ {"query_id": 353, "query": "Functions with Options"}
622
+ {"query_id": 25340, "query": "Distribution above pointplot"}
623
+ {"query_id": 51880, "query": "How to add PlotLegends in a Show function?"}
624
+ {"query_id": 25343, "query": "How to tell Mathematica to make assumptions?"}
625
+ {"query_id": 51885, "query": "Saving many plots in files"}
626
+ {"query_id": 49311, "query": "Create a matrix of matrices using Band and ArrayFlatten"}
627
+ {"query_id": 46284, "query": "How do I plus these values in a list"}
628
+ {"query_id": 8646, "query": "How to insert guide-lines in graphics without specifying range?"}
629
+ {"query_id": 19902, "query": "Copying one symbol into another"}
630
+ {"query_id": 39980, "query": "Evaluating a String that is a Variable"}
631
+ {"query_id": 11192, "query": "How do I efficiently navigate the command line interface to Mathematica?"}
632
+ {"query_id": 8661, "query": "How can I load packages automatically after reopening Mathematica"}
633
+ {"query_id": 11195, "query": "Is my expression too complicated for FullSimplify or am I doing something wrong?"}
634
+ {"query_id": 15311, "query": "Square both sides of an equation?"}
635
+ {"query_id": 11196, "query": "Determine page count programmatically"}
636
+ {"query_id": 34291, "query": "Get pattern from rising numbers"}
637
+ {"query_id": 16404, "query": "How to prepare data for ListVectorPlot[]?"}
638
+ {"query_id": 17736, "query": "How can I get Mathematica to produce better Fortran code?"}
639
+ {"query_id": 48696, "query": "How would I take a variable from a string and reassign its value?"}
640
+ {"query_id": 45181, "query": "Index of iteration inside NestList"}
641
+ {"query_id": 48690, "query": "How do I fit NDSolve result to experimental data?"}
642
+ {"query_id": 48208, "query": "Why evaluation doesn't fail if arguments are invalid?"}
643
+ {"query_id": 37792, "query": "How to make use of an interpolating function outside of Mathematica?"}
644
+ {"query_id": 6497, "query": "How can I implement object oriented programming in Mathematica?"}
645
+ {"query_id": 39731, "query": "How to use relative paths in a notebook?"}
646
+ {"query_id": 9523, "query": "How to provide your own example data for a custom package?"}
647
+ {"query_id": 25325, "query": "How to estimate system recource usage of a SparseArray?"}
648
+ {"query_id": 25324, "query": "List of Tribonacci Polynomials with Mathematica?"}
649
+ {"query_id": 27748, "query": "Elegant way of obtaining the envelope of oscillating function"}
650
+ {"query_id": 59140, "query": "Solve equations within range and plot"}
651
+ {"query_id": 41813, "query": "Remove list elements that contain NaN Symbol"}
652
+ {"query_id": 35139, "query": "Monitoring progress of long calculations"}
653
+ {"query_id": 25562, "query": "Solar System Orbital Parameters"}
654
+ {"query_id": 14435, "query": "How can I focus cursor at specific position?"}
655
+ {"query_id": 37557, "query": "Is Mathematica an Implementation of the Wolfram Language?"}
656
+ {"query_id": 47352, "query": "Voronoi diagram for line segments in Mathematica"}
657
+ {"query_id": 48681, "query": "Works in mathematica but not as cdf preview or web embedded cdf"}
658
+ {"query_id": 33, "query": "How to run mathlink external commands in parallel?"}
659
+ {"query_id": 4084, "query": "Finding a \"not-shortest\" path between two vertices"}
660
+ {"query_id": 9772, "query": "Determine whether some expression contains a given symbol"}
661
+ {"query_id": 10086, "query": "Nested definition: How can I define a function with a passed-in expression?"}
662
+ {"query_id": 23398, "query": "How to implement a set method?"}
663
+ {"query_id": 26425, "query": "How do I generate a table of data points from a function and add random noise?"}
664
+ {"query_id": 4081, "query": "Using the Graphics command, how do I limit the output to a specified region, say a disk?"}
665
+ {"query_id": 145, "query": "How to find out which method Mathematica selected?"}
666
+ {"query_id": 48672, "query": "How to use results of Dsolve and get derivative of that?"}
667
+ {"query_id": 8438, "query": "Minimal effort method for integrating C++ functions into Mathematica"}
668
+ {"query_id": 8695, "query": "Is there an easy way to put time ticks on a parametric plot?"}
669
+ {"query_id": 9540, "query": "Problem with Financial Data"}
670
+ {"query_id": 45398, "query": "How to read long numbers?"}
671
+ {"query_id": 8215, "query": "Prepend Information to Warning Messages"}
672
+ {"query_id": 7366, "query": "Evaluate continued fraction"}
673
+ {"query_id": 9544, "query": "Integro-differential equation"}
674
+ {"query_id": 23125, "query": "Getting poles of a Gamma functions"}
675
+ {"query_id": 25549, "query": "Does resizing plots produce new data?"}
676
+ {"query_id": 26879, "query": "How to get all possible Rules and Elements of Functions like ExportString"}
677
+ {"query_id": 51440, "query": "How to calculate this derivative?"}
678
+ {"query_id": 33176, "query": "Plotting a piecewise parametric curve"}
679
+ {"query_id": 22032, "query": "Is there a convenient way to localize all variables in a new notebook?"}
680
+ {"query_id": 38622, "query": "Using the actual subscript as a variable within thecontext of definitions using the Notation package and Symbolize"}
681
+ {"query_id": 6043, "query": "Is there a way to make the tick marks larger?"}
682
+ {"query_id": 28829, "query": "How can I make ArrayPlot use one pixel per plot point?"}
683
+ {"query_id": 14661, "query": "Why isn't the matrix product computed?"}
684
+ {"query_id": 9558, "query": "How to express ticks in scientific form?"}
685
+ {"query_id": 25798, "query": "Using anonymous functions instead of module or block. Bad idea?"}
686
+ {"query_id": 26644, "query": "valuation to a function using a list"}
687
+ {"query_id": 52308, "query": "Customizing the distance of plot frame tick labels to frame"}
688
+ {"query_id": 15516, "query": "How to get an adaptive frame which fits auto-wrapped text?"}
689
+ {"query_id": 22019, "query": "Changing default range for x- and y-axis in ListPlot3D"}
690
+ {"query_id": 9322, "query": "Omit part of a 2D plot"}
691
+ {"query_id": 20079, "query": "Controlling Bar Color in BarChart precisely"}
692
+ {"query_id": 6055, "query": "How to get rid of warnings when using Solve on an equation with inexact coefficients?"}
693
+ {"query_id": 44289, "query": "Writing equations from Mathematica in Matlab"}
694
+ {"query_id": 27700, "query": "Looking for an elegant way to construct this tensor-product-ish list"}
695
+ {"query_id": 26857, "query": "Is there a way to add arrows along a parametric curve inside a manipulate function (Mathematica)?"}
696
+ {"query_id": 40919, "query": "Coloring the points in a ListPlot with the value of another function"}
697
+ {"query_id": 20074, "query": "Why does the syntax highlighter color a local symbol red inside DynamicModule?"}
698
+ {"query_id": 45371, "query": "Import LaTeX from Wikipedia to Mathematica"}
699
+ {"query_id": 21161, "query": "Plotting an array of data onto a sphere"}
700
+ {"query_id": 37755, "query": "How to Clear variables represented as a list of strings?"}
701
+ {"query_id": 38604, "query": "Define an operator without Built-in Meanings containing a Power function"}
702
+ {"query_id": 38846, "query": "Mathematica how to plot objects with labels in 3D plot"}
703
+ {"query_id": 1835, "query": "Using a PatternTest versus a Condition for pattern matching"}
704
+ {"query_id": 46459, "query": "Little triangles appearing in a Mathematica region plot with \"opacity\" saved in a PDF file"}
705
+ {"query_id": 42097, "query": "Defining Piecewise Functions"}
706
+ {"query_id": 25775, "query": "Can I use GoogleMap or other GPS data in creation of the Graphs?"}
707
+ {"query_id": 32293, "query": "Find eigen energies of time-independent Schr\u00f6dinger equation"}
708
+ {"query_id": 28805, "query": "How to make a list of the roots of a polynomial equation without the ``x ==\" s in each entry?"}
709
+ {"query_id": 1602, "query": "Resource management in Mathematica"}
710
+ {"query_id": 14405, "query": "Determining the local extrema of discrete data"}
711
+ {"query_id": 14645, "query": "Prevent Part[] from trying to extract parts of symbolic expressions"}
712
+ {"query_id": 15734, "query": "Streaming Data into Mathematica from a serial port"}
713
+ {"query_id": 42763, "query": "Why isn't my Stream code plotting multiple solution curves?"}
714
+ {"query_id": 15381, "query": "Removing an ordered pair from a list of ordered pairs if the second element in the list is Less than a Value"}
715
+ {"query_id": 17324, "query": "How to search for initialization cells?"}
716
+ {"query_id": 18655, "query": "How can I transpose x and y axis on a Plot?"}
717
+ {"query_id": 38265, "query": "How to exit from the innermost enclosing pure function?"}
718
+ {"query_id": 16233, "query": "How to create functions of arbitrary number of variables?"}
719
+ {"query_id": 22917, "query": "Unexpected behavior of rule matching a pattern"}
720
+ {"query_id": 43619, "query": "The introduction for Context in Wagner's book is out of date?"}
721
+ {"query_id": 197, "query": "How can I test properties of a symbol from the string name without the symbol completely evaluating"}
722
+ {"query_id": 10934, "query": "Plotting Complex Roots of Unity"}
723
+ {"query_id": 25185, "query": "Add a sub-matrix of zeros in big matrix"}
724
+ {"query_id": 29545, "query": "How can I suppress rotation of 3D graphics?"}
725
+ {"query_id": 57588, "query": "How can I plot weather data?"}
726
+ {"query_id": 18419, "query": "How can I improve Mathematica's resolution on a macbook retina display?"}
727
+ {"query_id": 32727, "query": "Can TreeForm be displayed \"sideways\"?"}
728
+ {"query_id": 30302, "query": "Create a new window from CDF, such that it contains a Manipulate. Force this Manipulate work."}
729
+ {"query_id": 96, "query": "What is the distinction between DownValues, UpValues, SubValues, and OwnValues?"}
730
+ {"query_id": 31636, "query": "Using a variable in Get"}
731
+ {"query_id": 50713, "query": "Hide your controls inside Manipulate"}
732
+ {"query_id": 14063, "query": "What is the correct way to conditionally add elements to lists?"}
733
+ {"query_id": 15153, "query": "Simplify function notation"}
734
+ {"query_id": 38012, "query": "Exporting SmoothHistogram plot data"}
735
+ {"query_id": 38498, "query": "Reduce of a table"}
736
+ {"query_id": 6081, "query": "How to create a heatmap from list of coordinates?"}
737
+ {"query_id": 42512, "query": "N[number, 100] does not give 100 decimal places"}
738
+ {"query_id": 7174, "query": "(Non-Convex) Polygon Union and Intersection Functions"}
739
+ {"query_id": 7173, "query": "SetOptions for every new notebook"}
740
+ {"query_id": 26282, "query": "Combined NonlinearModelFit"}
741
+ {"query_id": 2712, "query": "Filling global arrays in parallel calculations"}
742
+ {"query_id": 39106, "query": "Define new 3D graphics primitives in Mathematica 9"}
743
+ {"query_id": 32715, "query": "Function to subdivide interval into n evenly-spaced points"}
744
+ {"query_id": 2715, "query": "Generating graphs interactively (GUI)"}
745
+ {"query_id": 38242, "query": "How to solve initial value problem using Runge-Kutta method?"}
746
+ {"query_id": 40320, "query": "How to get the Mathematica output in Python?"}
747
+ {"query_id": 58690, "query": "How to build a game board"}
748
+ {"query_id": 57366, "query": "Test a wooden board's vibration mode"}
749
+ {"query_id": 2729, "query": "Ordering problem"}
750
+ {"query_id": 50738, "query": "Grabbing columns from a matrix"}
751
+ {"query_id": 18643, "query": "Packages problems on version 9 under OS X"}
752
+ {"query_id": 14282, "query": "Width of two plots"}
753
+ {"query_id": 30508, "query": "Blend code for built-in ColorData schemes"}
754
+ {"query_id": 13197, "query": "Custom Magnification Setting"}
755
+ {"query_id": 58228, "query": "How to do a region plot with many functions"}
756
+ {"query_id": 58229, "query": "Transformation of Derivatives under change of coordinates"}
757
+ {"query_id": 1400, "query": "Removing unwanted appearance of underlying mesh"}
758
+ {"query_id": 58465, "query": "How to display movie without controls"}
759
+ {"query_id": 20718, "query": "Keep function range as a variable"}
760
+ {"query_id": 32938, "query": "Obtain the coordinates of a point by clicking on it"}
761
+ {"query_id": 18647, "query": "How to check if an expression is a real-valued number"}
762
+ {"query_id": 18889, "query": "How to change brackets in TraditionalForm output"}
763
+ {"query_id": 48030, "query": "Question about plotting one function with different colors"}
764
+ {"query_id": 50507, "query": "plot data with small differences"}
765
+ {"query_id": 31829, "query": "Exp of big negative numbers"}
766
+ {"query_id": 41872, "query": "Coloring selected elements of a list created with Table"}
767
+ {"query_id": 48026, "query": "How to view code of CDF demonstration?"}
768
+ {"query_id": 56296, "query": "How to modify a Dataset?"}
769
+ {"query_id": 58475, "query": "Adding Text to a ListLogLinearPlot"}
770
+ {"query_id": 8295, "query": "Local variables in Module leak into the Global context"}
771
+ {"query_id": 42964, "query": "Contracting with Levi-Civita (totally antisymmetric) tensor"}
772
+ {"query_id": 43813, "query": "Is there any way to define a new binary operator?"}
773
+ {"query_id": 24291, "query": "Import large amount of data with time stamps"}
774
+ {"query_id": 2988, "query": "Can I make a plot with gradient filling?"}
775
+ {"query_id": 19705, "query": "DensityPlot on spherical surface?"}
776
+ {"query_id": 47175, "query": "SmoothHistogram with sharp boundary"}
777
+ {"query_id": 30984, "query": "How can I manipulate a circular part of an image?"}
778
+ {"query_id": 15351, "query": "Is there an equivalent of MATLAB's Workspace window in Mathematica?"}
779
+ {"query_id": 42951, "query": "3D Point in Epilog of Plot3D"}
780
+ {"query_id": 50519, "query": "Why PlotRange doesn't work for this set of values?"}
781
+ {"query_id": 42717, "query": "Explicit multiplication * sign in Mathematica"}
782
+ {"query_id": 42712, "query": "Extract coordinates from a polygon"}
783
+ {"query_id": 25394, "query": "Anti-aliasing won't work when there is PlotStyle command"}
784
+ {"query_id": 2752, "query": "Listing subgraphs of G isomorphic to SubG"}
785
+ {"query_id": 13179, "query": "Plot with Legends and Markers"}
786
+ {"query_id": 47161, "query": "In a list having triplet elements, how can I change the third element of a triplet when it has a given value?"}
787
+ {"query_id": 24036, "query": "Put local variables for Block in a variable"}
788
+ {"query_id": 40763, "query": "Gram Schmidt Process for functions"}
789
+ {"query_id": 1679, "query": "Dimensions of the results of Text[] within Graphics[]"}
790
+ {"query_id": 46064, "query": "Vector-calculus"}
791
+ {"query_id": 47154, "query": "How to put the values/points in a loop into a plot?"}
792
+ {"query_id": 2769, "query": "NDSolve Problem"}
793
+ {"query_id": 3871, "query": "Plotting contours of a function for different values of a parameter"}
794
+ {"query_id": 9171, "query": "Controlling the 2D $x\u2013y$ aspect ratio of a 3D plot"}
795
+ {"query_id": 59113, "query": "Graph embedding and edge weights"}
796
+ {"query_id": 59596, "query": "Removing the unit \"pm\" from atomic positions"}
797
+ {"query_id": 34073, "query": "How to calculate contour integrals with Mathematica?"}
798
+ {"query_id": 2537, "query": "Plotting Partial Sums of Fourier Series"}
799
+ {"query_id": 1446, "query": "Syntax highlighting for your own functions"}
800
+ {"query_id": 25134, "query": "Making large tables easy to read with frozen headings and scrollbars"}
801
+ {"query_id": 37346, "query": "How can I get Manipulator control elements to appear on one line?"}
802
+ {"query_id": 46053, "query": "Sectional averages of a list"}
803
+ {"query_id": 16429, "query": "How to partition a list and leave in the last sublist which is of different length?"}
804
+ {"query_id": 50548, "query": "Put a rounded parentheses in a label"}
cqadupstack-physics.jsonl ADDED
@@ -0,0 +1,1039 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 111236, "query": "About Hilbert and Physics"}
2
+ {"query_id": 21301, "query": "What longest time ever was achieved at holding light in a closed volume?"}
3
+ {"query_id": 62099, "query": "Functions of Time"}
4
+ {"query_id": 134356, "query": "Special Relativity, 2nd Postulate -- Why?"}
5
+ {"query_id": 102760, "query": "Man on a rope task"}
6
+ {"query_id": 68639, "query": "Why are eigenfunctions which correspond to discrete/continuous eigenvalue spectra guaranteed to be normalizable/non-normalizable?"}
7
+ {"query_id": 116921, "query": "Can there be Electron and/or Proton Stars?"}
8
+ {"query_id": 69726, "query": "Does trade affect Earth's rotation?"}
9
+ {"query_id": 120191, "query": "How much wind does it take to tip a sign over?"}
10
+ {"query_id": 1217, "query": "What's the difference between inclusive and exclusive decays?"}
11
+ {"query_id": 102517, "query": "Are continuous mathematical models of discrete physical phenomena messy because of a disconnect between \u201ccontinuous\u201d and \u201cdiscontinuous\u201d?"}
12
+ {"query_id": 28174, "query": "Are gravitomagnetic monopoles hypothesized?"}
13
+ {"query_id": 56657, "query": "How is the equation of motion on an ellipse derived?"}
14
+ {"query_id": 110395, "query": "upwind vehicle exceeding the wind speed"}
15
+ {"query_id": 113660, "query": "Infinities in Newtons law of gravity (for point particles)"}
16
+ {"query_id": 89335, "query": "Self-contained book about complex systems and nonlinear dynamics"}
17
+ {"query_id": 10895, "query": "What is the energy conversion efficiency of a computation device like a modern CPU?"}
18
+ {"query_id": 92739, "query": "How does the sum of the series \u201c1 + 2 + 3 + 4 + 5 + 6\u2026\u201d to infinity = \u201c-1/12\u201d?"}
19
+ {"query_id": 134127, "query": "The Equivalence Principle approaching the speed of light"}
20
+ {"query_id": 22404, "query": "Will the hole on a metal disc expand or contract upon heating?"}
21
+ {"query_id": 43322, "query": "Intuition for multiple temporal dimensions"}
22
+ {"query_id": 45743, "query": "Ice skater increase of energy"}
23
+ {"query_id": 87140, "query": "In an absence of gravity, does time flow faster or slower than on Earth?"}
24
+ {"query_id": 113647, "query": "The relationship between the Hubble Constant and cosmological time"}
25
+ {"query_id": 112799, "query": "Why can't light waves bend?"}
26
+ {"query_id": 18148, "query": "Current against the inverse of resistance graph, $I = V/R +c$"}
27
+ {"query_id": 24827, "query": "If space is being doubled, how fast is it doubling?"}
28
+ {"query_id": 66220, "query": "Proof of Spin-statistics theorem"}
29
+ {"query_id": 20460, "query": "Gauge pressure vs. absolute pressure?"}
30
+ {"query_id": 41386, "query": "Energy can't be created or destoryed?"}
31
+ {"query_id": 9194, "query": "What is the Physical Meaning of Commutation of Two Operators?"}
32
+ {"query_id": 123210, "query": "Renormalization of diagrams in QFT"}
33
+ {"query_id": 21319, "query": "How can anything ever fall into a black hole as seen from an outside observer?"}
34
+ {"query_id": 52062, "query": "Is it possible to speed up radioactive decay rates?"}
35
+ {"query_id": 74087, "query": "Resource for nonphysicists about QM/GR incompatibility"}
36
+ {"query_id": 54480, "query": "Suggestions for a physics oriented book on Variational Calculus"}
37
+ {"query_id": 2554, "query": "How is the classical twin paradox resolved?"}
38
+ {"query_id": 101674, "query": "Gaussian Integral by Substitution"}
39
+ {"query_id": 4731, "query": "Significance of the second focus in elliptical orbits"}
40
+ {"query_id": 9, "query": "Hamilton's Principle"}
41
+ {"query_id": 134370, "query": "Expanding universe space through matter or matter through space?"}
42
+ {"query_id": 20675, "query": "What does Peter Parkers formula represent?"}
43
+ {"query_id": 66476, "query": "What is the Earth truly rotating about/revolving around?"}
44
+ {"query_id": 71823, "query": "Is there a proof of existence of time?"}
45
+ {"query_id": 111213, "query": "How did WMAP measure the flatness of space?"}
46
+ {"query_id": 111696, "query": "Hydrostatic pressure at the center of a water planet"}
47
+ {"query_id": 134378, "query": "Do we weigh less in the morning?"}
48
+ {"query_id": 68898, "query": "Is it possible to generate usable electricity from the motion or magnetic field of the Earth?"}
49
+ {"query_id": 44882, "query": "What are good books for graduates/undergraduates in Astrophysics?"}
50
+ {"query_id": 55340, "query": "How does lightning \"know\" where to go?"}
51
+ {"query_id": 46824, "query": "A thought experiment with Heisenberg's Uncertainty Principle"}
52
+ {"query_id": 77373, "query": "Proof of conservation of energy?"}
53
+ {"query_id": 78222, "query": "Prove $[A,B^n] = nB^{n-1}[A,B]$"}
54
+ {"query_id": 101649, "query": "What is the physical significane of Complex Time Evolution in EM Waves?"}
55
+ {"query_id": 5839, "query": "Does magnetic propagation follow the speed of light?"}
56
+ {"query_id": 53168, "query": "Does photon have size measurement because of its particle nature"}
57
+ {"query_id": 10870, "query": "Calculating position in space assuming general relativity"}
58
+ {"query_id": 88026, "query": "Will an object resting on a rotating platform move in a frictionless world?"}
59
+ {"query_id": 3656, "query": "Can spacetime be non-orientable?"}
60
+ {"query_id": 101404, "query": "Positive Mass Theorem"}
61
+ {"query_id": 33998, "query": "Why is it that protons and electrons have exactly the same but opposite charge?"}
62
+ {"query_id": 4506, "query": "Homework about spinning top"}
63
+ {"query_id": 21771, "query": "Explanation about black color, and hence color"}
64
+ {"query_id": 100572, "query": "Different formulas for calculating power"}
65
+ {"query_id": 17034, "query": "How can we be sure that nature isn't \"faking\" quantum statistics?"}
66
+ {"query_id": 5851, "query": "When lasers are used to cool atoms or ions, etc where does the heat go?"}
67
+ {"query_id": 92990, "query": "Finding the Schwarzchild radius of a star of solar mass 30"}
68
+ {"query_id": 1008, "query": "Why isn't dark matter just matter?"}
69
+ {"query_id": 80777, "query": "Shifting the energy reference level"}
70
+ {"query_id": 27078, "query": "Choice and identification of vacuums in AdS/CFT"}
71
+ {"query_id": 13917, "query": "Reflection At Speed of Light"}
72
+ {"query_id": 33507, "query": "Quantum mechanic newbie: why complex amplitudes, why Hilbert space?"}
73
+ {"query_id": 92747, "query": "How can a proton be converted to a neutron via positron emission and yet gain mass?"}
74
+ {"query_id": 31326, "query": "Is a hard drive heavier when it is full?"}
75
+ {"query_id": 67571, "query": "Is time slowing down and disappearing from the universe instead of the expansion of universe?"}
76
+ {"query_id": 119176, "query": "How does gamma ray emission make an atom more stable?"}
77
+ {"query_id": 34834, "query": "An example of non-Hamiltonian systems"}
78
+ {"query_id": 93874, "query": "Is there any way to read the Feynman Lectures for free?"}
79
+ {"query_id": 92301, "query": "What color would you see if you place 2 mirrors in opposit when one is a one way mirror"}
80
+ {"query_id": 134559, "query": "Don't Inertial forces obey Newton's third law?"}
81
+ {"query_id": 118900, "query": "Question about Hubble's Law - expansion vs receding velocity"}
82
+ {"query_id": 126769, "query": "Which Optics textbooks are good?"}
83
+ {"query_id": 127616, "query": "How should a math undergrad student prepare himself to study GR and QM?"}
84
+ {"query_id": 27041, "query": "Linearizing Quantum Operators"}
85
+ {"query_id": 81414, "query": "Why are all force particles bosons?"}
86
+ {"query_id": 126766, "query": "What point of application of force ensures more acceleration in a rod?"}
87
+ {"query_id": 128702, "query": "Woodwind instruments overtones"}
88
+ {"query_id": 133230, "query": "Resistors in para and series circuit, finding volt"}
89
+ {"query_id": 5613, "query": "Dark matter and dark energy references"}
90
+ {"query_id": 70747, "query": "Can inertial mass affect gravity of the object?"}
91
+ {"query_id": 89378, "query": "de Broglie relations: calculate wavelength using two different approaches"}
92
+ {"query_id": 5615, "query": "What happens when a black hole and an \"anti-black-hole\" collide?"}
93
+ {"query_id": 89377, "query": "What actually is meant by wave nature of electron or any other material particles?"}
94
+ {"query_id": 39263, "query": "Science behind the singing wine glass"}
95
+ {"query_id": 68684, "query": "does matter radiate energy?"}
96
+ {"query_id": 89360, "query": "Simple pendulum and perpetual motion"}
97
+ {"query_id": 69778, "query": "Accelerating electrons via microwaves"}
98
+ {"query_id": 23930, "query": "What happens to the energy when waves perfectly cancel each other?"}
99
+ {"query_id": 43768, "query": "After what speed air friction starts to heat up an object?"}
100
+ {"query_id": 77143, "query": "What does it mean for a QFT to not be well-defined?"}
101
+ {"query_id": 57317, "query": "Multiple measurements of the same quantity - combining uncertainties"}
102
+ {"query_id": 79568, "query": "Angular Momentum Conservation in Gravitational Interaction"}
103
+ {"query_id": 29477, "query": "Richtmyer Meshkov instability in MHD"}
104
+ {"query_id": 57312, "query": "What will be the shape of liquid if there is no gravitational force"}
105
+ {"query_id": 105833, "query": "Is rigorous functional analysis useful for theoretical physics?"}
106
+ {"query_id": 17259, "query": "How fast does force propagate through matter?"}
107
+ {"query_id": 21721, "query": "What is the proof that the universal constants ($G$, $\\hbar$, $\\ldots$) are really constant in time and space?"}
108
+ {"query_id": 39253, "query": "Is it possible for one black hole to pull an object out of another black hole?"}
109
+ {"query_id": 71620, "query": "On a hot day, when it's cooler outside than in; is it better to put a fan in an open window pointing inwards or outwards?"}
110
+ {"query_id": 18793, "query": "Why do the planets' orbital distances fall on an exponential curve?"}
111
+ {"query_id": 133488, "query": "Would days be longer as the polar ice caps melt?"}
112
+ {"query_id": 41573, "query": "From how deep into space can a human \"skydive\" back to earth?"}
113
+ {"query_id": 29208, "query": "When would the proposed black hole at the centre of Milky Way gulp in our solar system?"}
114
+ {"query_id": 56470, "query": "What is the formula for calculating the length of any given day (sunrise to sunset)?"}
115
+ {"query_id": 20637, "query": "How could this damped oscillator ever go to infinity? Or negative infinity for that matter?"}
116
+ {"query_id": 29200, "query": "What experiments prove the greenhouse effect?"}
117
+ {"query_id": 126504, "query": "When they say that the universe cooled after the big bang, where did the heat go?"}
118
+ {"query_id": 55143, "query": "What would the effect be of a small black hole colliding with the earth?"}
119
+ {"query_id": 101443, "query": "Does gravity have any effect on sound waves?"}
120
+ {"query_id": 6725, "query": "If both radio waves and gamma rays can travel through walls"}
121
+ {"query_id": 73813, "query": "Wave theory limit of geometric optics?"}
122
+ {"query_id": 66044, "query": "Why is light produced when an underwater bubble is collapsed with a sound wave?"}
123
+ {"query_id": 68223, "query": "The secret behind the spinning, asymmetrically weighted, 2D disk-shaped top?"}
124
+ {"query_id": 38397, "query": "How to make something charged using electricity?"}
125
+ {"query_id": 70541, "query": "Canonical everyday-life example of a technology that could not work without humans mastering QM in analogy to the application of GR in GPS?"}
126
+ {"query_id": 102791, "query": "Quarks are now considered to be fundamentals, but so were atoms some time ago. So the way we see is only limited by our technological advances?"}
127
+ {"query_id": 103641, "query": "Very specific type of GR paper hunt"}
128
+ {"query_id": 38399, "query": "What is a good non-technical introduction to theories of everything?"}
129
+ {"query_id": 92313, "query": "The definition of Lagrangian"}
130
+ {"query_id": 15055, "query": "What is the cause of the normal force?"}
131
+ {"query_id": 18563, "query": "What exactly is a quantum of light?"}
132
+ {"query_id": 1051, "query": "conversion of information to energy"}
133
+ {"query_id": 43986, "query": "Meaning of the direction of the cross product"}
134
+ {"query_id": 83845, "query": "Can air bubbles sink at extreme depths?"}
135
+ {"query_id": 57333, "query": "Is quantum mechanics similar newtons laws of gravity? In a way"}
136
+ {"query_id": 90128, "query": "String Theory- Are strings the end? What are they made of?"}
137
+ {"query_id": 48196, "query": "Good Books on Gauge Theory"}
138
+ {"query_id": 19417, "query": "Path integral formulation of quantum mechanics"}
139
+ {"query_id": 64670, "query": "Is it possible (theoretically) to divide Black Hole into two parts?"}
140
+ {"query_id": 49956, "query": "Any new texts directly on second law of thermodynamics?"}
141
+ {"query_id": 102363, "query": "General relativity, gravity and spacetime curvature"}
142
+ {"query_id": 20056, "query": "Superluminal expansion of the early universe how is this possible?"}
143
+ {"query_id": 99779, "query": "Can a value of \"length, in meters\" be attributed to a pair of ends which are rigid (but not at rest) to each other?"}
144
+ {"query_id": 104301, "query": "Gravity propagation speed"}
145
+ {"query_id": 21384, "query": "How can I figure out how many kWh's are in a battery using the mAh's and voltage."}
146
+ {"query_id": 3244, "query": "Vortex in liquid collects particles in center"}
147
+ {"query_id": 99535, "query": "how does the temperature of a gas increase when compressed by an external agent during sound production?"}
148
+ {"query_id": 35313, "query": "How does a treadmill incline mechanism work?"}
149
+ {"query_id": 37730, "query": "Conservation of Energy in a magnet"}
150
+ {"query_id": 10252, "query": "Why is travelling around the speed of light a problem?"}
151
+ {"query_id": 91803, "query": "Why will an accelerated electron emit a photon?"}
152
+ {"query_id": 10496, "query": "What can the D-Wave quantum computer do?"}
153
+ {"query_id": 55965, "query": "Understanding on quantum entanglement"}
154
+ {"query_id": 11588, "query": "Work of Marie Curie?"}
155
+ {"query_id": 103448, "query": "Red color has largest wavelenght and violet minimum (in the range of visible light). then why does violet light appears reddish? RED + BLUE = VIOLET"}
156
+ {"query_id": 90715, "query": "How do gravitons and curved space time work together?"}
157
+ {"query_id": 102370, "query": "Why do particular materials allow particular light waves to pass through them?"}
158
+ {"query_id": 45105, "query": "Does Fire Conduct Electricity? Why?"}
159
+ {"query_id": 98437, "query": "Why absence of electron is called hole?"}
160
+ {"query_id": 67712, "query": "reflection at speed of light when both mirror and viewer is travelling at the speed of light"}
161
+ {"query_id": 100197, "query": "Finding charge (electromagnetism course)"}
162
+ {"query_id": 49940, "query": "What exists in the Space between atoms"}
163
+ {"query_id": 35781, "query": "Why are atoms particles?"}
164
+ {"query_id": 123055, "query": "Electromagnetic Field VS Photons"}
165
+ {"query_id": 26845, "query": "Lorentz force in Dirac theory and its classical limit"}
166
+ {"query_id": 45108, "query": "Half-Life Question"}
167
+ {"query_id": 73393, "query": "A question about the higher-order Weyl variation for the geodesic distance"}
168
+ {"query_id": 96010, "query": "What is difference between Inertial mass and gravitational mass"}
169
+ {"query_id": 127408, "query": "Features used in quantum mechanics but not used in classical mechanics"}
170
+ {"query_id": 3009, "query": "How exactly does curved space-time describe the force of gravity?"}
171
+ {"query_id": 53790, "query": "What happens if an atom absorbs a photon of energy higher than first excited state but lower than second excited state?"}
172
+ {"query_id": 77741, "query": "Why don't photons crash into each other occasionally? Or do they?"}
173
+ {"query_id": 401, "query": "What software programs are used to draw physics diagrams, and what are their relative merits?"}
174
+ {"query_id": 885, "query": "Why does calculus of variations work?"}
175
+ {"query_id": 102366, "query": "gravitational lensing"}
176
+ {"query_id": 104302, "query": "Size of Universe after inflation"}
177
+ {"query_id": 105875, "query": "Blackbody radiation and Spectral Lines"}
178
+ {"query_id": 37966, "query": "Reaching the speed of light, rockets"}
179
+ {"query_id": 409, "query": "What methods can astronomers use to find a black hole?"}
180
+ {"query_id": 14865, "query": "What do physicists mean when they say \"speed of light\"?"}
181
+ {"query_id": 63590, "query": "Integrating radial free fall in Newtonian gravity"}
182
+ {"query_id": 1080, "query": "Why isn't Higgs coupling considered a fifth fundamental force?"}
183
+ {"query_id": 103670, "query": "Do black holes exist?"}
184
+ {"query_id": 75108, "query": "Is it possible to have a magnet which looks like a hollow cylinder and who's north is interior and south is exterior?"}
185
+ {"query_id": 6533, "query": "What allows the modified Urca process to work at lower density than direct Urca in neutron star cooling?"}
186
+ {"query_id": 10470, "query": "How does water evaporate if it doesn't boil?"}
187
+ {"query_id": 19043, "query": "Is one way glass possible?"}
188
+ {"query_id": 3264, "query": "Thermal radiation spectrum of a blackbody"}
189
+ {"query_id": 80932, "query": "Are free electrons in a metal really free"}
190
+ {"query_id": 73162, "query": "Should we necessarily express the dimensions of a physical quantity within square brackets?"}
191
+ {"query_id": 34689, "query": "What were the intention/conclusions for Michelson-Morley experiment?"}
192
+ {"query_id": 8709, "query": "Does mass affect speed of orbit at a certain distance?"}
193
+ {"query_id": 95193, "query": "Countable Matrix Representation"}
194
+ {"query_id": 104513, "query": "Derivation of Euler's equations for rigid body rotation"}
195
+ {"query_id": 8701, "query": "Is microcausality *necessary* for no-signaling?"}
196
+ {"query_id": 54656, "query": "When can one write $a=v \\cdot dv/dx$?"}
197
+ {"query_id": 98459, "query": "The Achilles Paradox"}
198
+ {"query_id": 7633, "query": "Direction of Magnetic force from a current running through a coil of wire"}
199
+ {"query_id": 63138, "query": "Capacitors discharging in series"}
200
+ {"query_id": 75352, "query": "Atoms: boson or fermion?"}
201
+ {"query_id": 74020, "query": "Why did the Earth cool down?"}
202
+ {"query_id": 661, "query": "Is it possible to blur an image in such way that a person with sight problems could see it sharp?"}
203
+ {"query_id": 123267, "query": "Is there an upper limit to a rocket's size/payload?"}
204
+ {"query_id": 52487, "query": "Photometer: measured Irradiance L converted to photon rate"}
205
+ {"query_id": 89988, "query": "Can we actually prove with 100% accuracy that there is more than 3 dimensions plus time (t,x,y,z)?"}
206
+ {"query_id": 77525, "query": "Is spacetime all that exists?"}
207
+ {"query_id": 12664, "query": "Proving that interval preserving transformations are linear"}
208
+ {"query_id": 52008, "query": "Does light accelerate or slow down during reflection?"}
209
+ {"query_id": 37702, "query": "How do you change Planck's law from frequency to wavelength?"}
210
+ {"query_id": 135007, "query": "Constants of infinity"}
211
+ {"query_id": 134157, "query": "Can mass be totally converted into energy?"}
212
+ {"query_id": 99338, "query": "Transportation using disintegration"}
213
+ {"query_id": 67746, "query": "Why two balls of different mass dropped from the same height falls the ground at the same time?"}
214
+ {"query_id": 118988, "query": "If lead's electron configuration ends with 6p$^2$, shouldn't it be paramagnetic?"}
215
+ {"query_id": 19262, "query": "What's the standard \"roadmap\" to learning quantum physics?"}
216
+ {"query_id": 66658, "query": "Atmospheric pressure experiment using a cup with a fluid to hold a glass plate"}
217
+ {"query_id": 98000, "query": "Does the time for communication between moving objects solely account for each object to perceive the other object's clock to more slowly tick?"}
218
+ {"query_id": 75363, "query": "How is the Schroedinger equation a wave equation?"}
219
+ {"query_id": 127461, "query": "Could space itself be made out of particles?"}
220
+ {"query_id": 18170, "query": "Measurement of Tangential Momentum Accomodation?"}
221
+ {"query_id": 54431, "query": "Can we make images of single atoms?"}
222
+ {"query_id": 55760, "query": "What are the implications if Supersting theory is discredited?"}
223
+ {"query_id": 31395, "query": "What happens to matter in a standard model with zero Higgs VEV?"}
224
+ {"query_id": 56851, "query": "Noether's current expression in Peskin and Schroeder"}
225
+ {"query_id": 7877, "query": "Pendulum with water dripping out"}
226
+ {"query_id": 11542, "query": "Why is gravitation force always attractive?"}
227
+ {"query_id": 54437, "query": "Learning more about String theory"}
228
+ {"query_id": 121911, "query": "How to find equation of motion for this trajectory? - object leaves curved ramp at a given velocity"}
229
+ {"query_id": 45545, "query": "Relativistic Hamiltonian Formulations"}
230
+ {"query_id": 105681, "query": "Integrating for speed"}
231
+ {"query_id": 65339, "query": "How & Why does accelerating charges radiate electromagnetic radiation?"}
232
+ {"query_id": 46639, "query": "Non-Degeneracy of Eigenvalues of Number Operator for Simple Harmonic Oscillator"}
233
+ {"query_id": 31387, "query": "How do you find spin of a particle from experimental data?"}
234
+ {"query_id": 53356, "query": "Reference on Chern-Simons theory"}
235
+ {"query_id": 52024, "query": "Is there any case in physics where the equations of motion depend on high time derivatives of the position?"}
236
+ {"query_id": 107614, "query": "Why \"Dark Energy\" is called energy instead of force?"}
237
+ {"query_id": 101291, "query": "Density operators in a Hilbert Space"}
238
+ {"query_id": 64253, "query": "Distance away from earth to see it as a full disk"}
239
+ {"query_id": 65584, "query": "What happens when non-equal voltages are put in parallel?"}
240
+ {"query_id": 106501, "query": "Is Dark Energy Pushing Us Or Pulling Us?"}
241
+ {"query_id": 94901, "query": "Contracting Indices"}
242
+ {"query_id": 46863, "query": "Why is a cycloid path the fastest way to roll a ball downward?"}
243
+ {"query_id": 7421, "query": "Brachistochrone Problem for Inhomogeneous Potential"}
244
+ {"query_id": 98027, "query": "What is the universe 'expanding' into?"}
245
+ {"query_id": 75385, "query": "What is Mathematical formulation of entropic Gravitational force?"}
246
+ {"query_id": 96081, "query": "Is the second law of thermodynamics a fundamental law, or does it emerge from other laws?"}
247
+ {"query_id": 11527, "query": "The Higgs field a new Luminiferous aether?"}
248
+ {"query_id": 52273, "query": "Is it possible for a physical object to have a irrational length?"}
249
+ {"query_id": 133096, "query": "Expanding universe and the speed of light"}
250
+ {"query_id": 133093, "query": "What formula connects the moment of inertia and angular velocity?"}
251
+ {"query_id": 87376, "query": "Good and simple reference for studying about ADM mass"}
252
+ {"query_id": 6582, "query": "What sort of jobs do physics graduates with B.Sc/M.Sc get?"}
253
+ {"query_id": 86270, "query": "Dual nature of Matter at gross level"}
254
+ {"query_id": 47941, "query": "Dumbed-down explanation how scientists know the number of atoms in the universe?"}
255
+ {"query_id": 113267, "query": "Is temperature discrete"}
256
+ {"query_id": 115204, "query": "Visualization of electromagnetic field"}
257
+ {"query_id": 24841, "query": "Geocentric Model in General Relativity"}
258
+ {"query_id": 80966, "query": "Why current through all the resistors in series is considered to be same?"}
259
+ {"query_id": 23753, "query": "Information conservation during quantum measurement"}
260
+ {"query_id": 118717, "query": "Newton and the change of mass with time"}
261
+ {"query_id": 60900, "query": "About hubble observatory and distant galaxies"}
262
+ {"query_id": 32699, "query": "How to explain $E=mc^2$ mass defect in fission/fusion"}
263
+ {"query_id": 57975, "query": "Force with zero acceleration"}
264
+ {"query_id": 56888, "query": "rephrasing my question on QFT and path intergrals?"}
265
+ {"query_id": 7668, "query": "Fundamental question about dimensional analysis"}
266
+ {"query_id": 89787, "query": "Centrifugal force acting on ring"}
267
+ {"query_id": 134199, "query": "Why is uncertainty $\\geq {\\hbar}/{2} $"}
268
+ {"query_id": 108924, "query": "Chemical potential of photons"}
269
+ {"query_id": 133820, "query": "If sound travels through matter what medium does light travel through?"}
270
+ {"query_id": 47259, "query": "If everything in the universe doubled in size overnight, would it be noticeable?"}
271
+ {"query_id": 71126, "query": "Why does the refractive index depend on wavelength?"}
272
+ {"query_id": 9864, "query": "How to define angular momentum in other than three dimensions?"}
273
+ {"query_id": 62653, "query": "Attraction and repulsion of Magnetic materials"}
274
+ {"query_id": 133829, "query": "Doppler Shift when Light Travels Through Two Different Mediums"}
275
+ {"query_id": 63987, "query": "Why don't electric workers get electrocuted when only touching one wire?"}
276
+ {"query_id": 64834, "query": "Does quantum mechanics depend solely on electromagnetic waves?"}
277
+ {"query_id": 126296, "query": "What is the current state of research about the Hayden-Preskill circuit?"}
278
+ {"query_id": 87715, "query": "Voltage in a short circuit system"}
279
+ {"query_id": 27641, "query": "Entanglement in time"}
280
+ {"query_id": 24131, "query": "What is the support for the suggestion that reality is a computer simulation?"}
281
+ {"query_id": 60476, "query": "Exact Solutions to the Navier-Stokes Equations"}
282
+ {"query_id": 104019, "query": "Special Relativity Textbooks Request"}
283
+ {"query_id": 16755, "query": "Why is energy in a wave proportional to amplitude squared"}
284
+ {"query_id": 69281, "query": "The interaction picture doesn't exist?"}
285
+ {"query_id": 75977, "query": "Is Veneziano amplitude able to explain the physical properties of strongly interacting hadrons (such as proton and neutron)?"}
286
+ {"query_id": 68198, "query": "Why can't some light ever reach earth?"}
287
+ {"query_id": 8784, "query": "\"Troll physics\": Buoyancy for infinite power"}
288
+ {"query_id": 53708, "query": "How can I understand work conceptually?"}
289
+ {"query_id": 107546, "query": "Why doesn't our body gets crushed due to the atmospheric pressure?"}
290
+ {"query_id": 45067, "query": "Momentum as Generator of Translations"}
291
+ {"query_id": 129314, "query": "Calculating Hubble's constant at earlier times"}
292
+ {"query_id": 92051, "query": "How can momentum but not energy be conserved in an inelastic collision?"}
293
+ {"query_id": 92293, "query": "Gravity from energy"}
294
+ {"query_id": 132988, "query": "Energy & Mass of a Photon"}
295
+ {"query_id": 79085, "query": "Way to become a physicist"}
296
+ {"query_id": 41937, "query": "Non-linear dynamics of classical hydrogen atom"}
297
+ {"query_id": 12169, "query": "Detection of the Electric Charge of a Black Hole"}
298
+ {"query_id": 83101, "query": "Expansion of a function"}
299
+ {"query_id": 51776, "query": "How are current and voltage out of phase in capacitive circuit?"}
300
+ {"query_id": 109957, "query": "How does Einstein got equivalent mass - energy equation E=mc2?"}
301
+ {"query_id": 73329, "query": "Born's Rule, What is the Reason?"}
302
+ {"query_id": 13220, "query": "Physics needed to build a top down billiards game"}
303
+ {"query_id": 15640, "query": "What are \"electron holes\" in semiconductors?"}
304
+ {"query_id": 14791, "query": "Why are the even and odd Regge trajectories degenerate?"}
305
+ {"query_id": 24596, "query": "Is the converse of Noether's first theorem true: Every conservation law has a symmetry?"}
306
+ {"query_id": 24359, "query": "Why do objects follow geodesics in spacetime?"}
307
+ {"query_id": 252, "query": "The Many Body problem"}
308
+ {"query_id": 116230, "query": "Why fundamentally does classical mechanics lead to second order dynamics?"}
309
+ {"query_id": 60016, "query": "exercise books for Feynman diagrams"}
310
+ {"query_id": 89914, "query": "Proof of conservation of information"}
311
+ {"query_id": 87976, "query": "Direction of friction when a car turns"}
312
+ {"query_id": 107746, "query": "Spinning of the Earth"}
313
+ {"query_id": 104237, "query": "Why do the planets orbit the Sun?"}
314
+ {"query_id": 1915, "query": "What does it mean that the universe is \"infinite\"?"}
315
+ {"query_id": 6384, "query": "Why does dilation invariance often imply proper conformal invariance?"}
316
+ {"query_id": 61592, "query": "Naked singularity and extendable geodesics"}
317
+ {"query_id": 9898, "query": "The Density of Clouds"}
318
+ {"query_id": 102076, "query": "Capacitance of bodies with different charge"}
319
+ {"query_id": 5057, "query": "Does string theory provide quantitative experimental predictions?"}
320
+ {"query_id": 75756, "query": "On the atomic level how do permanent magnets work?"}
321
+ {"query_id": 7479, "query": "A Basic Question about Gravity, Inertia or Momentum or something along those lines"}
322
+ {"query_id": 47224, "query": "What does a sphere moving close to the speed of light look like?"}
323
+ {"query_id": 6147, "query": "Time Dilation - How does it know which Frame of Reference to age slower?"}
324
+ {"query_id": 126264, "query": "On becoming theoretical physicist"}
325
+ {"query_id": 23038, "query": "Why does the sound pitch increase on every consecutive tick at the bottom of a filled cup of coffee?"}
326
+ {"query_id": 103160, "query": "It's commonly said that the existence of antiparticles \"saves causality\". How?"}
327
+ {"query_id": 26307, "query": "The collision of Phobos"}
328
+ {"query_id": 28720, "query": "How to get Planck length"}
329
+ {"query_id": 87725, "query": "Triboluminescence, how does it work?"}
330
+ {"query_id": 53734, "query": "How do we make symmetry assumptions rigorous?"}
331
+ {"query_id": 11299, "query": "Do spacelike singularities really exist in quantum gravity?"}
332
+ {"query_id": 44193, "query": "What would happen to a person that was inside the Large Hadron Collider when it is turned on?"}
333
+ {"query_id": 9663, "query": "Is it pions or gluons that mediate the strong force between nucleons?"}
334
+ {"query_id": 106484, "query": "If you shoot a light beam behind the event horizon of a black hole, what happens to the light?"}
335
+ {"query_id": 48548, "query": "Apparent paradox in equation of continuity"}
336
+ {"query_id": 108661, "query": "Movement with non-constant acceleration"}
337
+ {"query_id": 109992, "query": "Heat energy in special theory of relativity"}
338
+ {"query_id": 105398, "query": "What will change if we have another Earth in the space near Earth?"}
339
+ {"query_id": 130999, "query": "Why do we observe opposite motion of trees (nearer) and trees (distant) when seen from a moving frame?"}
340
+ {"query_id": 23487, "query": "3d holograms - How are they created?"}
341
+ {"query_id": 94040, "query": "Why aren't quarks free?"}
342
+ {"query_id": 271, "query": "Why don't spinning tops fall over?"}
343
+ {"query_id": 27847, "query": "Why is there a $\\frac 1 2$ in $\\frac 1 2 mv^2$?"}
344
+ {"query_id": 23007, "query": "How much oxygen would be consumed on a 1 cm squared surface which is on fire?"}
345
+ {"query_id": 88606, "query": "Within the context of string theory, is matter nothing more than a vibration on a membrane of space-time?"}
346
+ {"query_id": 26992, "query": "Spectrum of Free Strings"}
347
+ {"query_id": 86424, "query": "How did Newton find the relationship between force, mass and acceleration?"}
348
+ {"query_id": 8347, "query": "Trapping a lightray"}
349
+ {"query_id": 37881, "query": "Why is torque not measured in Joules?"}
350
+ {"query_id": 48534, "query": "Does kinetic friction increase as speed increases?"}
351
+ {"query_id": 62222, "query": "Cancelling special & general relativistic effects"}
352
+ {"query_id": 73114, "query": "Space expanding, or light slowing down?"}
353
+ {"query_id": 130767, "query": "Beginner question: timelessness of massless particles"}
354
+ {"query_id": 24588, "query": "Why don't we see solar and lunar eclipses often?"}
355
+ {"query_id": 34130, "query": "How to make a monopole magnet?"}
356
+ {"query_id": 64647, "query": "Why doesn't a bus blow due to internal pressure?"}
357
+ {"query_id": 95366, "query": "Why does Stephen Hawking say black holes don't exist?"}
358
+ {"query_id": 110736, "query": "About the speed of light and gravity"}
359
+ {"query_id": 25437, "query": "Why do we always see the same side of the Moon?"}
360
+ {"query_id": 129350, "query": "Does the order of variables matter for a quantum Lagrangian in the path integral formula for quantum mechanics?"}
361
+ {"query_id": 95361, "query": "Can we calculate the frame dragging force of the Earth?"}
362
+ {"query_id": 129593, "query": "minimum possible absolute temperature in the universe?"}
363
+ {"query_id": 90908, "query": "Could Dark Matter form black hole?"}
364
+ {"query_id": 116281, "query": "Dark Energy / Accelerating universe: naive question"}
365
+ {"query_id": 53519, "query": "Physics textbook for mathematicians"}
366
+ {"query_id": 16725, "query": "Intuitively, what is the source term of the Einstein field equation?"}
367
+ {"query_id": 123803, "query": "Different factors of $4\\pi$ and $\\epsilon_0$ in Poisson equation"}
368
+ {"query_id": 62474, "query": "Does friction depend on the area between bodies thats in contact?"}
369
+ {"query_id": 38961, "query": "Why there is no negative temperature"}
370
+ {"query_id": 130773, "query": "Why does coke fizz more when you add ice"}
371
+ {"query_id": 25883, "query": "Why is there still radiation left from the Big Bang now?"}
372
+ {"query_id": 99754, "query": "What jobs can you get in the field of physics?"}
373
+ {"query_id": 129340, "query": "The role of SO(3) and SU(2) in quantum mechanics"}
374
+ {"query_id": 122941, "query": "Why must a singularity form inside a black hole?"}
375
+ {"query_id": 35218, "query": "Why do some physicists believe that scalable quantum computing is possible?"}
376
+ {"query_id": 117120, "query": "Prerequisites for Griffiths electrodynamics"}
377
+ {"query_id": 34366, "query": "Time taken for object in space to fall to earth"}
378
+ {"query_id": 34364, "query": "Why does a cuboid spin stably around two axes but not the third?"}
379
+ {"query_id": 10154, "query": "Does the Standard model allow for radioactive decay prediction?"}
380
+ {"query_id": 38963, "query": "Study Quantum Physics"}
381
+ {"query_id": 50015, "query": "confusion on quantum field theory"}
382
+ {"query_id": 45495, "query": "Why does the universe exhibit three large-scale spatial dimensions?"}
383
+ {"query_id": 36303, "query": "Introduction to AdS/CFT"}
384
+ {"query_id": 1957, "query": "What is the difference between a white object and a mirror?"}
385
+ {"query_id": 78827, "query": "What are those characteristics by which every sound can be identified uniquely?"}
386
+ {"query_id": 28929, "query": "How to find orbital radius of star in a binary system using redshift and orbital period data?"}
387
+ {"query_id": 107563, "query": "What's the proof that the polarization occur s to the electric field of the light?"}
388
+ {"query_id": 45247, "query": "Trying to understand the tension in a spring with two weights attached"}
389
+ {"query_id": 107561, "query": "Dependence of Force as a function of Distance?"}
390
+ {"query_id": 7276, "query": "What combinations of realism, non-locality, and contextuality are ruled out in quantum theory?"}
391
+ {"query_id": 10161, "query": "Is there a good chance that gravitational waves will be detected in the next years?"}
392
+ {"query_id": 14760, "query": "What is the variable plotted on the y-axis on these Higgs exclusion graphs?"}
393
+ {"query_id": 109982, "query": "How is a vacuum able to propagate light?"}
394
+ {"query_id": 10163, "query": "Special Relativity and time"}
395
+ {"query_id": 99505, "query": "What is the conclusion from Aharonov-Bohm Effect?"}
396
+ {"query_id": 34352, "query": "How is light affected by gravity?"}
397
+ {"query_id": 16708, "query": "Why does it seem like a broken magnet's poles flip?"}
398
+ {"query_id": 11014, "query": "Will the night sky eventually be bright?"}
399
+ {"query_id": 21051, "query": "Why are continuum fluid mechanics accurate when constituents are discrete objects of finite size?"}
400
+ {"query_id": 9449, "query": "Video lectures on graduate level Classical Electrodynamics"}
401
+ {"query_id": 55719, "query": "Schrodinger's cat experiment"}
402
+ {"query_id": 12589, "query": "Are there formulae for calculating stellar luminosity and effective temperature as a function of age?"}
403
+ {"query_id": 15855, "query": "How does quantum trapping with diamagnets work?"}
404
+ {"query_id": 15263, "query": "Neutrino unaffected by gravity"}
405
+ {"query_id": 6197, "query": "Do two beams of light attract each other in general theory of relativity?"}
406
+ {"query_id": 68599, "query": "What sets a \"Law\" apart from a \"Rule\" or a \"Principle\"?"}
407
+ {"query_id": 90044, "query": "Halliday resnick physics book"}
408
+ {"query_id": 106287, "query": "Is the universe flat?"}
409
+ {"query_id": 73945, "query": "Work done by magnetic field"}
410
+ {"query_id": 110543, "query": "Open-source up-to-date cosmological datasets"}
411
+ {"query_id": 68112, "query": "Formula for Symmetry Factor"}
412
+ {"query_id": 16596, "query": "About the Ether Theory acceptance"}
413
+ {"query_id": 8379, "query": "Do Hydrinos Exist?"}
414
+ {"query_id": 9468, "query": "In what order should the subjects be studied in order to get to String Theory"}
415
+ {"query_id": 82417, "query": "Is the trajectory of the Moon around the Earth stable?"}
416
+ {"query_id": 82418, "query": "Analytic solution for angle of minimum deviation?"}
417
+ {"query_id": 123610, "query": "Current in a strip - Scalar or vector"}
418
+ {"query_id": 120107, "query": "What keeps objects made of gold apart?"}
419
+ {"query_id": 123857, "query": "Mathematical calculation of probability of existence of planet similar to earth"}
420
+ {"query_id": 111866, "query": "Intuitive meaning of Dot Product"}
421
+ {"query_id": 19632, "query": "How much electric charge do electromagnetic waves carry?"}
422
+ {"query_id": 92454, "query": "Guinier regime for form factor"}
423
+ {"query_id": 22803, "query": "Is acceleration relative?"}
424
+ {"query_id": 90034, "query": "How are the definitions of a coherent state equivalent?"}
425
+ {"query_id": 70200, "query": "Why electrons can't radiate in their atoms' orbits?"}
426
+ {"query_id": 133431, "query": "Can expansion of space create energy?"}
427
+ {"query_id": 71772, "query": "How can we deduce the relation $m = \\frac{m_0}{\\sqrt{1-\\frac{v^2}{c^2}}}$ between relativistic mass and rest mass in special relativity?"}
428
+ {"query_id": 1984, "query": "Why does holding something up cost energy while no work is being done?"}
429
+ {"query_id": 1982, "query": "Is colour, as represented using primary colours, accurate only to humans?"}
430
+ {"query_id": 27496, "query": "Is the universe a quantum computer - is light speed barrier a computational constraint"}
431
+ {"query_id": 81561, "query": "Why can we skate on ice?"}
432
+ {"query_id": 70439, "query": "How occurs the enantiomorph of the mirror?"}
433
+ {"query_id": 130171, "query": "At what speed will objects hit a singularity?"}
434
+ {"query_id": 107113, "query": "Calculate the average temperature needed for hydrogen fusion reaction"}
435
+ {"query_id": 92245, "query": "Electromagnet emitting light"}
436
+ {"query_id": 95756, "query": "Why does a floating balloon in an accelerated train moves forward but the pendulum moves backward?"}
437
+ {"query_id": 91392, "query": "Is temperature of a single molecule defined?"}
438
+ {"query_id": 7063, "query": "What actually happens when an anti-matter projectile collides with matter?"}
439
+ {"query_id": 119103, "query": "How does heat actually stay kept in the carbon molecules in the atmosphere?"}
440
+ {"query_id": 60899, "query": "The paradoxical nature of Hawking radiation"}
441
+ {"query_id": 29642, "query": "In a neutron star - what force keeps the neutrons from getting closer and closer?"}
442
+ {"query_id": 108214, "query": "Applications of low-dimensional topology to physics"}
443
+ {"query_id": 129378, "query": "The universe could have created itself?"}
444
+ {"query_id": 129137, "query": "Black Hole gravity pull"}
445
+ {"query_id": 70463, "query": "Exchange particles-real or just mathetical constructs?"}
446
+ {"query_id": 108212, "query": "What's the relationship between $SL(2,\\mathbb{C})$, $SU(2)\\times SU(2)$ and $SO(1,3)$?"}
447
+ {"query_id": 105183, "query": "Question about two masses connected by a spring"}
448
+ {"query_id": 9495, "query": "What is the fastest process or shortest time in nature?"}
449
+ {"query_id": 59438, "query": "How do you calculate power at the focal point of a mirror?"}
450
+ {"query_id": 83524, "query": "Harmonic Motion"}
451
+ {"query_id": 51711, "query": "Why shouldn't the uncertainty principle be interpreted as an observer effect?"}
452
+ {"query_id": 71309, "query": "Is there an EMF in a conductor moving at constant speed across the uniform magnetic field"}
453
+ {"query_id": 36167, "query": "Does juggling balls reduce the total weight of the juggler and balls?"}
454
+ {"query_id": 130116, "query": "How do photons know they can or can't excite electrons?"}
455
+ {"query_id": 47291, "query": "How could the relative zero gravity of the International Space Station be canceled?"}
456
+ {"query_id": 1775, "query": "Why is there no absolute maximum temperature?"}
457
+ {"query_id": 31950, "query": "Higgs boson and other properties of particles."}
458
+ {"query_id": 126921, "query": "Magnet motor free energy generator"}
459
+ {"query_id": 85975, "query": "How much extra distance to an event horizon?"}
460
+ {"query_id": 102719, "query": "What is the formula for determining time dilation (as the object in motion)?"}
461
+ {"query_id": 121476, "query": "What happens if the earth stops rotating?"}
462
+ {"query_id": 122564, "query": "Alternating Current Inquires"}
463
+ {"query_id": 2860, "query": "How does electron move around nucleus?"}
464
+ {"query_id": 17408, "query": "Do atmospheric physics prevent hot air balloons from ascending over 60,000ft?"}
465
+ {"query_id": 51723, "query": "How were the crystal lattices of elements determined to perfection ? (Ex:- That of a copper is a cubic lattice )"}
466
+ {"query_id": 101624, "query": "Can someone be too late for being a great physicist?"}
467
+ {"query_id": 133876, "query": "Maximum voltage on metal sphere?"}
468
+ {"query_id": 132788, "query": "What moves an object? Momentum or Kinetic Energy?"}
469
+ {"query_id": 41741, "query": "Linear motion with variable acceleration"}
470
+ {"query_id": 71576, "query": "Static friction greater than kinetic friction"}
471
+ {"query_id": 110330, "query": "Do oceans produce the cosmic microwave background?"}
472
+ {"query_id": 14142, "query": "Maximum limit on the number of paper-folds possible after tearing into halves"}
473
+ {"query_id": 109364, "query": "Can 'Backradiation' warm its own source?"}
474
+ {"query_id": 55091, "query": "How small are the smallest black holes?"}
475
+ {"query_id": 58122, "query": "Why work to change velocity from 0 to 20 km/h is less then from 20 to 40?"}
476
+ {"query_id": 28781, "query": "Why, when one opens 1 car window, does that noise occur?"}
477
+ {"query_id": 43919, "query": "Dark Energy saving the world"}
478
+ {"query_id": 110581, "query": "Do COBE, WMAP, or Planck data show time-variance of the CMB's anisotropies?"}
479
+ {"query_id": 30616, "query": "Energy efficiency of antimatter producion"}
480
+ {"query_id": 39428, "query": "Is this a good explanation of the Higgs mechanism?"}
481
+ {"query_id": 47284, "query": "Rolling (without slipping) ball on a moving surface 2"}
482
+ {"query_id": 73528, "query": "Singularity in a black hole"}
483
+ {"query_id": 71589, "query": "Is it possible for a planet to be made entirely of water (even it's core)?"}
484
+ {"query_id": 9045, "query": "Why do they store gold bars with the narrow side down?"}
485
+ {"query_id": 106065, "query": "Relativity's effects on centripetal motion"}
486
+ {"query_id": 38561, "query": "Magnetic field lines"}
487
+ {"query_id": 109332, "query": "Calculate analytically the time until two spheres meet due to gravitation"}
488
+ {"query_id": 113830, "query": "Two explanations of non-zero atomic radius"}
489
+ {"query_id": 15684, "query": "What are the mechanics by which Time Dilation and Length Contraction occur?"}
490
+ {"query_id": 13020, "query": "Books that every layman should read"}
491
+ {"query_id": 39654, "query": "Paradox with Gauss' law when space is uniformly charged everywhere"}
492
+ {"query_id": 9049, "query": "Why doesn't the Moon fall upon Earth?"}
493
+ {"query_id": 27423, "query": "Matlab package: graphical calculus for quantum operations (esp. linear optics)"}
494
+ {"query_id": 134979, "query": "Does gravity weaken by the square of the distance because the energy is dispersed over the square of the distance"}
495
+ {"query_id": 62637, "query": "The potential and the intensity of the gravitational field in the axis of a circular plate"}
496
+ {"query_id": 93130, "query": "Is it wasteful to use a heating element, instead of doing useful work?"}
497
+ {"query_id": 120124, "query": "Why is the earth shaped like a sphere and not any other shape: cube, prism?"}
498
+ {"query_id": 46180, "query": "Can a deformable object \"swim\" in curved space-time?"}
499
+ {"query_id": 60699, "query": "High Frequency Active Auroral Research Program (HAARP) And Earthquake Myth or Reality?"}
500
+ {"query_id": 36146, "query": "atomic friction"}
501
+ {"query_id": 52837, "query": "When do I apply Significant figures in physics calculations?"}
502
+ {"query_id": 1317, "query": "Which is easier, pushing or pulling?"}
503
+ {"query_id": 19802, "query": "Has the concept of non-integer $(n+m)$-dimensional spacetime ever been investigated by theoretical physicists?"}
504
+ {"query_id": 106078, "query": "How does a simple weighing balance actually work?"}
505
+ {"query_id": 13030, "query": "Why does the air flow faster over the top of an airfoil?"}
506
+ {"query_id": 110554, "query": "Magnetic field resistance material: are there any?"}
507
+ {"query_id": 134987, "query": "Basic understanding of stress tensors in a fluid"}
508
+ {"query_id": 72447, "query": "Why this perpetuum mobile can't be possible?"}
509
+ {"query_id": 75715, "query": "Elastic potential energy of compressed spring?"}
510
+ {"query_id": 14362, "query": "Help Me Gain an Intuitive Understanding of Lorentz Contraction"}
511
+ {"query_id": 91181, "query": "Angular Momentum of a rigid, extended object"}
512
+ {"query_id": 28527, "query": "Two particles interacting by a inverse-square-law force, find their positions in function of time"}
513
+ {"query_id": 41717, "query": "How is it possible to come to a conclusion that Universe is a result of the Big Bang while we aren't able to observe the entire Universe?"}
514
+ {"query_id": 51990, "query": "do quantum fields exist in superposition?"}
515
+ {"query_id": 16305, "query": "If Earth Were Filled with a Compressible Fluid and Spun Really Fast, What Hollow Would Form?"}
516
+ {"query_id": 19816, "query": "What is the meaning of speed of light $c$ in $E=mc^2$?"}
517
+ {"query_id": 38313, "query": "What's the difference between electron movement and charge movement in electricity?"}
518
+ {"query_id": 102941, "query": "How many physical degrees of freedom does the $\\mathrm{SU(N)}$ Yang-Mills theory have?"}
519
+ {"query_id": 51995, "query": "Speed of light in a given direction based on frame of reference"}
520
+ {"query_id": 52845, "query": "Nuclear structure"}
521
+ {"query_id": 132058, "query": "Speed greater than light in circular motion"}
522
+ {"query_id": 20333, "query": "Speed of a fly inside a car"}
523
+ {"query_id": 45634, "query": "Impurity scattering temperature dependence"}
524
+ {"query_id": 68757, "query": "Why do neutrinos propagate in a mass eigenstate?"}
525
+ {"query_id": 91534, "query": "Lecture Notes to Learn Quantum Field Theory"}
526
+ {"query_id": 68512, "query": "Evidence for expansion of space"}
527
+ {"query_id": 127940, "query": "Jump from a falling object"}
528
+ {"query_id": 75286, "query": "does time exist in space or does space exist in time"}
529
+ {"query_id": 82821, "query": "current in wire + special relativity = magnetism"}
530
+ {"query_id": 34500, "query": "How can black holes have gravity?"}
531
+ {"query_id": 12717, "query": "Charging 12V 150Ah battery"}
532
+ {"query_id": 119083, "query": "Exeeding the speed of light by adding velocities"}
533
+ {"query_id": 113527, "query": "Is the Lorentz force conservative?"}
534
+ {"query_id": 18028, "query": "How can I modify the bullet trajectory based on the ballistic coefficient?"}
535
+ {"query_id": 87260, "query": "Time Slowing Down"}
536
+ {"query_id": 113523, "query": "Sign convention for mirror and lens formulas"}
537
+ {"query_id": 69855, "query": "Planck length implies lattice structure of space?"}
538
+ {"query_id": 98157, "query": "Speed and Velocity Worksheet"}
539
+ {"query_id": 16082, "query": "How do I find the frictional force using a free body diagram?"}
540
+ {"query_id": 11878, "query": "A No-Nonsense Introduction to Quantum Field Theory"}
541
+ {"query_id": 30134, "query": "Intrinsic structure of electron"}
542
+ {"query_id": 4617, "query": "Why two objects get charged by rubbing?"}
543
+ {"query_id": 80872, "query": "Newtons Cradle, Collision Theory"}
544
+ {"query_id": 55458, "query": "Why is the Lagrangian quadratic in $\\dot{q}$?"}
545
+ {"query_id": 10308, "query": "The \"Nerd Sniping\" problem. Generalizations?"}
546
+ {"query_id": 1343, "query": "Why does dust stick to rotating fan propeller?"}
547
+ {"query_id": 3521, "query": "Has the black hole information loss paradox been settled?"}
548
+ {"query_id": 55698, "query": "What is the role of center-tapping in a full wave rectifier?"}
549
+ {"query_id": 59815, "query": "Is a heavier skier faster?"}
550
+ {"query_id": 41494, "query": "Physical meaning of force times area"}
551
+ {"query_id": 18473, "query": "Where do electrons get their ever-lasting circulating energy?"}
552
+ {"query_id": 91797, "query": "Why would an electron in an orbit be accelerating continuously and would thus radiate away its energy and fall into the nucleus in a classical model?"}
553
+ {"query_id": 39170, "query": "Good Magnetic Simulation Software?"}
554
+ {"query_id": 52195, "query": "Ultrasonic wave through air"}
555
+ {"query_id": 2687, "query": "Modern references for continuum mechanics"}
556
+ {"query_id": 2684, "query": "How do I calculate the (apparent) gravitational pull with General Relativity?"}
557
+ {"query_id": 57643, "query": "Dark energy and dark matter"}
558
+ {"query_id": 94819, "query": "Because position is relative, is it possible to see a star orbiting a planet?"}
559
+ {"query_id": 68302, "query": "Best way to chill a cup of coffee with cold water and 5 minutes"}
560
+ {"query_id": 21654, "query": "How to find the value of the parameter $a$ in this transfer function?"}
561
+ {"query_id": 46933, "query": "What's the most efficient way to study physics?"}
562
+ {"query_id": 43665, "query": "Logical requirement of newton's third law"}
563
+ {"query_id": 66363, "query": "Estimating the present state of stars"}
564
+ {"query_id": 41245, "query": "What is the present state of Mach's Principle amongst physicists?"}
565
+ {"query_id": 94812, "query": "How are the triangular Lagrange points in a Three body Problem stable, yet having a higher effective potential?"}
566
+ {"query_id": 135115, "query": "Has NASA confirmed that Roger Shawyer's EmDrive thruster works?"}
567
+ {"query_id": 113982, "query": "Why $\\vec F=m\\vec a$ instead of $\\vec F=m\\vec v$?"}
568
+ {"query_id": 45849, "query": "Origin of lepton/quark generations?"}
569
+ {"query_id": 1372, "query": "Is rotational motion relative to space?"}
570
+ {"query_id": 113749, "query": "Is there experimental evidence that massless particles such as photons attract massive objects?"}
571
+ {"query_id": 39161, "query": "What happens to an embedded magnetic field when a black hole is formed from rotating charged dust?"}
572
+ {"query_id": 102627, "query": "Second Rank Tensors"}
573
+ {"query_id": 30353, "query": "Supersymmetry in Quantum Field Theory"}
574
+ {"query_id": 30597, "query": "Black holes and positive/negative-energy particles"}
575
+ {"query_id": 33621, "query": "How do electrons know which path to take in a circuit?"}
576
+ {"query_id": 944, "query": "Noticing that Newtonian gravity and electrostatics are equivalent, is there also a relationship between the general relativity and electrodynamics?"}
577
+ {"query_id": 4635, "query": "Understanding weight on an inclined plane"}
578
+ {"query_id": 7905, "query": "Massless charged particles"}
579
+ {"query_id": 22713, "query": "Jumping in an elevator?"}
580
+ {"query_id": 102680, "query": "How can you use magnets to rotate a shaft, which in turn powers a generator?"}
581
+ {"query_id": 92662, "query": "Is everyone seeing the same color as I see?"}
582
+ {"query_id": 116842, "query": "What would happen if I was in the centre of the Earth?"}
583
+ {"query_id": 18691, "query": "Topics in particle cosmology"}
584
+ {"query_id": 44509, "query": "Photon energy - momentum in matter"}
585
+ {"query_id": 81536, "query": "electric field inside a conductor?"}
586
+ {"query_id": 60830, "query": "Why isn't temperature measured in Joules?"}
587
+ {"query_id": 116851, "query": "Why are the 'color-neutral' gluons confined?"}
588
+ {"query_id": 3795, "query": "Why are snowflakes symmetrical?"}
589
+ {"query_id": 112011, "query": "Nonzero ground state energy of the quantum harmonic oscillator"}
590
+ {"query_id": 19548, "query": "Does mass affects accelleration of an object in a sloapy movement?"}
591
+ {"query_id": 3799, "query": "Why is cold fusion considered bogus?"}
592
+ {"query_id": 44974, "query": "Calculating restorative force with Hooke's Law"}
593
+ {"query_id": 112476, "query": "Water Displacement in the Oceans As a result of Global Warming"}
594
+ {"query_id": 69657, "query": "How could vacuum energy cause the expansion of the universe?"}
595
+ {"query_id": 22960, "query": "Flying a toy helicopter inside an accelerating train"}
596
+ {"query_id": 77020, "query": "Are Lorentz force and maxwell's equations independent?"}
597
+ {"query_id": 20303, "query": "Negative chemical potential"}
598
+ {"query_id": 43406, "query": "What constitutes an observation/measurement in QM?"}
599
+ {"query_id": 79685, "query": "If the source of sound is vibration, why can't we \"hear\" a object whose molecules are vibrating?"}
600
+ {"query_id": 83701, "query": "What are the Time Operators in Quantum Mechanics?"}
601
+ {"query_id": 29355, "query": "Reading the Feynman lectures in 2012"}
602
+ {"query_id": 80433, "query": "Derivation of Newton-Euler equations of motion"}
603
+ {"query_id": 90469, "query": "Do all massless particles (e.g. photon, graviton, gluon) necessarily have the same speed $c$?"}
604
+ {"query_id": 59617, "query": "Hurdles in creating (close to) infinite images"}
605
+ {"query_id": 89002, "query": "Why treat complex scalar field and its complex conjugate as two different fields?"}
606
+ {"query_id": 39131, "query": "Light orbiting a massive body"}
607
+ {"query_id": 71503, "query": "What causes a blackbody radiation curve to be continuous?"}
608
+ {"query_id": 93530, "query": "Why is pressure always non directional?"}
609
+ {"query_id": 18670, "query": "ALL \"forces\" as manifestations of properties of space-time"}
610
+ {"query_id": 70651, "query": "Why is the Ampere a base unit and not the Coulomb?"}
611
+ {"query_id": 41211, "query": "What is the difference between a spinor and a vector or a tensor?"}
612
+ {"query_id": 2254, "query": "When water climbs up a piece of paper, where is the energy coming from?"}
613
+ {"query_id": 114887, "query": "Hubble time and its derivation?"}
614
+ {"query_id": 93771, "query": "Understanding field representation of force"}
615
+ {"query_id": 32501, "query": "Many-worlds: how often is the split how many are the universes? (And how do you model this mathematically.)"}
616
+ {"query_id": 61936, "query": "Why does the Boltzmann factor $e^{-E/kT}$ seem to imply that lower energies are more likely?"}
617
+ {"query_id": 83735, "query": "Why do we seek to preserve gauge symmetries after quantization?"}
618
+ {"query_id": 56355, "query": "Antimatter in the universe"}
619
+ {"query_id": 80467, "query": "Why does time reversibility imply equilibrium in a thermodynamic system?"}
620
+ {"query_id": 111382, "query": "Is light electromagnetic waves or quantumn particle waves?"}
621
+ {"query_id": 132043, "query": "Why doesn't the light from galaxies appear stretched?"}
622
+ {"query_id": 68573, "query": "Two balls falling one above the other"}
623
+ {"query_id": 95705, "query": "Why does ice form on bridges even if the temperature is above freezing?"}
624
+ {"query_id": 113548, "query": "Active noise cancellation technology measurements"}
625
+ {"query_id": 16020, "query": "Air flow coming out of a fan feels much stronger than air flow coming in. Why?"}
626
+ {"query_id": 51908, "query": "Why aren't gas planets and stars fuzzy?"}
627
+ {"query_id": 100251, "query": "Linear Algebra For Physicists (Book Recommendations)"}
628
+ {"query_id": 6863, "query": "Why does Fukushima pressure rise?"}
629
+ {"query_id": 69679, "query": "Can solar furnace achieve higher temperature than sun surface?"}
630
+ {"query_id": 44718, "query": "Elastic Collision Between Two Objects"}
631
+ {"query_id": 109060, "query": "Is cosmic background radiation absolute"}
632
+ {"query_id": 77282, "query": "Gauss's (Divergence) theorem in Classical Electrodynamics"}
633
+ {"query_id": 81779, "query": "how does an electric field comes inside a conducting wire inside the circuit?"}
634
+ {"query_id": 59635, "query": "Magnifying Glass-How does it work?"}
635
+ {"query_id": 81787, "query": "Identification of particles and anti-particles"}
636
+ {"query_id": 61948, "query": "Did space and time exist before the Big Bang?"}
637
+ {"query_id": 26066, "query": "Why is there a limit to the intensity of cosmic rays at low energies?"}
638
+ {"query_id": 743, "query": "Suggested reading for renormalization (not only in QFT)"}
639
+ {"query_id": 126610, "query": "Why does Newton's Third Law not preclude any motion at all?"}
640
+ {"query_id": 82874, "query": "Torque direction meaning"}
641
+ {"query_id": 102423, "query": "Rolling disk in inclined plane and flat plane?"}
642
+ {"query_id": 19536, "query": "Is there a Non-perturbative renormalization algorithm?"}
643
+ {"query_id": 126619, "query": "Why do we say that light travels at a speed?"}
644
+ {"query_id": 33822, "query": "Variational Calculus or Tensor Calculus?"}
645
+ {"query_id": 46327, "query": "Flames with no gravity?"}
646
+ {"query_id": 49837, "query": "How do stars look like from space?"}
647
+ {"query_id": 101150, "query": "Ascertain the height an object has fallen from given force exerted and mass"}
648
+ {"query_id": 83070, "query": "What's the shear rate in a turbulent flow?"}
649
+ {"query_id": 68911, "query": "Why do current and electrons flow in opposite directions?"}
650
+ {"query_id": 46324, "query": "To which extent is general relativity a gauge theory?"}
651
+ {"query_id": 10130, "query": "Physics breakthroughs in the last two decades"}
652
+ {"query_id": 4453, "query": "How could spacetime become discretised at the Planck scale?"}
653
+ {"query_id": 128875, "query": "How to find the potential energy?"}
654
+ {"query_id": 126694, "query": "Is the Speed of Light an universal spacetime constant, the velocity of electromagnetic waves, or of photons?"}
655
+ {"query_id": 126691, "query": "What would the properties of a particle be that would allow light to orbit it?"}
656
+ {"query_id": 95053, "query": "Radiation\u2013 white vs black house, hot or cool?"}
657
+ {"query_id": 10139, "query": "Determining a radio signal's range"}
658
+ {"query_id": 12559, "query": "What conservation law corresponds to Lorentz boosts?"}
659
+ {"query_id": 127538, "query": "Are there any applications of elementary number theory to science?"}
660
+ {"query_id": 134081, "query": "Why graviton is spin 2 instead of spin 1?"}
661
+ {"query_id": 33258, "query": "What is invisible to x-rays?"}
662
+ {"query_id": 78965, "query": "General Relativity and Time Dilation"}
663
+ {"query_id": 53663, "query": "Learning roadmap for solid state physics"}
664
+ {"query_id": 100056, "query": "Why do electrons and protons attract each other?"}
665
+ {"query_id": 102477, "query": "Physical interpretation of Fermi golden rule?"}
666
+ {"query_id": 86345, "query": "Intuitive understanding of centripetal vs. centrifugal force"}
667
+ {"query_id": 129715, "query": "Quantum Mechanics and Direction of time"}
668
+ {"query_id": 12557, "query": "Is apparent horizon curvature lesser due to refraction of light in the atmosphere?"}
669
+ {"query_id": 46798, "query": "The meaning of imaginary time"}
670
+ {"query_id": 66980, "query": "Measurements and simultaneity"}
671
+ {"query_id": 12560, "query": "Software for simulating 3D Newtonian dynamics of simple geometric objects (with force fields)"}
672
+ {"query_id": 73279, "query": "Gravitational slingshot of light using a black hole/massive object"}
673
+ {"query_id": 7732, "query": "If the Sun were to suddenly become a black hole of the same mass, what would the orbital periods of the planets be?"}
674
+ {"query_id": 6400, "query": "Are tidal power plants slowing down Earth's rotation?"}
675
+ {"query_id": 35660, "query": "Is there a difference between a postulate and a principle in physics?"}
676
+ {"query_id": 73275, "query": "Why stars twinkle but planets don't?"}
677
+ {"query_id": 2041, "query": "How are classical optics phenomena explained in QED (Snell's law)?"}
678
+ {"query_id": 123173, "query": "Kinematics question - Newton's Law of Motion"}
679
+ {"query_id": 2281, "query": "Maximum theoretical data density"}
680
+ {"query_id": 25637, "query": "How to correct flares and sharply focus on my telescope when viewing planets."}
681
+ {"query_id": 24540, "query": "Why do Calabi-Yau manifolds crop up in string theory, and what their most useful and suggestive form?"}
682
+ {"query_id": 101398, "query": "electric charge is a intrinsic property how is there a prpoer way to explain electric charge?"}
683
+ {"query_id": 77867, "query": "Extra dimensions and the big bang"}
684
+ {"query_id": 104423, "query": "Calculating impact velocity and time with non-uniform acceleration"}
685
+ {"query_id": 44130, "query": "What are the properties and characteristics of a single Quantum?"}
686
+ {"query_id": 21487, "query": "Train crash: are these situations alike?"}
687
+ {"query_id": 100041, "query": "Caldeira-Leggett Dissipation: cannot get it"}
688
+ {"query_id": 102222, "query": "How does a half-life work?"}
689
+ {"query_id": 2056, "query": "Why is it that using cell phone can invite lighting strike?"}
690
+ {"query_id": 118807, "query": "In quantum mechanics, why position and momentum are related by Fourier Transformation(only)?"}
691
+ {"query_id": 2051, "query": "Why do we think there are only three generations of fundamental particles?"}
692
+ {"query_id": 78741, "query": "What state is fire? Solid, Liquid or Gas or Plasma?"}
693
+ {"query_id": 78500, "query": "Linearized equations"}
694
+ {"query_id": 2289, "query": "Why does Guillotine have of 45 degreed blade rather than the one parallel to the ground?"}
695
+ {"query_id": 86367, "query": "Is there a way I can prevent static electricty buildup from shocking me?"}
696
+ {"query_id": 88545, "query": "Spring constant"}
697
+ {"query_id": 100037, "query": "Do ideal gases at zero Kelvin have potential energy?"}
698
+ {"query_id": 13624, "query": "Why are higher order Lagrangians called 'non-local'?"}
699
+ {"query_id": 11686, "query": "finding angular velocity and regular velocity when bouncing off a surface with friction"}
700
+ {"query_id": 78508, "query": "Why does Quantum Field Theory use Lagrangians rather than Hamiltonains?"}
701
+ {"query_id": 112270, "query": "Thermo-Emf variation with temperature"}
702
+ {"query_id": 68940, "query": "Virtual photons, what makes them virtual?"}
703
+ {"query_id": 110077, "query": "Gauge Higgs Unification"}
704
+ {"query_id": 43023, "query": "Why does the moon look bigger at the horizon?"}
705
+ {"query_id": 66527, "query": "Why didn't a black hole form right after the Big Bang?"}
706
+ {"query_id": 67616, "query": "Spin - where does it come from?"}
707
+ {"query_id": 73299, "query": "General Relativity and the effect of mass on time"}
708
+ {"query_id": 2066, "query": "Why does adding solutes to pure water lower the the specific heat?"}
709
+ {"query_id": 130985, "query": "Can you run away from your shadow?"}
710
+ {"query_id": 73051, "query": "Do cosmologically redshifted photons violate energy conservation?"}
711
+ {"query_id": 107919, "query": "galaxies fading away after time"}
712
+ {"query_id": 130509, "query": "Angular Momentum Conservation Definition"}
713
+ {"query_id": 35645, "query": "How does the curiosity rover get it's power?"}
714
+ {"query_id": 542, "query": "Chance of objects going against greater entropy?"}
715
+ {"query_id": 78732, "query": "Chemistry from a physical perspective"}
716
+ {"query_id": 30198, "query": "How to bend light?"}
717
+ {"query_id": 88537, "query": "Steps involved in photon emission"}
718
+ {"query_id": 10362, "query": "How does non-commutativity lead to uncertainty?"}
719
+ {"query_id": 105735, "query": "Rutherfords alpha scattering conclutions?"}
720
+ {"query_id": 44351, "query": "Why are we not using thorium for energy?"}
721
+ {"query_id": 86597, "query": "QFT as a rigorous mathematical theory"}
722
+ {"query_id": 87686, "query": "Will the moon really escape the Earth?"}
723
+ {"query_id": 56966, "query": "Why do fields decrease with distance?"}
724
+ {"query_id": 111172, "query": "What is the difference between light and visible light?"}
725
+ {"query_id": 63023, "query": "I read a book saying bernoulli's flight equations didn't have as much impact on lift as most people think"}
726
+ {"query_id": 68955, "query": "How does dark matter halo outside a galaxy help to explain galaxy rotation curve?"}
727
+ {"query_id": 44586, "query": "How does an inflationary universe solve the Flatness Problem, Horizon Problem and Monopole Problem?"}
728
+ {"query_id": 65688, "query": "Group Theory in General Relativity"}
729
+ {"query_id": 91972, "query": "Stationary action with maximized action"}
730
+ {"query_id": 5587, "query": "A pendulum clock problem"}
731
+ {"query_id": 66538, "query": "Time dilation at a black hole"}
732
+ {"query_id": 75002, "query": "Travel duration from Earth to a star at 9.8 m/s\u00b2 acceleration"}
733
+ {"query_id": 56973, "query": "Why does the speed of light $c$ have the value it does?"}
734
+ {"query_id": 76100, "query": "Disk spinning at the speed of light"}
735
+ {"query_id": 312, "query": "Particle physics getting started"}
736
+ {"query_id": 32122, "query": "Phase shift of 180 degrees on reflection from optically denser medium"}
737
+ {"query_id": 32120, "query": "Why do we still not have an exact definition for a kilogram?"}
738
+ {"query_id": 90635, "query": "Freezing water in a closed container"}
739
+ {"query_id": 43491, "query": "Is the geometric formulation of Hamiltonian mechanics really necessary?"}
740
+ {"query_id": 54317, "query": "In what limit does string theory reproduce general relativity?"}
741
+ {"query_id": 87476, "query": "Could two different bases of a Hilbert space have different cardinality?"}
742
+ {"query_id": 61086, "query": "How do we know that light is massless?"}
743
+ {"query_id": 12756, "query": "A flying fly inside a sealed box on a scale"}
744
+ {"query_id": 31039, "query": "What is gravitational speed for a black hole?"}
745
+ {"query_id": 12995, "query": "Virtual particle production in space-time."}
746
+ {"query_id": 28093, "query": "Relation between water flow and pressure"}
747
+ {"query_id": 28094, "query": "Time for two objects to gravitationally attract each other"}
748
+ {"query_id": 129991, "query": "Is \"now\" the bounding edge of the universe in the time dimension?"}
749
+ {"query_id": 6682, "query": "Software for geometrical optics"}
750
+ {"query_id": 135377, "query": "A question on quantum computing?"}
751
+ {"query_id": 63278, "query": "What counts as \"observation\" in Schr\u00f6dinger's Cat, and why are superpositions possible?"}
752
+ {"query_id": 106652, "query": "Does the Sun produce audible sound?"}
753
+ {"query_id": 22566, "query": "Question Based On Units And Measurements Involving Lengths"}
754
+ {"query_id": 51295, "query": "Different perspective in Quantum mechanics"}
755
+ {"query_id": 56983, "query": "Electric field outside nonconducting sphere"}
756
+ {"query_id": 105316, "query": "Why color of dress changes when water falls?"}
757
+ {"query_id": 13851, "query": "Can you split a photon?"}
758
+ {"query_id": 104468, "query": "How does atmospheric pressure work?"}
759
+ {"query_id": 11673, "query": "Algorithm of Lightning Strikes?"}
760
+ {"query_id": 135145, "query": "Change in momentum"}
761
+ {"query_id": 31029, "query": "How can a wooden spoon be used to prevent water from over boiling?"}
762
+ {"query_id": 9708, "query": "Is fire matter or energy?"}
763
+ {"query_id": 135382, "query": "Is $V= V_1 + V_2$? horrible question but im confused"}
764
+ {"query_id": 23625, "query": "How to deduce the theorem of addition of velocities?"}
765
+ {"query_id": 128891, "query": "Airplane on a treadmill"}
766
+ {"query_id": 46743, "query": "Are galactic stars spiraling inwards?"}
767
+ {"query_id": 103110, "query": "A black torch to darken everything"}
768
+ {"query_id": 43232, "query": "Force applied off center on an object"}
769
+ {"query_id": 119935, "query": "Maximum helicopter height"}
770
+ {"query_id": 130936, "query": "Why do the electron in Bohr's principal quantum levels or ground state do not emit radiation?"}
771
+ {"query_id": 52391, "query": "Is the Pauli exclusion principle as Brian Cox described it?"}
772
+ {"query_id": 52396, "query": "Why not an Electric Theory of Everything?"}
773
+ {"query_id": 335, "query": "Is electricity instantaneous?"}
774
+ {"query_id": 76367, "query": "Water coolso object by heat absorption"}
775
+ {"query_id": 52155, "query": "Why lagrangian is negative number?"}
776
+ {"query_id": 10311, "query": "Does it exist a free good molecule / atom simulation software?"}
777
+ {"query_id": 67880, "query": "Why do metal objects in microwaves spark?"}
778
+ {"query_id": 23879, "query": "Why do non-Newtonian fluids go hard when having a sudden force exerted on them?"}
779
+ {"query_id": 101188, "query": "How to model a rising helium balloon?"}
780
+ {"query_id": 4289, "query": "Is Gravity an entropic force after all?"}
781
+ {"query_id": 19370, "query": "What would an observer see if he/she flew toward a clock at relativistic speeds?"}
782
+ {"query_id": 116657, "query": "Force applied on the ground"}
783
+ {"query_id": 22542, "query": "Measuring extra-dimensions"}
784
+ {"query_id": 29176, "query": "Where can I find beginner's information about quantum mechanics?"}
785
+ {"query_id": 114483, "query": "Smolin on Cosmological selection and neutron stars"}
786
+ {"query_id": 90646, "query": "What is the relation between electromagnetic wave and photon?"}
787
+ {"query_id": 71901, "query": "Why aren't superconductors shiny?"}
788
+ {"query_id": 74517, "query": "Does a 27 hp engine output the same amount of energy as lifting a 1 ton stone block almost 3 meters per second?"}
789
+ {"query_id": 133942, "query": "Time, distance perception"}
790
+ {"query_id": 47379, "query": "What is the weight equation through general relativity?"}
791
+ {"query_id": 48469, "query": "Intuitive meaning of Hilbert Space formalism"}
792
+ {"query_id": 130676, "query": "What do we mean by electromagnetic charge?"}
793
+ {"query_id": 104144, "query": "Why is the camera not the culprit?"}
794
+ {"query_id": 47135, "query": "Displacement of a Rock Thrown Overboard"}
795
+ {"query_id": 47136, "query": "Cubic symmetry and a stiffness tensor"}
796
+ {"query_id": 133707, "query": "How can you calculate how fast a spinning ring/cylinder will accelerate a mass via gravitomagnetism?"}
797
+ {"query_id": 57181, "query": "What are the potential technological advances that the discovery of the Higgs boson may unlock?"}
798
+ {"query_id": 133703, "query": "Relating Quantum Mechanics to Classic Electromagnetism"}
799
+ {"query_id": 63626, "query": "How can I understand a Vortex Tube and its efficiency?"}
800
+ {"query_id": 87829, "query": "How Can There Be Magnetic Force Without Velocity"}
801
+ {"query_id": 86989, "query": "What \"time\" is it for or on Voyager 1? If you could be \"still\" in the Universe who fast would time be?"}
802
+ {"query_id": 117223, "query": "Photon speed going from $0$ to $c$ initially?"}
803
+ {"query_id": 357, "query": "Home experiments to derive the speed of light?"}
804
+ {"query_id": 11188, "query": "Can a particle be *physically* observed inside a quantum barrier?"}
805
+ {"query_id": 121717, "query": "Are gravitational waves transverse or longitudinal waves, or do they have unique/unknown properties?"}
806
+ {"query_id": 8420, "query": "Strongest force in nature"}
807
+ {"query_id": 9751, "query": "Why don't we consider centrifugal force on a mass placed on earth?"}
808
+ {"query_id": 47128, "query": "exponential potential $ \\exp(|x|) $"}
809
+ {"query_id": 105483, "query": "Reducing the Tsunami impact using Nuclear bombs"}
810
+ {"query_id": 130686, "query": "Why magnetic field generates around current carrying wire?"}
811
+ {"query_id": 11194, "query": "Wind generators - why so few blades?"}
812
+ {"query_id": 98714, "query": "How are symmetries precisely defined?"}
813
+ {"query_id": 29956, "query": "Book covering Topology required for physics and applications"}
814
+ {"query_id": 117205, "query": "How does the evolution of a solar system not break the second law of thermodynamics?"}
815
+ {"query_id": 61455, "query": "How can a single slit diffraction produce an interference pattern?"}
816
+ {"query_id": 134809, "query": "Projectile with air resistance"}
817
+ {"query_id": 61699, "query": "Why are alpha particles such a prominent form of radiation and not other types of nucleon arrangement?"}
818
+ {"query_id": 133714, "query": "Derivation of formula of potential energy by a conservative force"}
819
+ {"query_id": 25110, "query": "Why are orbits elliptical?"}
820
+ {"query_id": 105239, "query": "How does a black hole slow time?"}
821
+ {"query_id": 12046, "query": "Colors from a computer vs. colors from visible spectrum of sunlight"}
822
+ {"query_id": 16885, "query": "Inertial frames of reference"}
823
+ {"query_id": 73209, "query": "Is the total angular momentum of the universe zero?"}
824
+ {"query_id": 106543, "query": "Why earth looks always flat when it is round"}
825
+ {"query_id": 96562, "query": "interaction of mathematical structures (rephrased)"}
826
+ {"query_id": 98980, "query": "The speed of light as it approaches a massive body"}
827
+ {"query_id": 35139, "query": "What is the possibility of a railgun assisted orbital launch?"}
828
+ {"query_id": 86528, "query": "How functions become operators in quantum mechanics?"}
829
+ {"query_id": 24231, "query": "When Physicists thought neutrinos were faster than the speed of light"}
830
+ {"query_id": 53602, "query": "What is movement through time?"}
831
+ {"query_id": 12012, "query": "Is spacetime simply connected?"}
832
+ {"query_id": 30922, "query": "What's the difference between Fermi Energy and Fermi Level?"}
833
+ {"query_id": 38404, "query": "How is Gauss' Law (integral form) arrived at from Coulomb's Law, and how is the differential form arrived at from that?"}
834
+ {"query_id": 13349, "query": "Online lecture videos on QCD?"}
835
+ {"query_id": 76726, "query": "If I travel close to the speed of light and come back, why is everyone else dead, and not me?"}
836
+ {"query_id": 14436, "query": "How do you prove $S=-\\sum p\\ln p$?"}
837
+ {"query_id": 52515, "query": "What is a natural movement of a ball on a upward curve (the two arrow lines pointing upward) given no external force?"}
838
+ {"query_id": 17944, "query": "How does the Higgs mechanism work?"}
839
+ {"query_id": 30909, "query": "Simulator for electrostatics"}
840
+ {"query_id": 7112, "query": "Why do people still talk about bohmian mechanics/hidden variables"}
841
+ {"query_id": 16620, "query": "Force on rope with accelerating mass on pulley"}
842
+ {"query_id": 47104, "query": "What evidence is there for the Big Bang Theory?"}
843
+ {"query_id": 129654, "query": "Antiparticles as \"holes\" of the quantum fields?"}
844
+ {"query_id": 47105, "query": "Amplitude of an electromagnetic wave containing a single photon"}
845
+ {"query_id": 48435, "query": "Quick introduction to electromagnetism / Maxwell's equations"}
846
+ {"query_id": 74788, "query": "Can someone give an intuitive way of understanding why Gauss's law holds?"}
847
+ {"query_id": 97886, "query": "Is powered delivered to an Incandescent light bulb changing with time?"}
848
+ {"query_id": 75876, "query": "Effects of magnetic fields on our bodies"}
849
+ {"query_id": 32096, "query": "What exactly is a kilogram-meter?"}
850
+ {"query_id": 27753, "query": "Baryon asymmetry"}
851
+ {"query_id": 66922, "query": "Quarks and anti-quarks forming particles"}
852
+ {"query_id": 70186, "query": "Are Newton's \"laws\" of motion laws or definitions of force and mass?"}
853
+ {"query_id": 94133, "query": "Acceleration reaches speed of light?"}
854
+ {"query_id": 94132, "query": "Geodesic for Electromagnetic forces"}
855
+ {"query_id": 95460, "query": "Why do springs have helical shapes? Why do we not use a cylindrical rod as a spring?"}
856
+ {"query_id": 86517, "query": "Are there anti entropic agents"}
857
+ {"query_id": 147, "query": "What are some useful ways to imagine the concept of spin as it relates to subatomic particles?"}
858
+ {"query_id": 9526, "query": "Helicopter in an Elevator"}
859
+ {"query_id": 129408, "query": "Can pressure in bars be equated to flow in litres per second?"}
860
+ {"query_id": 16626, "query": "Are there any good audio recordings of educational physics material?"}
861
+ {"query_id": 109636, "query": "Why are people weightless whilst in orbit around the Earth? ISS? Satellites?"}
862
+ {"query_id": 64751, "query": "Derivation of the Biot-Savart Law"}
863
+ {"query_id": 36440, "query": "What causes an electric shock - Current or Voltage?"}
864
+ {"query_id": 37772, "query": "Why doesn't a fly fall off the wall?"}
865
+ {"query_id": 29901, "query": "How is traveling back in time possible in theory according to some scientists?"}
866
+ {"query_id": 63424, "query": "Energy needed to raise energy level of an atom?"}
867
+ {"query_id": 111959, "query": "How can we know that a black hole exists?"}
868
+ {"query_id": 391, "query": "Is anti-matter matter going backwards in time?"}
869
+ {"query_id": 29903, "query": "Why do people recommend wider tyres in car for better road grip?"}
870
+ {"query_id": 6271, "query": "Laws and theories"}
871
+ {"query_id": 122841, "query": "Leg Press & Actual Lifted Weight"}
872
+ {"query_id": 119441, "query": "Time dilation at the Big Bang"}
873
+ {"query_id": 156, "query": "How are the northern lights produced?"}
874
+ {"query_id": 61000, "query": "Phase shift of resonance"}
875
+ {"query_id": 13325, "query": "What is the minimum amount of fissile mass required to acheive criticality?"}
876
+ {"query_id": 135096, "query": "How a fan moves air?"}
877
+ {"query_id": 104196, "query": "The sound when boiling water"}
878
+ {"query_id": 96335, "query": "Can light be launched outwards from an event horizon?"}
879
+ {"query_id": 128389, "query": "Physical reason why (hot) objects glow?"}
880
+ {"query_id": 106378, "query": "Centrifugal force when there is no friction"}
881
+ {"query_id": 98516, "query": "What is the nature of energy?"}
882
+ {"query_id": 98758, "query": "Does a black hole singularity last essentially no intrinsic time?"}
883
+ {"query_id": 73234, "query": "Nuclear Fission and Fusion"}
884
+ {"query_id": 22046, "query": "Books for Condensed Matter Physics"}
885
+ {"query_id": 110615, "query": "What does 1/k represent regarding Newtons Law of Cooling?"}
886
+ {"query_id": 71292, "query": "Why does a cork float to the side of a glass?"}
887
+ {"query_id": 119673, "query": "Can we use quantum entanglement as a way to send information or data?"}
888
+ {"query_id": 11396, "query": "Can one do the maths of physics without using $\\sqrt{-1}$?"}
889
+ {"query_id": 51213, "query": "How would it be to look at the sky if the earth were near the edge of the universe?"}
890
+ {"query_id": 21194, "query": "Problem on nuclear physics radioactivity"}
891
+ {"query_id": 83265, "query": "Explanation of photon reflection"}
892
+ {"query_id": 52306, "query": "Calculation of torque for motor used in 4 wheel robot"}
893
+ {"query_id": 107671, "query": "If 'pure energy' is photons, and energy is conserved, how can matter and antimatter (electrons and positrons) annihilate into photons and vice-versa?"}
894
+ {"query_id": 109850, "query": "Was the mass of the universe the same when it first began as it is now?"}
895
+ {"query_id": 105013, "query": "Could a super conductor actually be used to repel gravity?"}
896
+ {"query_id": 131505, "query": "Universal speed limit"}
897
+ {"query_id": 74333, "query": "Can the laws of classical mechanics be derived from quantum mechanics?"}
898
+ {"query_id": 133924, "query": "What if there was a hole between earth poles"}
899
+ {"query_id": 22010, "query": "The square in the Newton's law of universal gravitation is really a square?"}
900
+ {"query_id": 22252, "query": "Resistor circuit that isn't parallel or series"}
901
+ {"query_id": 52555, "query": "Does light reflect if incident at exactly the critical angle?"}
902
+ {"query_id": 8248, "query": "Did the researchers at Fermilab find a fifth force?"}
903
+ {"query_id": 37981, "query": "Is there a way to save electricity from lightning?"}
904
+ {"query_id": 131758, "query": "Visualisation of formation of electromagnetic waves"}
905
+ {"query_id": 63456, "query": "Does the slinky base stay perfectly level during the initial free fall"}
906
+ {"query_id": 99865, "query": "What are direction ratios?"}
907
+ {"query_id": 132602, "query": "The relationship between angular and linear momentum"}
908
+ {"query_id": 23358, "query": "Hubble time, the age of the Universe and expansion rate"}
909
+ {"query_id": 23118, "query": "Are we inside a black hole?"}
910
+ {"query_id": 1601, "query": "Classical mechanics without coordinates book"}
911
+ {"query_id": 129206, "query": "Why do physical bodies in the universe follow the law of physics ( or any rule/pattern ) ?"}
912
+ {"query_id": 12463, "query": "Einstein's postulates <==> Minkowski space. In layman's terms"}
913
+ {"query_id": 36412, "query": "What gives matter Gravitational Mass?"}
914
+ {"query_id": 61031, "query": "If photons can be absorbed by electrons, wouldn't that mean light has a charge?"}
915
+ {"query_id": 13557, "query": "History of interpretation of Newton's first law"}
916
+ {"query_id": 87880, "query": "Isn't Dark Matter just an Indication that Relativity breaks down when describing large masses?"}
917
+ {"query_id": 73825, "query": "The future of supersymmetry"}
918
+ {"query_id": 131364, "query": "Why can microwave (in microwave oven) heat the food but wifi can't?"}
919
+ {"query_id": 68234, "query": "Experimental study of the Photoelectric effect"}
920
+ {"query_id": 68233, "query": "Electricity directly from heating a material"}
921
+ {"query_id": 43859, "query": "Would it be possible to transmit information through gravitational waves?"}
922
+ {"query_id": 28699, "query": "Superconductivity reasons (Intutitive)"}
923
+ {"query_id": 193, "query": "Best books for mathematical background?"}
924
+ {"query_id": 9340, "query": "Does the renormalization group apply to string theory?"}
925
+ {"query_id": 105071, "query": "Can a gravitational field be diluted or shielded?"}
926
+ {"query_id": 61845, "query": "Some basic questions about electric field & nucleus"}
927
+ {"query_id": 110669, "query": "Is gravitational time dilation different from other forms of time dilation?"}
928
+ {"query_id": 128196, "query": "Can statistical mechanics explain the second law completely?"}
929
+ {"query_id": 198, "query": "Do current models of particle physics explain the chemical properties of elements/compounds?"}
930
+ {"query_id": 79136, "query": "Buzzing/Vibration in body under power lines"}
931
+ {"query_id": 71639, "query": "Is it possible for a photon to be at rest?"}
932
+ {"query_id": 107023, "query": "Sum of independent errors"}
933
+ {"query_id": 22923, "query": "Slit screen and wave-particle duality"}
934
+ {"query_id": 39344, "query": "Helpful tutorials on force"}
935
+ {"query_id": 18662, "query": "Why can't airplanes just keep going up?"}
936
+ {"query_id": 72983, "query": "Optics of a rotated spectacle lens"}
937
+ {"query_id": 41424, "query": "What does \"the ${\\bf N}$ of a group\" mean?"}
938
+ {"query_id": 92571, "query": "Would Beetee's electrocution plan work and kill the tributes in the lake?"}
939
+ {"query_id": 129030, "query": "Is gravitational acceleration less affected by relativistic mass increase?"}
940
+ {"query_id": 20744, "query": "Stability of neutron"}
941
+ {"query_id": 29794, "query": "Why are coordinates and velocities sufficient to completely determine the state and determine the subsequent motion of a mechanical system?"}
942
+ {"query_id": 83866, "query": "Bathroom photons from the edge at the universe"}
943
+ {"query_id": 122635, "query": "How can ice cubes contain gas bubbles?"}
944
+ {"query_id": 60763, "query": "Can a dot of light travel faster than the speed of light?"}
945
+ {"query_id": 31869, "query": "Designing a plausible faster than light drive: the Space Skip Drive"}
946
+ {"query_id": 71649, "query": "Evidence that the Solar System is expanding like the Universe?"}
947
+ {"query_id": 88077, "query": "Is the Higgs particle the final one predicted by the Standard Model?"}
948
+ {"query_id": 9122, "query": "What is the difference between implicit and explicit time dependence e.g. $\\frac{\\partial \\rho}{\\partial t}$ and $\\frac{d \\rho} {dt}$?"}
949
+ {"query_id": 108569, "query": "Does the unit of Inertia include radians?"}
950
+ {"query_id": 110401, "query": "Number of planks required to stop the bullet"}
951
+ {"query_id": 112820, "query": "Archimedes' principle: innacurate terminology?"}
952
+ {"query_id": 133564, "query": "Why photon has a wave nature?"}
953
+ {"query_id": 97812, "query": "Is the system of equations of electrostatics underdetermined or overdetermined?"}
954
+ {"query_id": 38246, "query": "Formulas for compressibility of solids (physics)"}
955
+ {"query_id": 72510, "query": "Pendulum period of different masses"}
956
+ {"query_id": 29766, "query": "Why does photon have only two possible eigenvalues of helicity?"}
957
+ {"query_id": 62711, "query": "What happens to things when things get crushed in a blackhole"}
958
+ {"query_id": 2721, "query": "What is the symmetry which is responsible for preservation/conservation of electrical charges?"}
959
+ {"query_id": 29523, "query": "Pressure of sealed in liquid nitrogen"}
960
+ {"query_id": 121536, "query": "Is it possible to have a perfectly black material?"}
961
+ {"query_id": 95864, "query": "What is the entropy of the universe today?"}
962
+ {"query_id": 14044, "query": "Can superconducting magnets fly (or repel the earth's core)?"}
963
+ {"query_id": 19970, "query": "Does the scientific community consider the Loschmidt paradox resolved? If so what is the resolution?"}
964
+ {"query_id": 55190, "query": "Flushing water-Is it related to Coriolis force?"}
965
+ {"query_id": 63811, "query": "Is the universe fundamentally deterministic?"}
966
+ {"query_id": 128161, "query": "Why does light travel at the same speed when measured by a moving observer?"}
967
+ {"query_id": 55195, "query": "Calculating a 2D collision between two perfectly circular disks"}
968
+ {"query_id": 9371, "query": "Why would Antimatter behave differently via Gravity?"}
969
+ {"query_id": 1888, "query": "Balloons and lifting gases"}
970
+ {"query_id": 2974, "query": "If the earth left the solar system for interstellar space. How long would it take for atmosphere to freeze"}
971
+ {"query_id": 57137, "query": "How soon that a force affect another object?"}
972
+ {"query_id": 38236, "query": "Does the sign of $\\Delta x$ matter in this time dilation calculation?"}
973
+ {"query_id": 69350, "query": "Drag force at high speeds"}
974
+ {"query_id": 51838, "query": "Why do tuning forks have two prongs?"}
975
+ {"query_id": 94567, "query": "Statistical Entropy and Information theory"}
976
+ {"query_id": 9389, "query": "Good book about elementary particles for high school students?"}
977
+ {"query_id": 67188, "query": "What is the \"Event Horizon\" of a black hole"}
978
+ {"query_id": 72535, "query": "Are there any naturally occurring perfect circles?"}
979
+ {"query_id": 95411, "query": "Photoelectric Effect, Why can't two quanta interact with an electron at the same time?"}
980
+ {"query_id": 14255, "query": "Experimental evidence for parallel universes"}
981
+ {"query_id": 70597, "query": "What is the required prerequisite knowledge of QM, for starting QFT?"}
982
+ {"query_id": 26478, "query": "Can black holes actually merge?"}
983
+ {"query_id": 27326, "query": "Uniqueness of eigenvector representation in a complete set of compatible observables"}
984
+ {"query_id": 113973, "query": "Is it possible to create matter?"}
985
+ {"query_id": 61643, "query": "Does more rain strike a vehicle while moving or while stopped (or neither)?"}
986
+ {"query_id": 28417, "query": "Why does the light bulb's brightness decrease?"}
987
+ {"query_id": 112406, "query": "Why the orbital angular momentum equal zero for electron in s state? does it mean that the electron doesn't orbiting in s"}
988
+ {"query_id": 28895, "query": "Why is the sky not purple?"}
989
+ {"query_id": 25145, "query": "Observing lunar lander and footprints on the moon?"}
990
+ {"query_id": 46089, "query": "Elastic collision in two dimensions"}
991
+ {"query_id": 67186, "query": "Why do Lagrangians and Hamiltonians give the equations of motion?"}
992
+ {"query_id": 3833, "query": "Age of the Earth and the star that preceded the Sun"}
993
+ {"query_id": 119284, "query": "Experimental proof of the principle of superposition in QM"}
994
+ {"query_id": 111546, "query": "Can I measure a journey time < 100 years on a 100 light year voyage?"}
995
+ {"query_id": 72549, "query": "Where does mass come from?"}
996
+ {"query_id": 95889, "query": "Why do surfaces act like barriers for electrons?"}
997
+ {"query_id": 68289, "query": "Is there anything smaller than a quark?"}
998
+ {"query_id": 72788, "query": "Uncertainty and wave-trains"}
999
+ {"query_id": 91286, "query": "Diffraction by a lens"}
1000
+ {"query_id": 113722, "query": "Can nuclear transmutation be observed in real time?"}
1001
+ {"query_id": 70123, "query": "Can a submerged place in the sea have huge air pockets?"}
1002
+ {"query_id": 111784, "query": "Is there any relationship between gauge field and spin connection?"}
1003
+ {"query_id": 57390, "query": "Validity of naively computing the de Broglie wavelength of a macroscopic object"}
1004
+ {"query_id": 16206, "query": "Why you need a graviton when you have the higgs boson?"}
1005
+ {"query_id": 103931, "query": "Does light color change when refracting?"}
1006
+ {"query_id": 31827, "query": "How does Annihilation work?"}
1007
+ {"query_id": 30732, "query": "How does the Higgs Boson gain mass itself?"}
1008
+ {"query_id": 81480, "query": "Why is the wave function complex?"}
1009
+ {"query_id": 112866, "query": "If I'm floating in space and I turn on a flashlight, will I accelerate?"}
1010
+ {"query_id": 111530, "query": "Would atmosphere of Jupiter blow up if I launched a atomic bomb there?"}
1011
+ {"query_id": 112629, "query": "Amateur's question on Black Holes"}
1012
+ {"query_id": 110207, "query": "While Space-man lives for 1 day, then how long does Earth-man live ? 1000 years or 1 second?"}
1013
+ {"query_id": 101725, "query": "The nature of the gravity force: Is it attractive or repulsive between positive and negative mass?"}
1014
+ {"query_id": 101727, "query": "How does displacement current come about?"}
1015
+ {"query_id": 123513, "query": "Doughnut magnet"}
1016
+ {"query_id": 60336, "query": "Facts About Quarks Electric Charge"}
1017
+ {"query_id": 82125, "query": "Is the universe immediately dependent upon the past?"}
1018
+ {"query_id": 16415, "query": "Conveyor scales modeling"}
1019
+ {"query_id": 13388, "query": "At what speed does our universe expand?"}
1020
+ {"query_id": 125938, "query": "I still don't understand how a gas with an equation of state f(T,p,V)=0 can change if 2 state functions are fixed?"}
1021
+ {"query_id": 4704, "query": "Black hole analog experiment?"}
1022
+ {"query_id": 131352, "query": "Why does a motor draw more current stopped or under load?"}
1023
+ {"query_id": 132440, "query": "If atoms have specific energy levels, why do opaque solids absorb all visible light, not just some?"}
1024
+ {"query_id": 70147, "query": "Why do cosmic bodies revolve?"}
1025
+ {"query_id": 47389, "query": "Does Bernoulli's principle hold in moving reference frames?"}
1026
+ {"query_id": 25378, "query": "How vacuous is intergalactic space?"}
1027
+ {"query_id": 28647, "query": "Why is matter drawn into a black hole condensed into a single point within the singularity?"}
1028
+ {"query_id": 132449, "query": "Why do we fall down when the bicycle slows down?"}
1029
+ {"query_id": 78095, "query": "As the earth rotates around itself, does this have any effect on the dynamics of flights?"}
1030
+ {"query_id": 8081, "query": "What happens to chemical compunds that include radioactive nuclei, when those decay?"}
1031
+ {"query_id": 122413, "query": "Help explain how direction change relates to acceleration"}
1032
+ {"query_id": 123743, "query": "Problem about entropy"}
1033
+ {"query_id": 1686, "query": "Why does the (relativistic) mass of an object increase when its speed approaches that of light?"}
1034
+ {"query_id": 1442, "query": "If time standard clocks and any memories about the time standard are destroyed, can we recover the time standard again?"}
1035
+ {"query_id": 1683, "query": "Mechanics around a rail tank wagon"}
1036
+ {"query_id": 82599, "query": "quantum mechanics and canonical conjugate"}
1037
+ {"query_id": 36498, "query": "How does the Hubble Redshift work?"}
1038
+ {"query_id": 13157, "query": "What is a field, really?"}
1039
+ {"query_id": 18602, "query": "What exactly is the 'observer' in physics and/or quantum mechanics?"}
cqadupstack-programmers.jsonl ADDED
@@ -0,0 +1,876 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 180012, "query": "Is there any reason not to go directly from client-side Javascript to a database?"}
2
+ {"query_id": 40063, "query": "Should character encodings besides UTF-8 (and maybe UTF-16/UTF-32) be deprecated?"}
3
+ {"query_id": 238325, "query": "Is it okay to not completely understand code functionality?"}
4
+ {"query_id": 136774, "query": "Flipping the desired bit of an integer number"}
5
+ {"query_id": 111475, "query": "C++ Renaissance - marketing slogan?"}
6
+ {"query_id": 18371, "query": "How do you interview someone with more experience than you?"}
7
+ {"query_id": 205638, "query": "When is a catch clause empty"}
8
+ {"query_id": 102518, "query": "What are the benefits and disadvantages in the approaches of C#, Java and Scala to Closures/Lambdas/...?"}
9
+ {"query_id": 167277, "query": "How is it possible to write the compiler of a programming language with that language itself"}
10
+ {"query_id": 207815, "query": "Why don't we have a non-turing complete general purpose language yet?"}
11
+ {"query_id": 126965, "query": "Learning Django by example"}
12
+ {"query_id": 123456, "query": "What are the most needed skills for someone entering the workforce as a software engineer?"}
13
+ {"query_id": 201041, "query": "Programming against a protocol in Objective-C"}
14
+ {"query_id": 93826, "query": "How do I explain \"Recursion\" to a 8 years old kid?"}
15
+ {"query_id": 237226, "query": "Designing XML - confused between attributes and elements"}
16
+ {"query_id": 250203, "query": "Refactoring previous intern's noodle code with future interns in mind"}
17
+ {"query_id": 102999, "query": "Should we use python 2.6 or 2.7 or 3.x?"}
18
+ {"query_id": 235283, "query": "How To Invoke A Method When It's Class is Accessed (Any Method) - \"OnClassEnter\""}
19
+ {"query_id": 185712, "query": "Bridge Design Pattern - I still don't get it"}
20
+ {"query_id": 138726, "query": "What are proven advantages of tools like GWT over pure JavaScript frameworks?"}
21
+ {"query_id": 216301, "query": "Are there any formalized/mathematical theories of software testing?"}
22
+ {"query_id": 182207, "query": "Can I ask the job interviewer to show me their code before joining the company?"}
23
+ {"query_id": 40297, "query": "What is a \"side effect?\""}
24
+ {"query_id": 81838, "query": "What is the difference between the factory pattern and abstract factory?"}
25
+ {"query_id": 203469, "query": "If my team has low skill, should I lower the skill of my code?"}
26
+ {"query_id": 236370, "query": "Query regarding MIT licence"}
27
+ {"query_id": 74086, "query": "if ('constant' == $variable) vs. if ($variable == 'constant')"}
28
+ {"query_id": 78431, "query": "How much should my project manager know?"}
29
+ {"query_id": 124533, "query": "Will it hurt my reputation if I don't deliver what I'm expected to?"}
30
+ {"query_id": 79765, "query": "What is \"the Cloud\" and how does it relate to development?"}
31
+ {"query_id": 55334, "query": "High level vs. low level programming. Do I really have to choose?"}
32
+ {"query_id": 238546, "query": "Single programmer working on a project from different computers: is Dropbox a good solution?"}
33
+ {"query_id": 43796, "query": "How to open-source a project whose git repository has copyrighted media in the history?"}
34
+ {"query_id": 163933, "query": "What technologies are used for Game development now days?"}
35
+ {"query_id": 206754, "query": "What is the best way to track / record the current programming project you work on?"}
36
+ {"query_id": 206755, "query": "IDE vs. Text Editor"}
37
+ {"query_id": 203483, "query": "What is a Non-Functional Requirement?"}
38
+ {"query_id": 88028, "query": "Be a better programmer or an irreplacable employee?"}
39
+ {"query_id": 93848, "query": "How to measure an IT workplace?"}
40
+ {"query_id": 158591, "query": "How to avoid typo errors, etc?"}
41
+ {"query_id": 251756, "query": "Customer is \"deeply disappointed\" in software because of one bug. How to reply?"}
42
+ {"query_id": 32425, "query": "I still can't figure out how to program?"}
43
+ {"query_id": 114958, "query": "Is Safari Books Online still the best game in town?"}
44
+ {"query_id": 159666, "query": "Which programming language is Curiosity written in?"}
45
+ {"query_id": 163924, "query": "Where can I find a punched card simulator?"}
46
+ {"query_id": 20684, "query": "Why would you use MVC over Web Forms?"}
47
+ {"query_id": 215235, "query": "unit level testing, agile, and refactoring"}
48
+ {"query_id": 24804, "query": "Is Page Scraping and Data Mining Moral / Legal?"}
49
+ {"query_id": 215474, "query": "What are the tools required to build a compiler?"}
50
+ {"query_id": 94932, "query": "Compiler/OS Design - Where to start"}
51
+ {"query_id": 110595, "query": "git / other VCS - how often to commit?"}
52
+ {"query_id": 108292, "query": "Java developing server-client solutions"}
53
+ {"query_id": 39282, "query": "Building a DSL: Scripted atop a general-purpose language or stand-alone?"}
54
+ {"query_id": 226357, "query": "Should unit-tests be entirely self-contained?"}
55
+ {"query_id": 194646, "query": "What methods are there to avoid a stack overflow in a recursive algorithm?"}
56
+ {"query_id": 204580, "query": "managing information/functionality on shared common project classes"}
57
+ {"query_id": 230604, "query": "What exactly is procedural programming? How exactly is it different from OOP? Is it the same as functional programming?"}
58
+ {"query_id": 35925, "query": "When is it more productive to build your own framework than to use an existing one?"}
59
+ {"query_id": 20653, "query": "Is it better to specialize in a single field I like, or expand into other fields to broaden my horizons?"}
60
+ {"query_id": 239210, "query": "Theoretically bug-free programs"}
61
+ {"query_id": 70755, "query": "Are long hours and no benefits the norm for a junior programmer?"}
62
+ {"query_id": 181780, "query": "When should the VCS history of a project be deleted?"}
63
+ {"query_id": 232812, "query": "Too many CS files in a single project"}
64
+ {"query_id": 10857, "query": "Should you document everything or just most?"}
65
+ {"query_id": 229657, "query": "Is there a difference between declaring variables outside or inside a loop?"}
66
+ {"query_id": 28379, "query": "Place to have my code reviewed by others"}
67
+ {"query_id": 116730, "query": "Programming with ADD/ADHD"}
68
+ {"query_id": 4765, "query": "When do you know it's time to move on from your current job?"}
69
+ {"query_id": 110190, "query": "How granular should TDD tests be?"}
70
+ {"query_id": 31558, "query": "version control for small team"}
71
+ {"query_id": 240454, "query": "Should I feel \"uncomfortable\" using auto in C++?"}
72
+ {"query_id": 154155, "query": "Should you keep a copy of all the code you write?"}
73
+ {"query_id": 213070, "query": "What are the guidelines for either throwing an exception or failing silently for nonvalid arguments?"}
74
+ {"query_id": 195719, "query": "Functional Programming: efficiently handling whole world changes?"}
75
+ {"query_id": 84909, "query": "Jobs that use programming which aren't in the technology sector"}
76
+ {"query_id": 166136, "query": "Switching licenses, or cross licensing existing GNU GPL v3 software"}
77
+ {"query_id": 113209, "query": "Is garbage collection necessary?"}
78
+ {"query_id": 58887, "query": "How do you feel that it is time to move and learn another programming language?"}
79
+ {"query_id": 77146, "query": "Why to let / not let developers test their own work"}
80
+ {"query_id": 136993, "query": "Interpreted vs Compiled: A useful distinction?"}
81
+ {"query_id": 191358, "query": "How does one sandbox a web application"}
82
+ {"query_id": 604, "query": "Is the 80 character limit still relevant in times of widescreen monitors?"}
83
+ {"query_id": 215248, "query": "Is there an established or defined best practice for source control branching between development and production builds?"}
84
+ {"query_id": 179002, "query": "IoC containers and service locator pattern"}
85
+ {"query_id": 238386, "query": "Is inheritance that adds rules bad?"}
86
+ {"query_id": 161711, "query": "Is it must for a junior Programmer to have a mentor?"}
87
+ {"query_id": 15286, "query": "Best approach to learning web programming"}
88
+ {"query_id": 208976, "query": "Good practice to use namespace or prefix to indicate what file function is from?"}
89
+ {"query_id": 27022, "query": "How do you take advantage of your whiteboard in your development team?"}
90
+ {"query_id": 228584, "query": "Why is BigDecimal the best data type for currency?"}
91
+ {"query_id": 81674, "query": "Do you create a design with UML before you start?"}
92
+ {"query_id": 181527, "query": "Why is reverse debugging rarely used?"}
93
+ {"query_id": 160628, "query": "version control security"}
94
+ {"query_id": 255912, "query": "Can I use Agile even when the client doesn't want to participate?"}
95
+ {"query_id": 158534, "query": "Pros and Cons of holding all the business logic in stored procedures in web application"}
96
+ {"query_id": 242610, "query": "what's the point of method overloading?"}
97
+ {"query_id": 111003, "query": "How to promote my open source project"}
98
+ {"query_id": 159626, "query": "Licensing for hosted open source and 3rd party libraries"}
99
+ {"query_id": 114755, "query": "Transitioning To Java"}
100
+ {"query_id": 148747, "query": "Abstract Data Type and Data Structure"}
101
+ {"query_id": 193996, "query": "How important is it to have a computer science degree?"}
102
+ {"query_id": 57576, "query": "About plagiarism"}
103
+ {"query_id": 114520, "query": "Is it wrong or bad to use autocomplete?"}
104
+ {"query_id": 32617, "query": "Would you see any use of a Trilean (True, False, ??)"}
105
+ {"query_id": 64671, "query": "For a large website developed in PHP, is it necessary to have a framework?"}
106
+ {"query_id": 135047, "query": "New to TDD. Should I avoid private methods now?"}
107
+ {"query_id": 215042, "query": "How to cut the line between quality and time?"}
108
+ {"query_id": 239016, "query": "Is this the correct understanding of tight coupling and loose coupling"}
109
+ {"query_id": 46685, "query": "Tips for a first year CS student looking for a summer internship to gain experience?"}
110
+ {"query_id": 163752, "query": "How can I give a basic idea of what I'm working on to a non programmer?"}
111
+ {"query_id": 147273, "query": "Confusion about proper use of * wildcard in SQL"}
112
+ {"query_id": 220872, "query": "Structured code vs Duplicate code. Modifiability"}
113
+ {"query_id": 97357, "query": "Programming at Home vs Programming at Workplace"}
114
+ {"query_id": 250291, "query": "Why does C have no competitors in low level stuff?"}
115
+ {"query_id": 49959, "query": "Recommended books on C++"}
116
+ {"query_id": 67707, "query": "When and why you should use void (instead of i.e. bool/int)"}
117
+ {"query_id": 141961, "query": "Teaching java interfaces to absolute beginners: What is a good example?"}
118
+ {"query_id": 10495, "query": "Do you work contract projects in addition to your full-time job?"}
119
+ {"query_id": 140876, "query": "Options for Opensource license?"}
120
+ {"query_id": 136382, "query": "Should a novice programmer learn several languages at once?"}
121
+ {"query_id": 59091, "query": "Why does a computer science degree matter to a professional programmer?"}
122
+ {"query_id": 139418, "query": "Reference public exposed property or private field in other parts of a class"}
123
+ {"query_id": 237065, "query": "How to know what to test in TDD?"}
124
+ {"query_id": 21397, "query": "What's the recommended control naming convention for XAML markup?"}
125
+ {"query_id": 46434, "query": "How can software be protected from piracy?"}
126
+ {"query_id": 115425, "query": "Is there a list of common usernames to reserve in a new system?"}
127
+ {"query_id": 209857, "query": "Open source development life cycle"}
128
+ {"query_id": 177907, "query": "What's the difference between VBA and VB Script?"}
129
+ {"query_id": 209609, "query": "How to use unit testing?"}
130
+ {"query_id": 141973, "query": "How do you achieve a numeric versioning scheme with Git?"}
131
+ {"query_id": 117852, "query": "Using \"catching exceptions\" to improve readability, Good or Bad?"}
132
+ {"query_id": 139663, "query": "Confusion about dual license (MIT/GPL) javascript for use on my website"}
133
+ {"query_id": 232843, "query": "From a TDD perspective, am I a bad person if I test against a live endpoint instead of a mock?"}
134
+ {"query_id": 67960, "query": "When do you not give help to less experienced programmers?"}
135
+ {"query_id": 116988, "query": "How to improve typing skills for a developer"}
136
+ {"query_id": 131701, "query": "Search algorithm with co-ordinate (x,y) hints?"}
137
+ {"query_id": 74493, "query": "Proper syntax formatting for SQL?"}
138
+ {"query_id": 197746, "query": "What is the benefit of the MoSCoW technique?"}
139
+ {"query_id": 14831, "query": "How to teach Exception Handling for New Programmers?"}
140
+ {"query_id": 104517, "query": "How can I get more experience with lower level programming?"}
141
+ {"query_id": 123270, "query": "Why \"Foo\" is so a special word?"}
142
+ {"query_id": 23313, "query": "Programmers forgetting syntax"}
143
+ {"query_id": 117825, "query": "Is it ok to write a quick software programme and then refactor it?"}
144
+ {"query_id": 53572, "query": "How to improve the quality of app descriptions"}
145
+ {"query_id": 205279, "query": "How your team manage shared password/key"}
146
+ {"query_id": 98691, "query": "Excessive use \"final\" keyword in Java"}
147
+ {"query_id": 195337, "query": "Is there any difference between pointers and references?"}
148
+ {"query_id": 251126, "query": "Error messages from Web API, should I use error codes?"}
149
+ {"query_id": 663, "query": "What should be the ideal computer science and engineering course topics?"}
150
+ {"query_id": 127867, "query": "What programmers should do if there are no tasks in hand for few days?"}
151
+ {"query_id": 220890, "query": "When did current source control management emerge?"}
152
+ {"query_id": 173320, "query": "Does a programmer really need college?"}
153
+ {"query_id": 102348, "query": "My lead does not co-operate (may be lack of knowledge or unwillingness)"}
154
+ {"query_id": 139442, "query": "How do I prove I'm a capable full-time hire after 3 years of a CS degree & lots of summer experience?"}
155
+ {"query_id": 87321, "query": "What is the Best Way to Incentivize a Team of Developers?"}
156
+ {"query_id": 230206, "query": "Is it better to use already build plugins/extensions or code your own in programming projects"}
157
+ {"query_id": 8958, "query": "What are signs that a project might turn out bad?"}
158
+ {"query_id": 56848, "query": "How does one keep up with all the new tools/languages/framework?"}
159
+ {"query_id": 91816, "query": "When to use a API/Library and when to write your own?"}
160
+ {"query_id": 32482, "query": "Can an algorithm be patented?"}
161
+ {"query_id": 145055, "query": "Are there guidelines on how many parameters a function should accept?"}
162
+ {"query_id": 126130, "query": "Example of an Object Oriented System design"}
163
+ {"query_id": 192037, "query": "How does understanding computer architecture help a programmer?"}
164
+ {"query_id": 116330, "query": "Why don't more languages support recursive/nested comments?"}
165
+ {"query_id": 196876, "query": "Is C a pre-requisite in order to learn C++ effectively?"}
166
+ {"query_id": 150633, "query": "Exception hierarchy design"}
167
+ {"query_id": 233981, "query": "Characterization in Testing: Unit test or Functional test"}
168
+ {"query_id": 128548, "query": "When should I stop programming / coding?"}
169
+ {"query_id": 9813, "query": "Where do you find the time?"}
170
+ {"query_id": 210623, "query": "GPLv3 licensing and Software-as-a-Service web apps"}
171
+ {"query_id": 210864, "query": "Is Pair Programming also used to train less experienced developers and bring them up to speed?"}
172
+ {"query_id": 233503, "query": "How to reuse c++ code?"}
173
+ {"query_id": 137439, "query": "Intellectual Property Rights - Starting a new Job"}
174
+ {"query_id": 158359, "query": "How can calculus and linear algebra be useful to a system programmer?"}
175
+ {"query_id": 103263, "query": "Scrum: how to handle backlog-items that are longer than one sprint"}
176
+ {"query_id": 241389, "query": "Should interface only be used for behavior and not to show logical data grouped together?"}
177
+ {"query_id": 67750, "query": "Can one forget programming if it is not practiced for some time?"}
178
+ {"query_id": 182009, "query": "Why notify and wait are not declared in threads?"}
179
+ {"query_id": 20023, "query": "Is Java (still) the cross platform language of choice?"}
180
+ {"query_id": 104111, "query": "What is meant by a senior (insert language here) developer?"}
181
+ {"query_id": 218121, "query": "Good fix vs Quick fix"}
182
+ {"query_id": 117403, "query": "Will Python developers find it easier to learn C (and vice versa)?"}
183
+ {"query_id": 147240, "query": "Where are functional languages used?"}
184
+ {"query_id": 150888, "query": "Using static in PHP"}
185
+ {"query_id": 210637, "query": "Program design with multiple data sets, algorithms and results"}
186
+ {"query_id": 191191, "query": "How to deal with undesired commits that break long-running release builds?"}
187
+ {"query_id": 234820, "query": "design patterns in Javascript - toggle functionality"}
188
+ {"query_id": 113295, "query": "When to use C over C++, and C++ over C?"}
189
+ {"query_id": 210635, "query": "Determine dependency between .NET projects"}
190
+ {"query_id": 62060, "query": "Intentional misspellings to avoid reserved words"}
191
+ {"query_id": 244866, "query": "Matching the superclass's constructor's parameter list, is treating a null default value as a non-null value within a constructor a violation of LSP?"}
192
+ {"query_id": 103471, "query": "How should I handle invalid user input?"}
193
+ {"query_id": 184874, "query": "Is Ken Thompson's compiler hack still a threat?"}
194
+ {"query_id": 23507, "query": "What is the path to JavaScript mastery?"}
195
+ {"query_id": 119814, "query": "What should be tested in Javascript?"}
196
+ {"query_id": 216195, "query": "Should single purpose utility app use a class"}
197
+ {"query_id": 127201, "query": "How do you manage extensibility in your multi-tenant systems?"}
198
+ {"query_id": 193586, "query": "Using a development language (Python) before putting it into C++"}
199
+ {"query_id": 254424, "query": "Changelog in Comments Versus Source Control Log"}
200
+ {"query_id": 54451, "query": "Library vs. framework vs API?"}
201
+ {"query_id": 194679, "query": "Is it common to spend your first few weeks at a new job trying to fix your designated workstation?"}
202
+ {"query_id": 228187, "query": "Licensing - Using Standard C Library"}
203
+ {"query_id": 189096, "query": "Knowledge Transfer and software development"}
204
+ {"query_id": 196615, "query": "XML vs SQL for content display on an ecommerce website"}
205
+ {"query_id": 133096, "query": "Is it OK to put a link to Q&A sites in a program's comments?"}
206
+ {"query_id": 89554, "query": "Is learning technology by reading books obsolete?"}
207
+ {"query_id": 158397, "query": "Do large test methods indicate a code smell?"}
208
+ {"query_id": 91629, "query": "Best Java book you have read so far"}
209
+ {"query_id": 223718, "query": "Specifics of Switch and If statements"}
210
+ {"query_id": 182229, "query": "Why does Java's Collections.unmodifiableList return a List interface instead of an UnmodifiableList interface?"}
211
+ {"query_id": 68867, "query": "How to decide between storage formats and what are example use cases for some of them?"}
212
+ {"query_id": 161303, "query": "Is it bad practice to use public fields?"}
213
+ {"query_id": 230250, "query": "outOfMemoryException in android emulator"}
214
+ {"query_id": 125252, "query": "Worth it to Learn an Archaic Language?"}
215
+ {"query_id": 220444, "query": "Should we always write Defensive null check in code?"}
216
+ {"query_id": 246813, "query": "Redundant function to clarify purpose?"}
217
+ {"query_id": 252495, "query": "When using Visual Studio 2012 do you have to use the drag and drop system?"}
218
+ {"query_id": 129603, "query": "How do I approach a coworker about his or her code quality?"}
219
+ {"query_id": 73304, "query": "How do you deal with an information hoarder?"}
220
+ {"query_id": 197251, "query": "Write then optimise or write optimised"}
221
+ {"query_id": 95335, "query": "How much HTML and CSS should server side developer know?"}
222
+ {"query_id": 195073, "query": "How to properly design REST"}
223
+ {"query_id": 202804, "query": "How to organise OO code"}
224
+ {"query_id": 107774, "query": "With agile, what do when a user story doesn't get completed in an iteration?"}
225
+ {"query_id": 73541, "query": "Writing an (end-) user documentation"}
226
+ {"query_id": 97511, "query": "What should an embedded developer know on day one?"}
227
+ {"query_id": 200861, "query": "How does the operating system regain control when multitasking?"}
228
+ {"query_id": 230280, "query": "How to address the concerns of the software architect but still maintain collective code ownership?"}
229
+ {"query_id": 224835, "query": "How should I validate code when there is no one to do code review?"}
230
+ {"query_id": 131408, "query": "Java GNU Licensing"}
231
+ {"query_id": 65918, "query": "Importance of learning to google efficiently for a programmer?"}
232
+ {"query_id": 254008, "query": "What would you call the concept of CofeeScript or Sass to be?"}
233
+ {"query_id": 57068, "query": "Why are objects passed by reference?"}
234
+ {"query_id": 190853, "query": "Is using `continue`, `break` in non-`switch` loops and `?:` bad practice?"}
235
+ {"query_id": 144717, "query": "Advantages and disadvantages of building a single page web application"}
236
+ {"query_id": 116491, "query": "Do employers care about what college your degree is from?"}
237
+ {"query_id": 106693, "query": "Should a design document contain a discussion of the pros/cons to a given design or should it focus on facts and rationale?"}
238
+ {"query_id": 14582, "query": "How do you organize your projects folders?"}
239
+ {"query_id": 164799, "query": "QA - Developer communication"}
240
+ {"query_id": 8544, "query": "MonoTouch vs Objective-C for iPhone/iPod/iPad development"}
241
+ {"query_id": 59496, "query": "What pricing model has more benefits in mobile app stores: free or paid?"}
242
+ {"query_id": 25234, "query": "What to do about \"stopping point syndrome\"?"}
243
+ {"query_id": 246634, "query": "Select design pattern - user stage"}
244
+ {"query_id": 34173, "query": "Does heavy library and code snippet usage make you a bad programmer?"}
245
+ {"query_id": 116242, "query": "How to name parts of your program as a non native English speaker"}
246
+ {"query_id": 119513, "query": "Learning to program without a computer"}
247
+ {"query_id": 27410, "query": "Is there a canonical book on Ruby on Rails?"}
248
+ {"query_id": 234620, "query": "Developing an big system in a a small company"}
249
+ {"query_id": 16528, "query": "Single statement if block - braces or no?"}
250
+ {"query_id": 219028, "query": "How to safeguard a REST API for only trusted mobile applications"}
251
+ {"query_id": 129543, "query": "What is the best way to handle product versioning and branching of long term projects?"}
252
+ {"query_id": 210693, "query": "Who fixes broken tests?"}
253
+ {"query_id": 130335, "query": "Why is Scala more scalable than other languages?"}
254
+ {"query_id": 206199, "query": "What should a self-taught developer learn in order to work with others?"}
255
+ {"query_id": 94024, "query": "Does unit test increase productivity?"}
256
+ {"query_id": 492, "query": "How important is the ability to touch-type?"}
257
+ {"query_id": 196139, "query": "Programming by Intention, Depth-First or Breadth-First?"}
258
+ {"query_id": 257, "query": "I program from home. What can I do to be more productive?"}
259
+ {"query_id": 23021, "query": "Refactor or Concentrate on Completing App"}
260
+ {"query_id": 16732, "query": "Unit testing internal components"}
261
+ {"query_id": 17826, "query": "How do people read big technical books?"}
262
+ {"query_id": 37677, "query": "Programming skills, problem solving genius or language guru?"}
263
+ {"query_id": 82286, "query": "Open Source Licenses Question"}
264
+ {"query_id": 132520, "query": "How to emphasize the differences between Software Engineering, Computer Engineering and Computer Science to high schoolers?"}
265
+ {"query_id": 243347, "query": "Regex to String generation"}
266
+ {"query_id": 108855, "query": "When is it necessary to use ORM tools?"}
267
+ {"query_id": 130582, "query": "Linux Programmer moving to Windows"}
268
+ {"query_id": 165668, "query": "How to manage/control software versions?"}
269
+ {"query_id": 23276, "query": "How does one become a leader in a team of programmers?"}
270
+ {"query_id": 225931, "query": "Workaround for Java checked exceptions"}
271
+ {"query_id": 209479, "query": "School vs Self-Taught"}
272
+ {"query_id": 218184, "query": "How should I make searching a relational database more efficient?"}
273
+ {"query_id": 141232, "query": "What's shell script's advantage over interpreted programming languages?"}
274
+ {"query_id": 114286, "query": "What books or resources would you recommend to learn practical OO design and development concepts?"}
275
+ {"query_id": 7242, "query": "What are the chances of Google's Go becoming a mainstream language?"}
276
+ {"query_id": 233592, "query": "Unit testing of non-atomic methods"}
277
+ {"query_id": 153631, "query": "Should each app have its own database, or should small apps be merged into one?"}
278
+ {"query_id": 189824, "query": "I would like to learn to write database-driven web applications. Where should I start?"}
279
+ {"query_id": 210472, "query": "Is renewal of MIT license needed on github at the beginning of each year?"}
280
+ {"query_id": 36561, "query": "Woes of a Junior Developer - is it possible to not be cut out for programming?"}
281
+ {"query_id": 221365, "query": "Mozilla Public License (MPL 2.0) vs Lesser GNU General Public License (LGPL 3.0)"}
282
+ {"query_id": 162583, "query": "Why is the rec keyword needed in F#?"}
283
+ {"query_id": 95373, "query": "How much time do you / is acceptable to waste?"}
284
+ {"query_id": 211319, "query": "Excessive use \u201cthis\u201d keyword in Java"}
285
+ {"query_id": 142974, "query": "best way to handle a many to many relationship?"}
286
+ {"query_id": 120541, "query": "Is there a language that allows this syntax: add(elements)at(index);"}
287
+ {"query_id": 84001, "query": "Is it worth Learning XML as a web developer when JSON is better for AJAX?"}
288
+ {"query_id": 236853, "query": "Is there a performance difference between ++x over x++?"}
289
+ {"query_id": 196356, "query": "iPhone development - Which model to test?"}
290
+ {"query_id": 197443, "query": "Whatever happened to Pascal?"}
291
+ {"query_id": 110730, "query": "Benefits to starting JavaScript \"for\" loops at 0, or just traditional?"}
292
+ {"query_id": 233342, "query": "Best practices for introducing testing to a large, stable, legacy Java application?"}
293
+ {"query_id": 8588, "query": "What's the history of the non-official pronunciation of SQL?"}
294
+ {"query_id": 154954, "query": "How to refactor a method which breaks \"The law of Demeter\" principle?"}
295
+ {"query_id": 220023, "query": "Evolution versions of applications"}
296
+ {"query_id": 95363, "query": "Should code reviewers test as part of the review?"}
297
+ {"query_id": 97785, "query": "My Dad is impatient with the pace of my learning to program. What do I do?"}
298
+ {"query_id": 198549, "query": "Re-architecting a classic inheritance design"}
299
+ {"query_id": 178916, "query": "Store image as logic file (in db by using binary format) or physical file (in the server)"}
300
+ {"query_id": 140561, "query": "Difference between software analyst, software developer and programmer?"}
301
+ {"query_id": 141411, "query": "What is enterprise software, exactly?"}
302
+ {"query_id": 86656, "query": "Are \"TDD Tests\" different to Unit Tests?"}
303
+ {"query_id": 199873, "query": "Is it bad to use giant label comments to mark off sections of code?"}
304
+ {"query_id": 43086, "query": "Colleague unwilling to use unit tests \"as it's more to code\""}
305
+ {"query_id": 196366, "query": "How to fix quickly, dummy errors?"}
306
+ {"query_id": 237935, "query": "High-Level Classes and Low-Level Classes"}
307
+ {"query_id": 53517, "query": "What does Tim Peters mean by \"complex is better than complicated\"?"}
308
+ {"query_id": 97338, "query": "What are the boundaries between the responsibilities of a web designer and a web developer?"}
309
+ {"query_id": 66834, "query": "What is the best practice for gathering requirements when a customer does not know what he wants?"}
310
+ {"query_id": 225504, "query": "Is it normal to look back on codes when coding?"}
311
+ {"query_id": 77731, "query": "Does Salary mean being On-Call 24/7?"}
312
+ {"query_id": 138026, "query": "IF ELSE shorthand. Does it hurt readability"}
313
+ {"query_id": 194395, "query": "Command line tools vs IDE (Eclipse )"}
314
+ {"query_id": 198995, "query": "Evaluate one's skill and improve it?"}
315
+ {"query_id": 107326, "query": "How much Stack Overflow reputation makes it worth putting in CV?"}
316
+ {"query_id": 67931, "query": "How do you handle database change deployments?"}
317
+ {"query_id": 222464, "query": "Designing online exam"}
318
+ {"query_id": 22146, "query": "Best books on the theory and practice of software architecture?"}
319
+ {"query_id": 220049, "query": "Verbose or concise logging"}
320
+ {"query_id": 111802, "query": "Should I learn design patterns or algorithms to improve my logical thinking skills?"}
321
+ {"query_id": 98651, "query": "What are the advantages of the Intel C++ compiler?"}
322
+ {"query_id": 105380, "query": "Architectural differences between dynamic and static languages"}
323
+ {"query_id": 16708, "query": "How do you stay motivated for hobby projects?"}
324
+ {"query_id": 203970, "query": "When to use primitive vs class in Java?"}
325
+ {"query_id": 89947, "query": "How can I keep my visualstudio database project in sync with my database?"}
326
+ {"query_id": 89944, "query": "if I use .NET Framework for my application, do I have to pay anything to Microsoft?"}
327
+ {"query_id": 13676, "query": "Would you allow your programmers to use Messenger and social networks like Facebook?"}
328
+ {"query_id": 215703, "query": "Is the Joel Test really a good gauging tool?"}
329
+ {"query_id": 210496, "query": "Is it common to run out of work towards the end of a sprint?"}
330
+ {"query_id": 234449, "query": "How to avoid programmers duplicating code"}
331
+ {"query_id": 92465, "query": "How should I structure our common modules to maximize reuse and reduce duplication?"}
332
+ {"query_id": 110788, "query": "Anonymous chat and fear of talking openly"}
333
+ {"query_id": 133424, "query": "Being the goto developer vs being a solid team member?"}
334
+ {"query_id": 97912, "query": "How do you define elegant code?"}
335
+ {"query_id": 111633, "query": "What does SVN do better than Git?"}
336
+ {"query_id": 132578, "query": "What issues should we be aware of converting to Agile/Scrum with a project that's underway?"}
337
+ {"query_id": 133664, "query": "Ideas to get you programming mojo back?"}
338
+ {"query_id": 234001, "query": "Is a language that provides more abstractions to use it's own API, considered higher-level than a language that doesn't?"}
339
+ {"query_id": 224434, "query": "Why do we still use floats?"}
340
+ {"query_id": 202889, "query": "Getting work done in a small office"}
341
+ {"query_id": 119367, "query": "Should service test classes connect to the database"}
342
+ {"query_id": 25063, "query": "Google is good or bad for programmer?"}
343
+ {"query_id": 123851, "query": "How do you estimate?"}
344
+ {"query_id": 223596, "query": "Should I refactor a F class from code climate?"}
345
+ {"query_id": 144556, "query": "Is continuous integration useful for a team of two developers who write a lot of code?"}
346
+ {"query_id": 188381, "query": "Engineering interview candidate refuses to use whiteboard"}
347
+ {"query_id": 236415, "query": "Is machine language always binary?"}
348
+ {"query_id": 17696, "query": "Writing a Software Requirement Specification"}
349
+ {"query_id": 41545, "query": "Reasons to Use a VM For Development"}
350
+ {"query_id": 43729, "query": "Learning Multiple Languages Simultaneously"}
351
+ {"query_id": 204840, "query": "Difference between application-level and system-level testing"}
352
+ {"query_id": 215727, "query": "Double equals (Not equality) during assigning Java"}
353
+ {"query_id": 237738, "query": "Should failing unit tests that we're not going to fix be removed?"}
354
+ {"query_id": 250707, "query": "How should I remember what I was doing and why on a project 3 months back?"}
355
+ {"query_id": 19842, "query": "What are some well known applications written in F#?"}
356
+ {"query_id": 245115, "query": "static or non-static, that is the question?"}
357
+ {"query_id": 61980, "query": "Is ageism in software development based on anything other than bias?"}
358
+ {"query_id": 187026, "query": "How to get better at debugging?"}
359
+ {"query_id": 57243, "query": "Resources for improving your comprehension of recursion?"}
360
+ {"query_id": 55065, "query": "How to calculate the quality of software project"}
361
+ {"query_id": 60409, "query": "stuck on a programming problem solution"}
362
+ {"query_id": 61745, "query": "Effective methods for managing work tasks? (documenting/remembering/prioritizing)"}
363
+ {"query_id": 129141, "query": "Is CSS a programming language?"}
364
+ {"query_id": 26371, "query": "Do employers hiring for software jobs care about the classes you took in CS masters program?"}
365
+ {"query_id": 123834, "query": "Prerequisites to become a technical architect"}
366
+ {"query_id": 100959, "query": "How do you unit test private methods?"}
367
+ {"query_id": 81591, "query": "In the absense of a CS degree, how can I \"fill in the gaps\" so to speak?"}
368
+ {"query_id": 15004, "query": "At which point do you \"know\" a technology enough to list it on a resume"}
369
+ {"query_id": 210049, "query": "What kind of programming languages have the highest pedagogical value?"}
370
+ {"query_id": 128044, "query": "How to protect own software from copying"}
371
+ {"query_id": 156794, "query": "Database lock on gSoap server during storing data in table"}
372
+ {"query_id": 104096, "query": "Which platform to choose, Java or .NET?"}
373
+ {"query_id": 191539, "query": "Wrapping specific checked exception in domain unchecked ones?"}
374
+ {"query_id": 155469, "query": "Keep coding the wrong way to remain consistent?"}
375
+ {"query_id": 110518, "query": "Binaries in source control"}
376
+ {"query_id": 36175, "query": "What are the disadvantages of writing code before writing unit tests?"}
377
+ {"query_id": 138908, "query": "Is a Front-End Web Developer a \"Programmer\"?"}
378
+ {"query_id": 200497, "query": "Tex and Absence of bugs"}
379
+ {"query_id": 111846, "query": "Should you write good documentation and clean code to increase the \"Bus Factor\"?"}
380
+ {"query_id": 78176, "query": "How do I comply with the EU Cookie Directive?"}
381
+ {"query_id": 254083, "query": "If there's no problem treating a statement as an expression, why was there a distinction in the first place in some programming languages?"}
382
+ {"query_id": 121887, "query": "How to estimate effort required to convert a large codebase to another language/platform"}
383
+ {"query_id": 227720, "query": "How to shorten the case statement from hades?"}
384
+ {"query_id": 145437, "query": "Why use an interface when the class can directly implement the functions?"}
385
+ {"query_id": 171701, "query": "Big Oh notation does not mention constant value"}
386
+ {"query_id": 250953, "query": "Referencing StackOverflow questions in comments"}
387
+ {"query_id": 37029, "query": "Difference between defect and bug in testing"}
388
+ {"query_id": 209070, "query": "Tips for managing an offshore development team"}
389
+ {"query_id": 155659, "query": "Java language book for an experienced programmer?"}
390
+ {"query_id": 223148, "query": "Two months in my new job, still having trouble learning a new codebase. How can I improve?"}
391
+ {"query_id": 189426, "query": "About the usage of assertions"}
392
+ {"query_id": 201119, "query": "Web Authentication using PKI Certs"}
393
+ {"query_id": 35074, "query": "I'm a Subversion geek, why should I consider or not consider Mercurial or Git or any other DVCS?"}
394
+ {"query_id": 193929, "query": "\"Too object-oriented\""}
395
+ {"query_id": 203776, "query": "What exactly is \"big O\" notation?"}
396
+ {"query_id": 227993, "query": "Coding standards for c#"}
397
+ {"query_id": 24170, "query": "After how much experience, should one start to use a framework for serious development?"}
398
+ {"query_id": 200031, "query": "Do I need JUnit tests for the controller layer on a MVC when I have a database layer"}
399
+ {"query_id": 82227, "query": "Programming practice - Is there a site that has a daily \"write a method to do X\" type challange?"}
400
+ {"query_id": 139171, "query": "Defensive Programming vs Exception Handling?"}
401
+ {"query_id": 179618, "query": "How to test if a hashing algorithm is good?"}
402
+ {"query_id": 175014, "query": "Strategies for invoking subclass methods on generic objects"}
403
+ {"query_id": 81131, "query": "Going from PHP to Java"}
404
+ {"query_id": 176102, "query": "A toolset for self improvement and learning"}
405
+ {"query_id": 69242, "query": "How to get started in opensource projects and programs"}
406
+ {"query_id": 131451, "query": "Difference between Dependency Injection (DI) & Inversion of Control (IOC)"}
407
+ {"query_id": 111663, "query": "Why isn't functional programming embraced more widely?"}
408
+ {"query_id": 191759, "query": "Can a developer perform testing efficiently?"}
409
+ {"query_id": 133872, "query": "Localised programming languages"}
410
+ {"query_id": 41981, "query": "Where can I find programming work online?"}
411
+ {"query_id": 136908, "query": "Why Use !boolean_variable Over boolean_variable == false"}
412
+ {"query_id": 164599, "query": "Verification of requirements question"}
413
+ {"query_id": 240734, "query": "For web apps (vs web pages) why not put scripts and css inline?"}
414
+ {"query_id": 84638, "query": "What is the objective of unit testing?"}
415
+ {"query_id": 206816, "query": "Clarification of \"avoid if-else\" advice"}
416
+ {"query_id": 201130, "query": "How do you balance out code structuring (few big functions vs. many small ones)?"}
417
+ {"query_id": 21907, "query": "Open Source but not Free Software (or vice versa)"}
418
+ {"query_id": 247135, "query": "Using rvalue references to signal function behaviour"}
419
+ {"query_id": 197056, "query": "The need for adding an interface to every class"}
420
+ {"query_id": 37249, "query": "The Singleton Pattern"}
421
+ {"query_id": 118064, "query": "Is it necessary to know and understand design patterns in order to be a professional programmer?"}
422
+ {"query_id": 17898, "query": "What's a nice explanation for pointers?"}
423
+ {"query_id": 15239, "query": "For what problems is object oriented programming not a good choice?"}
424
+ {"query_id": 234066, "query": "Publish an app on Google Play from Iran"}
425
+ {"query_id": 237577, "query": "How to (or should I) have one assert per test with object comparisons?"}
426
+ {"query_id": 195094, "query": "Day-to-Day Differences between Software Engineering and Web Developer Positions"}
427
+ {"query_id": 186377, "query": "Developers taking code home - how bad is it?"}
428
+ {"query_id": 204410, "query": "How are GPL-compatible licenses like MIT usable in GPL programs without being subject to the copyleft provision?"}
429
+ {"query_id": 60216, "query": "Does programming knowledge have a half-life?"}
430
+ {"query_id": 42817, "query": "Why not Spring framework?"}
431
+ {"query_id": 57047, "query": "How do you classify bug severity?"}
432
+ {"query_id": 225354, "query": "Logic inside class properties setters & getters"}
433
+ {"query_id": 247103, "query": "How to manage a relatively large one-man project?"}
434
+ {"query_id": 38566, "query": "The importance of javascript and the best way to learn it?"}
435
+ {"query_id": 52833, "query": "Is writing comments inside methods not a good practice?"}
436
+ {"query_id": 76801, "query": "Why functional programming?"}
437
+ {"query_id": 121218, "query": "What are the pros and cons of storing files in DB2 vs folders?"}
438
+ {"query_id": 191961, "query": "Why do some big projects, like Git and Debian, only use a mailing list and not an issue tracker?"}
439
+ {"query_id": 1319, "query": "What questions do you ask about a company before deciding to work there?"}
440
+ {"query_id": 156771, "query": "How to get good design when using agile methods?"}
441
+ {"query_id": 51987, "query": "How to include an apache library with my opensource code?"}
442
+ {"query_id": 154593, "query": "How to get motivation and time to learn outside of work?"}
443
+ {"query_id": 236473, "query": "Advantages and disadvantages of making one DB per customer"}
444
+ {"query_id": 93124, "query": "EAV - is it really bad in all scenarios?"}
445
+ {"query_id": 96638, "query": "Interviewing a developer who's skilled in a language you don't know"}
446
+ {"query_id": 112974, "query": "If not working an internship, should I work for free?"}
447
+ {"query_id": 190649, "query": "What's the right balance between code consistency and code improvement?"}
448
+ {"query_id": 95786, "query": "How did the idea of Exception-handling emerge into programming languages?"}
449
+ {"query_id": 111881, "query": "How much do i need to learn in order to get an entry level asp.net job?"}
450
+ {"query_id": 154339, "query": "Advice on SCRUM for the solitary developer"}
451
+ {"query_id": 228848, "query": "How does Java handle cyclic data references when serializing an object?"}
452
+ {"query_id": 166314, "query": "How Do I Determine the Value of a Technical book?"}
453
+ {"query_id": 166798, "query": "What does \"general purpose system\" mean for Java SE Embedded?"}
454
+ {"query_id": 61798, "query": "How much database access should developers have?"}
455
+ {"query_id": 167890, "query": "Is StackOverflow making me stupid?"}
456
+ {"query_id": 61558, "query": "Turn away a bug if no reproducible test case exists?"}
457
+ {"query_id": 200064, "query": "Is there a unified source code documentation generator?"}
458
+ {"query_id": 2654, "query": "What parts of your coding standard contribute to quality code?"}
459
+ {"query_id": 216639, "query": "Unit-testing code that relies on untestable 3rd party code"}
460
+ {"query_id": 199698, "query": "What are the best ways to find fellow coders to work on hobby open-source projects?"}
461
+ {"query_id": 3747, "query": "How can I sell a legacy program rewrite to the business?"}
462
+ {"query_id": 114629, "query": "Is there an alternative to Google Code Search?"}
463
+ {"query_id": 237593, "query": "how to find average bits per symbol using huffman code?"}
464
+ {"query_id": 109279, "query": "License validation and calling home"}
465
+ {"query_id": 99499, "query": "iOS Development Certifications"}
466
+ {"query_id": 36925, "query": "Weeding out real agile from buzzword agile in an interview"}
467
+ {"query_id": 122244, "query": "Single Line Conditions and Loops - Best Practice"}
468
+ {"query_id": 71917, "query": "Getting involved with an Open Source Project"}
469
+ {"query_id": 90438, "query": "Monitor screen size and programming ease"}
470
+ {"query_id": 3997, "query": "Does off-shore resourcing work?"}
471
+ {"query_id": 110270, "query": "What's the difference between Enterprise Architect , Software/Solution Architect and a Dev Senior?"}
472
+ {"query_id": 28050, "query": "API/Technical Writers Guide"}
473
+ {"query_id": 237584, "query": "Zero Day Exploit Ethics/Etiquette"}
474
+ {"query_id": 134244, "query": "Is validating HTML a thing of the past?"}
475
+ {"query_id": 162931, "query": "How to avoid being an API programmer only?"}
476
+ {"query_id": 204443, "query": "Coding convention regarding the usage of underscores"}
477
+ {"query_id": 122233, "query": "How to deal with checked exceptions that cannot ever be thrown"}
478
+ {"query_id": 224036, "query": "How to isolate a massive and changeable web service"}
479
+ {"query_id": 55697, "query": "How do managers know if a person is a good or a bad programmer?"}
480
+ {"query_id": 3766, "query": "How to tackle a boss who thinks everybody in this world is wrong except him?"}
481
+ {"query_id": 132074, "query": "How do I write a specification?"}
482
+ {"query_id": 254936, "query": "Database conceptual Question"}
483
+ {"query_id": 38087, "query": "What does a standard code review contain?"}
484
+ {"query_id": 179162, "query": "Best way to protect website application code"}
485
+ {"query_id": 214494, "query": "Throwing exception from a property when my object state is invalid"}
486
+ {"query_id": 204206, "query": "Painfully Stupid Method Names in Legacy Code: Fix or Leave as Warning?"}
487
+ {"query_id": 21403, "query": "Why do large IT projects tend to fail or have big cost/schedule overruns?"}
488
+ {"query_id": 10998, "query": "What does the Jamie Zawinski's quotation about regular expressions mean?"}
489
+ {"query_id": 144058, "query": "Why do different languages use different Code Line Delimiters?"}
490
+ {"query_id": 247382, "query": "Value of passing by reference"}
491
+ {"query_id": 225153, "query": "Best practice or design patterns for retrieval of data for reporting and dashboards in a domain-rich application"}
492
+ {"query_id": 196930, "query": "GSOC along with an internship"}
493
+ {"query_id": 54373, "query": "When would someone use MongoDB (or similar) over traditional RDMS?"}
494
+ {"query_id": 57405, "query": "If you have designed (and implemented) a programming language, what to do to make it gain attention/popularity?"}
495
+ {"query_id": 202273, "query": "When does SOAP make more sense than REST?"}
496
+ {"query_id": 203362, "query": "Need help understanding Mocks and Stubs"}
497
+ {"query_id": 90217, "query": "Determining what is a useful unit test"}
498
+ {"query_id": 136449, "query": "Importance of bitwise thinking"}
499
+ {"query_id": 213173, "query": "What To Do If I've Found a Vulnerability In a Possible Future Employers Site?"}
500
+ {"query_id": 115920, "query": "First Steps of Making a Programming Language"}
501
+ {"query_id": 226233, "query": "Use of LGPL libraries on android devices (in a single closed source .apk)"}
502
+ {"query_id": 196700, "query": "How to maintain a steady pace at development?"}
503
+ {"query_id": 208815, "query": "Drawbacks of using pure html in webforms?"}
504
+ {"query_id": 251643, "query": "Which language introduced the idea of private (hidden) variables?"}
505
+ {"query_id": 246066, "query": "Using GPL library in our software"}
506
+ {"query_id": 940, "query": "What are your favorite version control systems?"}
507
+ {"query_id": 225387, "query": "C# Code Design Issue"}
508
+ {"query_id": 100685, "query": "Making money with Open Source as a developer?"}
509
+ {"query_id": 95933, "query": "What are practitioner's thoughts of the IEEE software engineering certifications?"}
510
+ {"query_id": 241411, "query": "How to structure my java packages"}
511
+ {"query_id": 89491, "query": "Almost graduate, how to prepare myself for the \"real world\"?"}
512
+ {"query_id": 237157, "query": "UML class diagram - instantiation dependency relationship: who depends on who?"}
513
+ {"query_id": 29109, "query": "Is there any reason to use C++ instead of C, Perl, Python, etc.?"}
514
+ {"query_id": 76182, "query": "How to get a job with no experience?"}
515
+ {"query_id": 168685, "query": "Does software rot refer primarily to performance, or to messy code?"}
516
+ {"query_id": 194975, "query": "Readable regular expressions without losing their power?"}
517
+ {"query_id": 205562, "query": "Good logging technique for small projects on Java"}
518
+ {"query_id": 196913, "query": "Is the use of JUnit feasible for a short duration project of around 3 months?"}
519
+ {"query_id": 102679, "query": "What should I do before open sourcing a project?"}
520
+ {"query_id": 218869, "query": "Is explicit else needed in initialisers?"}
521
+ {"query_id": 59606, "query": "Is type safety worth the trade-offs?"}
522
+ {"query_id": 88392, "query": "Why is closure important for JavaScript?"}
523
+ {"query_id": 136629, "query": "Should developers enter bugs into the bug tracking system?"}
524
+ {"query_id": 251222, "query": "How to learn new technologies in short period of time?"}
525
+ {"query_id": 57435, "query": "How to Structure Bonuses for Software Developers?"}
526
+ {"query_id": 193895, "query": "Responsibilities of Build Script and Build Server"}
527
+ {"query_id": 193415, "query": "Best practices for sharing tiny snippets of code across projects"}
528
+ {"query_id": 112485, "query": "What is the benefit of studying bitwise operators?"}
529
+ {"query_id": 161809, "query": "Is it typical for a unit test suite to be larger than the code it tests?"}
530
+ {"query_id": 19558, "query": "How to start project?"}
531
+ {"query_id": 16010, "query": "Is it bad to use Unicode characters in variable names?"}
532
+ {"query_id": 136634, "query": "What degree of mathematical knowledge should a programmer have?"}
533
+ {"query_id": 17341, "query": "Compiler Warnings"}
534
+ {"query_id": 39378, "query": "When should I use mock objects?"}
535
+ {"query_id": 194958, "query": "Which Agile methodology could my small team use?"}
536
+ {"query_id": 230534, "query": "Able to read Code but struggling majorly to write it"}
537
+ {"query_id": 55267, "query": "How do you balance documentation requirements with Agile developments"}
538
+ {"query_id": 132281, "query": "Are C and/or C++ viable/practical options for web development?"}
539
+ {"query_id": 18679, "query": "How do I learn algorithms and data structures?"}
540
+ {"query_id": 230778, "query": "Should I consider loosely-coupling for class methods as well?"}
541
+ {"query_id": 18444, "query": "What should you bring to the table as a Software Architect?"}
542
+ {"query_id": 73934, "query": "Should CSS be listed on your resume under Languages?"}
543
+ {"query_id": 87082, "query": "web framework or not for web app development"}
544
+ {"query_id": 137973, "query": "if it's been designed correctly is AOP useful?"}
545
+ {"query_id": 95942, "query": "\"Benefit Package\" as part of consulting fee"}
546
+ {"query_id": 44959, "query": "Is C++ suitable as a first language?"}
547
+ {"query_id": 208867, "query": "Component based software engineering vs Service Oriented Architecture"}
548
+ {"query_id": 252532, "query": "Should I place functions that are only used in one other function, within that function?"}
549
+ {"query_id": 80694, "query": "How do I choose an Android phone for testing my application?"}
550
+ {"query_id": 121167, "query": "Why do some languages recommend using spaces rather than tabs?"}
551
+ {"query_id": 178018, "query": "Tips or techniques to use when you don't know how to code something?"}
552
+ {"query_id": 49836, "query": "Are there any downsides of 2 developers getting married?"}
553
+ {"query_id": 66735, "query": "What do great APIs have in common?"}
554
+ {"query_id": 98324, "query": "When does TDD fail?"}
555
+ {"query_id": 1180, "query": "VB.Net vs C# debate"}
556
+ {"query_id": 146065, "query": "Is there really Object-relational impedance mismatch?"}
557
+ {"query_id": 205359, "query": "API Authentication, One time token VS Dynamic tokens"}
558
+ {"query_id": 15829, "query": "Advice for solo programmer whose team will expand in the near future"}
559
+ {"query_id": 250164, "query": "Can someone help me understand MVC?"}
560
+ {"query_id": 750, "query": "What should you test with unit tests?"}
561
+ {"query_id": 127535, "query": "Has the time gone to think about user with JavaScript disabled in browser?"}
562
+ {"query_id": 85019, "query": "Making an internship most effective, useful and fun for both parties"}
563
+ {"query_id": 199827, "query": "I don't understand how TDD helps me get a good design if I need a design to start testing it"}
564
+ {"query_id": 174762, "query": "How to show code samples in an interview?"}
565
+ {"query_id": 194373, "query": "Learning new concepts is an infinite loop. How do I go about it?"}
566
+ {"query_id": 6625, "query": "How to recruit programmers for an open source project and kick-start it?"}
567
+ {"query_id": 14975, "query": "What do you do with a heisenbug?"}
568
+ {"query_id": 218447, "query": "Do algorithms published in academic journals need to be licensed?"}
569
+ {"query_id": 99647, "query": "How do I adapt to pre-interview challenge questions?"}
570
+ {"query_id": 101164, "query": "How difficult is it to transition from a software test engineer to a software development engineer?"}
571
+ {"query_id": 138447, "query": "Can I show previous company work in a CV portfolio?"}
572
+ {"query_id": 24542, "query": "Choosing a functional programming language"}
573
+ {"query_id": 185671, "query": "Should methods always return from one place?"}
574
+ {"query_id": 125108, "query": "Will I ever be able to code client-side browser code in a language of my choice?"}
575
+ {"query_id": 252595, "query": "Android testing - bugs not reproducible"}
576
+ {"query_id": 199838, "query": "How can I avoid editing conflicts repeatedly when merging from one to branch to another?"}
577
+ {"query_id": 78956, "query": "I no longer want to be a developer"}
578
+ {"query_id": 159373, "query": "What backs up the claim that C++ can be faster than a JVM or CLR with JIT?"}
579
+ {"query_id": 102008, "query": "Why isn't the line count in Visual Studio zero-based?"}
580
+ {"query_id": 25600, "query": "What would you consider best practice workflow tools for web application (PHP) development?"}
581
+ {"query_id": 122071, "query": "What's cool about Lisp nowadays?"}
582
+ {"query_id": 244705, "query": "What kind of code would Kent Beck avoid unit testing?"}
583
+ {"query_id": 199803, "query": "Is the development of CLI apps considered \"backward\"?"}
584
+ {"query_id": 193269, "query": "Unit-testing functions without business logic (only checks)"}
585
+ {"query_id": 253650, "query": "How to write a user story specific to tasks in this case"}
586
+ {"query_id": 12773, "query": "Is the GoF book still the one to read?"}
587
+ {"query_id": 91945, "query": "How are you handling browser compatibility in the new \"rapid release\" world?"}
588
+ {"query_id": 51268, "query": "How important is Domain knowledge vs. Technical knowledge?"}
589
+ {"query_id": 87452, "query": "Internationalization : What things to think about?"}
590
+ {"query_id": 163408, "query": "How do I advertise for volunteers for my open source project"}
591
+ {"query_id": 221615, "query": "Why do dynamic languages make it more difficult to maintain large codebases?"}
592
+ {"query_id": 238057, "query": "Can the possibility of a data race be ignored in some cases? (while having concurrent threads)"}
593
+ {"query_id": 21256, "query": "Why do we study Java at university?"}
594
+ {"query_id": 221619, "query": "How to handle multiple similar projects? Why?"}
595
+ {"query_id": 66764, "query": "Recomendation for Math books related to computer science"}
596
+ {"query_id": 147185, "query": "How does a beginner programmer find a mentor for learning from doing?"}
597
+ {"query_id": 130743, "query": "How do I choose what code to review?"}
598
+ {"query_id": 115525, "query": "Packages organisation with MVC design pattern"}
599
+ {"query_id": 74386, "query": "How Do You Organize Your ASP.NET MVC 3 Applications?"}
600
+ {"query_id": 115769, "query": "What are these different Java versions for?"}
601
+ {"query_id": 196546, "query": "What is a good analogy to explain how software development is different than building a bridge?"}
602
+ {"query_id": 36731, "query": "Where do you draw the line for your perfectionism?"}
603
+ {"query_id": 7747, "query": "Do you think that exposure to BASIC can mutilate your mind?"}
604
+ {"query_id": 34559, "query": "How do you keep track of the authors of code?"}
605
+ {"query_id": 18059, "query": "How do you explain refactoring to a non-technical person?"}
606
+ {"query_id": 129520, "query": "Difference between static testing and code review"}
607
+ {"query_id": 200709, "query": "Is the usage of internal scope blocks within a function bad style?"}
608
+ {"query_id": 103133, "query": "Is there a canonical source for learning C# and .NET internals?"}
609
+ {"query_id": 134037, "query": "Advice for improving analytical skills and thought process"}
610
+ {"query_id": 206254, "query": "Difference between a server and a client"}
611
+ {"query_id": 209764, "query": "catch(Exception ex) would this example be a code smell?"}
612
+ {"query_id": 198936, "query": "How does a new programmer plan a code?"}
613
+ {"query_id": 138642, "query": "Is there a drawback in defining multiple small DRY classes, instead of bigger more repetitive classes?"}
614
+ {"query_id": 196990, "query": "OOP principles and method names"}
615
+ {"query_id": 138643, "query": "Why is Python used for high-performance/scientific computing (but Ruby isn't)?"}
616
+ {"query_id": 36961, "query": "Where can I find statistics / figures on how long testing should / could take?"}
617
+ {"query_id": 223815, "query": "Auto Transaction Failsafe's, Coldfusion Schedule Files"}
618
+ {"query_id": 46513, "query": "Working for international NGO's as a programmer"}
619
+ {"query_id": 107986, "query": "Should we encourage coding styles in favor of developer's autonomy, or discourage it in favor of consistency?"}
620
+ {"query_id": 163822, "query": "Code Measuring and Metrics Tools?"}
621
+ {"query_id": 21230, "query": "What are the pros and cons for the employer of code questions during an interview?"}
622
+ {"query_id": 114258, "query": "As a sole developer (for now), how should I be using Git?"}
623
+ {"query_id": 117766, "query": "How can I learn to write idiomatic C++?"}
624
+ {"query_id": 146272, "query": "Method size in an OOP language, for instance - in Java"}
625
+ {"query_id": 23652, "query": "How can I promote software reuse in a large company?"}
626
+ {"query_id": 97269, "query": "How do you handle a graphic designer who thinks he's a web designer?"}
627
+ {"query_id": 80826, "query": "What should I do to leave a job professionally?"}
628
+ {"query_id": 233615, "query": "Joel Test: Quiet working space as a developer?"}
629
+ {"query_id": 194106, "query": "What are the advantages of server-side Javascript and when would you use it?"}
630
+ {"query_id": 212932, "query": "What's better either pass a class instance to the method or just primitives?"}
631
+ {"query_id": 9944, "query": "What is the difference between software engineer and software developer?"}
632
+ {"query_id": 254339, "query": "When to to use which - Interface vs. Abstract Class?"}
633
+ {"query_id": 193496, "query": "What is the netiquette for forking other people's open source projects?"}
634
+ {"query_id": 9948, "query": "How to sell a high SO reputation at an interview"}
635
+ {"query_id": 186932, "query": "How to deal with Ghost bugs which appears in undocumented test-case scenarios?"}
636
+ {"query_id": 202903, "query": "Do teams get more productive by adding more developers?"}
637
+ {"query_id": 208698, "query": "Multiple meanings for one variable?"}
638
+ {"query_id": 147134, "query": "How should I test randomness?"}
639
+ {"query_id": 81705, "query": "Rewriting GPL code to change license"}
640
+ {"query_id": 35610, "query": "test driven development - Who should write the tests?"}
641
+ {"query_id": 52158, "query": "What are best practices when giving a presentation to programmers?"}
642
+ {"query_id": 253453, "query": "How to convey that a project is too ambitious?"}
643
+ {"query_id": 211610, "query": "Refactorable God v.s. too many classe"}
644
+ {"query_id": 7536, "query": "If you favor \"T *var\", do you ever write \"T*\"?"}
645
+ {"query_id": 222508, "query": "Can you call yourself a programmer if you don't understand how a computer works"}
646
+ {"query_id": 100095, "query": "Should organizations penalize developers for the amount of defect reports filed against code they worked on?"}
647
+ {"query_id": 8886, "query": "Can someone find a job as a programmer without an education?"}
648
+ {"query_id": 125373, "query": "How should I write my if statements?"}
649
+ {"query_id": 130948, "query": "Stack-instructions machines"}
650
+ {"query_id": 180165, "query": "Hardware requirements"}
651
+ {"query_id": 26901, "query": "How to convince your boss to give you a better developer machine?"}
652
+ {"query_id": 195656, "query": "Power of HTML5?"}
653
+ {"query_id": 197838, "query": "What are the downsides of mixing tabs and spaces?"}
654
+ {"query_id": 195416, "query": "Why do we still use a programming language instead of using just SQL?"}
655
+ {"query_id": 32571, "query": "design pattern for unit testing?"}
656
+ {"query_id": 170138, "query": "Is this a violation of the Liskov Substitution Principle?"}
657
+ {"query_id": 79624, "query": "What is the reason most people have predetermined fear of programming & how should skilled make them fearless?"}
658
+ {"query_id": 210532, "query": "What are the alternatives to resx file"}
659
+ {"query_id": 91976, "query": "On developing deep programming knowledge"}
660
+ {"query_id": 137344, "query": "How does one decide if a data object type should be designed to be immutable?"}
661
+ {"query_id": 234962, "query": "What are the advantages of recursion compared to iteration?"}
662
+ {"query_id": 236903, "query": "What are the benefits of using Polymorphism 'in the real world' - as opposed to not using it?"}
663
+ {"query_id": 71904, "query": "Scrum for a single programmer?"}
664
+ {"query_id": 194321, "query": "Software Design and architecture from Scratch"}
665
+ {"query_id": 231491, "query": "Why is quality engineering difficult?"}
666
+ {"query_id": 6476, "query": "Have you tried programming via Collaborative Text Editing?"}
667
+ {"query_id": 7565, "query": "How to learn Agile as a Solo Developer"}
668
+ {"query_id": 253042, "query": "Is it a newbie mistake to avoid branching?"}
669
+ {"query_id": 189983, "query": "Obsessed with finding most elegant solution"}
670
+ {"query_id": 120628, "query": "Is using build-in sorting considered cheating in practice tests?"}
671
+ {"query_id": 234511, "query": "What is the best practice for arranging third-party library licenses \"paperwork\"?"}
672
+ {"query_id": 229170, "query": "Scrum: requirements clarification vs changing scope"}
673
+ {"query_id": 199303, "query": "How can a non-developer help promote/develop unit tests?"}
674
+ {"query_id": 47370, "query": "Java dev learning Python: what concepts do I need to wrap my head around?"}
675
+ {"query_id": 201844, "query": "Ways for a young programmer to not feel intimidated at my first REAL programming job?"}
676
+ {"query_id": 64722, "query": "Getting Overwhelmed: Tips for noobs"}
677
+ {"query_id": 220343, "query": "Which is better approach for writing automated tests?"}
678
+ {"query_id": 230145, "query": "what is the meaning of f(n) = O(g(n))?"}
679
+ {"query_id": 118301, "query": "A simple ways to improve the release quality in RAD environment"}
680
+ {"query_id": 140004, "query": "Why choose an established CMS as opposed to building one from scratch?"}
681
+ {"query_id": 211640, "query": "Switch Parent Children relationship in C#"}
682
+ {"query_id": 175561, "query": "When to open source a project under development?"}
683
+ {"query_id": 98749, "query": "Work in a company as a Soft. Engineer or take a Master?"}
684
+ {"query_id": 98509, "query": "Why would a company develop an atmosphere which discourage code comments?"}
685
+ {"query_id": 196260, "query": "Does a programming language have to be compiled to be considered a programming language?"}
686
+ {"query_id": 104122, "query": "Dealing with change requests from clients for an old system that only take 5 minutes to implement"}
687
+ {"query_id": 190955, "query": "Using public final rather than private getters"}
688
+ {"query_id": 156848, "query": "Designing a library that is easy to use: composition or inheritance"}
689
+ {"query_id": 166884, "query": "Should I extract specific functionality into a function and why?"}
690
+ {"query_id": 138182, "query": "Can Javascript code be encrypted making it hard for someone to copy?"}
691
+ {"query_id": 253496, "query": "How do we add software to a machine?"}
692
+ {"query_id": 78903, "query": "How can I be more productive at work? (additional context inside)"}
693
+ {"query_id": 139037, "query": "Simple & short license notice for proprietary code"}
694
+ {"query_id": 175594, "query": "C++ - Constructor or Initialize Method to Startup"}
695
+ {"query_id": 210327, "query": "What is the one or the few major changes from Java 6 to Java 7, couldn't JBoss do that already with Java 5?"}
696
+ {"query_id": 153581, "query": "What does RESTful web applications mean?"}
697
+ {"query_id": 131314, "query": "Certifications needed to get an interview with no experience and no degree."}
698
+ {"query_id": 95465, "query": "Language Choice for Algorithm Competitions"}
699
+ {"query_id": 186465, "query": "What will be the better way for data retrieval on application that needs to handle limited amount of data?"}
700
+ {"query_id": 253026, "query": "Python case statement?"}
701
+ {"query_id": 140264, "query": "Is a company order to switch to a certain IDE a red flag?"}
702
+ {"query_id": 140266, "query": "To program in free time as a programmer, is to show that programming is passion. If not, is the programmer good?"}
703
+ {"query_id": 253267, "query": "Equal or less than 15 lines per method(function) principle?"}
704
+ {"query_id": 109818, "query": "Is code like this a \"train wreck\" (in violation of Law of Demeter)?"}
705
+ {"query_id": 213603, "query": "Handling Server Response Timeouts"}
706
+ {"query_id": 46252, "query": "How to explain a layperson why a developer should not be interrupted while neck-deep in coding?"}
707
+ {"query_id": 53612, "query": "Is it essential to learn algorithms to be a real programmer?"}
708
+ {"query_id": 175583, "query": "Alternative to \"inheritance versus composition?\""}
709
+ {"query_id": 81062, "query": "Data input validation - Where? How much?"}
710
+ {"query_id": 186438, "query": "Why does File.Open in .Net throw exceptions and not follow exception handling best practices?"}
711
+ {"query_id": 221009, "query": "SPA thin or thick architecture"}
712
+ {"query_id": 12472, "query": "How to deal with customers who don't understand the complexity of their requests?"}
713
+ {"query_id": 165735, "query": "Improving without mentor"}
714
+ {"query_id": 7126, "query": "Advantages of object-oriented programming"}
715
+ {"query_id": 200545, "query": "Over thinking development"}
716
+ {"query_id": 118108, "query": "Why is an array of characters called a String in Object Oriented languages?"}
717
+ {"query_id": 224752, "query": "In which file types I should include the copyright header?"}
718
+ {"query_id": 209129, "query": "Without C++-like destructors, how do we return resources that aren't managed by garbage collector in Java?"}
719
+ {"query_id": 89819, "query": "Getting management approval to invest more in unit testing"}
720
+ {"query_id": 150479, "query": "How to make sure the application source code has a proper documentation for new programmers?"}
721
+ {"query_id": 230199, "query": "How to identify performance bottlenecks in your software"}
722
+ {"query_id": 142612, "query": "When Agile goes wrong"}
723
+ {"query_id": 235645, "query": "Singleton: Why is a global point of access bad?"}
724
+ {"query_id": 20092, "query": "How do I convince my company to contribute towards Open-Source?"}
725
+ {"query_id": 121998, "query": "MIT vs. BSD vs. Dual License"}
726
+ {"query_id": 54959, "query": "How do I know when my development skills are good enough for a real job?"}
727
+ {"query_id": 211678, "query": "How to do you judge the value of using TDD or plain unit testing in an Open Source project? Is there a good rule of thumb?"}
728
+ {"query_id": 210346, "query": "After years of working alone, other developers will finally see my (buggy) code. What should I do?"}
729
+ {"query_id": 85691, "query": "Building websites, which is the better approach MVP or MVC?"}
730
+ {"query_id": 165725, "query": "Git branching and tagging best practices"}
731
+ {"query_id": 98758, "query": "Will using Linux make me a better programmer?"}
732
+ {"query_id": 210360, "query": "Stopping developers committing to the wrong branch on DVCS"}
733
+ {"query_id": 255031, "query": "How 'child proof' should i write code as a solo programmer?"}
734
+ {"query_id": 26642, "query": "How useful is a portfolio of home projects?"}
735
+ {"query_id": 221234, "query": "Is there a license that forbids distribution and gives a Github repo owner full rights?"}
736
+ {"query_id": 28825, "query": "Open Source code bounties"}
737
+ {"query_id": 97660, "query": "What recommendations can you give in managing a team of remote software engineers?"}
738
+ {"query_id": 186690, "query": "Relative value of manual vs automated testing"}
739
+ {"query_id": 136195, "query": "Do I need to know how to program before going to university if I want to study programming?"}
740
+ {"query_id": 180904, "query": "Are header files actually good?"}
741
+ {"query_id": 108309, "query": "Extracting user requirements from a person who does not know how to express himself"}
742
+ {"query_id": 9320, "query": "Why is Lisp useful?"}
743
+ {"query_id": 45378, "query": "Is commented out code really always bad?"}
744
+ {"query_id": 164665, "query": "Programming languages with a Lisp-like syntax extension mechanism"}
745
+ {"query_id": 201894, "query": "embedding programming languages into other languages"}
746
+ {"query_id": 143722, "query": "Is there a language that transcompiles to C with a better syntax?"}
747
+ {"query_id": 221030, "query": "What is the difference between apache and tomcat in the xampp control panel?"}
748
+ {"query_id": 152678, "query": "Save match details to SQLite or XML?"}
749
+ {"query_id": 51465, "query": "How to differentiate between trivial and non-trivial software?"}
750
+ {"query_id": 222362, "query": "If I fork an open source project and make improvements in the fork, will it or I offend the original authors?"}
751
+ {"query_id": 225870, "query": "Deploying Database Schema changes in a patching process"}
752
+ {"query_id": 34485, "query": "What is the difference between all-static-methods and applying a singleton pattern?"}
753
+ {"query_id": 151103, "query": "What is the purpose of \"re-type your email\" field?"}
754
+ {"query_id": 13786, "query": "How is software scalability measured?"}
755
+ {"query_id": 212300, "query": "Why are CIL and CLR required in .NET?"}
756
+ {"query_id": 159089, "query": "Return magic value, throw exception or return false on failure?"}
757
+ {"query_id": 103089, "query": "How to improve my programming knowledge?"}
758
+ {"query_id": 97446, "query": "If a variable has getter and setter, should it be public?"}
759
+ {"query_id": 204938, "query": "When is it okay to open-source something?"}
760
+ {"query_id": 133937, "query": "Methods to rewrite a program"}
761
+ {"query_id": 246532, "query": "Estimated work remaining doesn't get lower"}
762
+ {"query_id": 219198, "query": "Why do modern websites still insist on archaic username/password requirements?"}
763
+ {"query_id": 118558, "query": "How do I make code open-source?"}
764
+ {"query_id": 74580, "query": "Looking for Case Studies of How TDD Improved Quality and/or Speed of Development"}
765
+ {"query_id": 175309, "query": "Code maintenance: To add comments in code or to just leave it to the version control?"}
766
+ {"query_id": 116148, "query": "Which is more important career-wise: Length of time spent on a project, or personal projects?"}
767
+ {"query_id": 215826, "query": "Make methods that do not depend on instance fields, static?"}
768
+ {"query_id": 138396, "query": "How to Mentor a Junior Developer"}
769
+ {"query_id": 144829, "query": "Standards for mixing languages within one application?"}
770
+ {"query_id": 37987, "query": "I've been hired on as a entry-level game developer at a company and have little/no experience in API programming, what should I expect?"}
771
+ {"query_id": 14645, "query": "What are effective interview questions?"}
772
+ {"query_id": 214734, "query": "Is programming in layers real?"}
773
+ {"query_id": 133782, "query": "How to properly approach a GitHub workflow as a solo developer?"}
774
+ {"query_id": 38265, "query": "What does the suffix after software engineer/developer job titles mean? (e.g. Software Developer III)"}
775
+ {"query_id": 192, "query": "Is test coverage an adequate measure of code quality?"}
776
+ {"query_id": 59520, "query": "Good interview programming projects"}
777
+ {"query_id": 111757, "query": "Raw JavaScript or jQuery? Where to start from?"}
778
+ {"query_id": 26030, "query": "At what point during a project is it unreasonable to leave?"}
779
+ {"query_id": 84966, "query": "Should Git be used for documentation and project management? Should the code be in a separate repository?"}
780
+ {"query_id": 86904, "query": "Why do most of us use 'i' as a loop counter variable?"}
781
+ {"query_id": 202770, "query": "Why should I adopt MVC?"}
782
+ {"query_id": 170966, "query": "Isn't class scope purely for organization?"}
783
+ {"query_id": 60994, "query": "Why is software schedule estimation so hard?"}
784
+ {"query_id": 246354, "query": "What are the benefits of learning an old programming language?"}
785
+ {"query_id": 211477, "query": "Test Driven Development vs Behavior Driven Development"}
786
+ {"query_id": 135970, "query": "how can I improve my c++ skills"}
787
+ {"query_id": 92339, "query": "When do you use a struct instead of a class?"}
788
+ {"query_id": 17568, "query": "As a programmer, are you required to do timesheets?"}
789
+ {"query_id": 107265, "query": "When should I start learning a PHP Framework"}
790
+ {"query_id": 227818, "query": "Is it bad practice to encapsulate a single operation in a class?"}
791
+ {"query_id": 251707, "query": "Client-side coding: How to prevent malicious use?"}
792
+ {"query_id": 19750, "query": "How to get back to Software Engineering after a break?"}
793
+ {"query_id": 199162, "query": "Should I write compact code or code with lots of spaces?"}
794
+ {"query_id": 169962, "query": "Hiring developers - listing IDE as a requirement?"}
795
+ {"query_id": 200362, "query": "Does dedicated maintenance work hamper a programmer's career?"}
796
+ {"query_id": 200360, "query": "How to generate random numbers with a (negative) sloping distribution?"}
797
+ {"query_id": 245274, "query": "How to define different names for the same type and have the compiler check them?"}
798
+ {"query_id": 212575, "query": "Why are algorithms and data structures important?"}
799
+ {"query_id": 124817, "query": "Using frameworks or writing code without any framework ? Which is better for 3 months aged PHP programmer?"}
800
+ {"query_id": 32956, "query": "What are the common revenue models for free-software companies?"}
801
+ {"query_id": 131381, "query": "What are the best-practice / norms to order functions in files or classes?"}
802
+ {"query_id": 179763, "query": "How to create a manager class without global variables nor singletons?"}
803
+ {"query_id": 118140, "query": "How can I get the benefit of working with a co-worker if I have no co-workers?"}
804
+ {"query_id": 95637, "query": "How can I tell in an interview if a programmer is passionate about programming?"}
805
+ {"query_id": 98905, "query": "How can I get better at whiteboard interview questions?"}
806
+ {"query_id": 133565, "query": "Programming with a group of people I've never met"}
807
+ {"query_id": 56031, "query": "Version control comments - past or present tense"}
808
+ {"query_id": 246568, "query": "Linking a GPL executable from proprietary .bat script"}
809
+ {"query_id": 94780, "query": "Do Diversified Skills Foster or Hinder Specialization?"}
810
+ {"query_id": 223250, "query": "Do Scrum sprints mean to work at the fastest pace possible?"}
811
+ {"query_id": 81478, "query": "Starting career as SDET, is this a big block to be SDE later (1 or 2 years later)"}
812
+ {"query_id": 119466, "query": "Traditional ASP.Net WebForms vs ASP.Net MVC"}
813
+ {"query_id": 143127, "query": "Android Development: MVC vs MVVM"}
814
+ {"query_id": 133330, "query": "What's wrong with mutability and can it be desirable?"}
815
+ {"query_id": 235468, "query": "How can I make my logging more useful?"}
816
+ {"query_id": 179554, "query": "What is the difference between technical specifications and design documents?"}
817
+ {"query_id": 72768, "query": "Does \"Inversion of Control\" promote \"Anemic Domain Model\"?"}
818
+ {"query_id": 213452, "query": "Is there any reason zero should still equal false in a new programming language?"}
819
+ {"query_id": 152094, "query": "null pointers vs. Null Object Pattern"}
820
+ {"query_id": 95626, "query": "Getting start with Zend PHP framwork"}
821
+ {"query_id": 214784, "query": "Rails: The Law of Demeter"}
822
+ {"query_id": 211276, "query": "Why would I ever use delegates if I'm not doing events?"}
823
+ {"query_id": 135993, "query": "How can I quantify the amount of technical debt that exists in a project?"}
824
+ {"query_id": 36297, "query": "Switching Programming Languages"}
825
+ {"query_id": 142292, "query": "Are there code reviews in opensource projects? If so, what tools are used to do this?"}
826
+ {"query_id": 147977, "query": "Is it wrong to use a boolean parameter to determine behavior?"}
827
+ {"query_id": 29534, "query": "Are debugging skills important to become a good programmer?"}
828
+ {"query_id": 213449, "query": "How do I create every permutation"}
829
+ {"query_id": 233038, "query": "Why many Ruby gems won't work on Windows"}
830
+ {"query_id": 117030, "query": "What is the point of Java's package naming convention?"}
831
+ {"query_id": 96504, "query": "How can I teach a bright person, with no programming experience, how to program?"}
832
+ {"query_id": 176471, "query": "Seeking documents on the philosophy of Google's Go?"}
833
+ {"query_id": 97832, "query": "How to motivate someone(including myself) not to give up learning something?"}
834
+ {"query_id": 237431, "query": "Algorithm to calculate scheduling of task list, check feasibility"}
835
+ {"query_id": 223027, "query": "At what point is version control needed?"}
836
+ {"query_id": 115910, "query": "Does adding unit tests make sense for well-known legacy code?"}
837
+ {"query_id": 201237, "query": "I am incompetent; how can I fix it?"}
838
+ {"query_id": 125715, "query": "Do we still have a case against the goto statement?"}
839
+ {"query_id": 145722, "query": "Freelancing - Share the source code?"}
840
+ {"query_id": 146810, "query": "Interpreting profiling results"}
841
+ {"query_id": 110471, "query": "Open source projects - motivation"}
842
+ {"query_id": 50755, "query": "Should I keep investing into data structures and algorithms?"}
843
+ {"query_id": 236571, "query": "Understanding object-oriented programming: why is it important?"}
844
+ {"query_id": 111788, "query": "Selling a webapp: I don't want sell my source code!!! What do I sell so?"}
845
+ {"query_id": 114819, "query": "Are 9 to 5 programmers looked down upon?"}
846
+ {"query_id": 154679, "query": "Reformatting and version control"}
847
+ {"query_id": 108395, "query": "Application development practices in a non-software company"}
848
+ {"query_id": 29513, "query": "Is reinventing the wheel really all that bad?"}
849
+ {"query_id": 166895, "query": "What are the problems python 3 new features solve?"}
850
+ {"query_id": 240612, "query": "Forking BSD-Project and changing license"}
851
+ {"query_id": 93462, "query": "Career Prospects: Women at Management positions in Software"}
852
+ {"query_id": 113726, "query": "Simplifying Database Schema for Extensibility by non-expert Users"}
853
+ {"query_id": 2757, "query": "How many monitors do you use? Why? How they are used?"}
854
+ {"query_id": 204521, "query": "Is there a canonical source supporting \"all-surrogates\"?"}
855
+ {"query_id": 122437, "query": "How to organize functional programs"}
856
+ {"query_id": 190542, "query": "Steps to open source a small project"}
857
+ {"query_id": 135701, "query": "Why is it so difficult to fix buffer overflows?"}
858
+ {"query_id": 93016, "query": "Is age a factor when looking for internships?"}
859
+ {"query_id": 198240, "query": "Approaches to isolating tests that require a database?"}
860
+ {"query_id": 190758, "query": "Should I check integrity in my application code or defer to the database?"}
861
+ {"query_id": 130256, "query": "Should I focus on web development or try other technologies?"}
862
+ {"query_id": 120488, "query": "Programming in academic environment vs industry environment"}
863
+ {"query_id": 144892, "query": "Depend on built technology, or build your own"}
864
+ {"query_id": 42938, "query": "Dealing with frustration when things don't work"}
865
+ {"query_id": 93245, "query": "Software Testing Techniques"}
866
+ {"query_id": 62765, "query": "How can I get into \"programmer mind\" more quickly and more often?"}
867
+ {"query_id": 91064, "query": "Mono & Commercial Projects"}
868
+ {"query_id": 92393, "query": "What does the Spring framework do? Should I use it? Why or why not?"}
869
+ {"query_id": 228973, "query": "Upgrading old ASP classic to newer standards"}
870
+ {"query_id": 120477, "query": "What Part of Your Project Should be in Source Code Control?"}
871
+ {"query_id": 84778, "query": "Trailing forward slash in directory names - good programming practice?"}
872
+ {"query_id": 249892, "query": "Started wrong with a project. Should I start over?"}
873
+ {"query_id": 52961, "query": "Need for a framework"}
874
+ {"query_id": 1200, "query": "Is there a canonical tutorial or book on functional programming concepts?"}
875
+ {"query_id": 145518, "query": "Teaching Programming to Kids"}
876
+ {"query_id": 215427, "query": "What should I do if I have a genius team lead which does not share?"}
cqadupstack-stats.jsonl ADDED
@@ -0,0 +1,652 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 19103, "query": "How to statistically compare two time series?"}
2
+ {"query_id": 43698, "query": "Central Limit Theorem"}
3
+ {"query_id": 67782, "query": "How to compare two groups when one only has one data point?"}
4
+ {"query_id": 112204, "query": "estimator(preferably unbiased) of $\\ln E[X]$"}
5
+ {"query_id": 66215, "query": "Calculation of AUC value from ROC Curve"}
6
+ {"query_id": 19583, "query": "How to read quantiles from R2WinBUGS?"}
7
+ {"query_id": 46720, "query": "Repeated measure problem"}
8
+ {"query_id": 64156, "query": "Should I use variance or standard deviation as weights to combine independent measurements?"}
9
+ {"query_id": 46608, "query": "Dependent Bernoulli trials"}
10
+ {"query_id": 41038, "query": "Conditional Expectation / Estimator Confusion"}
11
+ {"query_id": 97075, "query": "Forecasting daily online visits in r"}
12
+ {"query_id": 43339, "query": "What's wrong with XKCD's Frequentists vs. Bayesians comic?"}
13
+ {"query_id": 33413, "query": "Continuous dependent variable with ordinal independent variable"}
14
+ {"query_id": 31598, "query": "Is Amazon's \"average rating\" misleading?"}
15
+ {"query_id": 51086, "query": "p-values for all lags in a cross-correlation calculation"}
16
+ {"query_id": 55446, "query": "Multivariate regression with Stata; Joint Hypothesis Testing"}
17
+ {"query_id": 80885, "query": "Graphing data large and small"}
18
+ {"query_id": 78329, "query": "\"optimum\" tree from random forests"}
19
+ {"query_id": 113781, "query": "trouble using highfrequency package in R"}
20
+ {"query_id": 35719, "query": "Improvement of regression model"}
21
+ {"query_id": 4964, "query": "Is interaction possible between two continuous variables?"}
22
+ {"query_id": 62092, "query": "Bottom to top explanation of the Mahalanobis distance?"}
23
+ {"query_id": 20583, "query": "Is the percent of total deviance explained a useful model summary?"}
24
+ {"query_id": 67676, "query": "Is a test with small effect size and high sensitivity meaningful or useful?"}
25
+ {"query_id": 68528, "query": "Probability distribution and uniform distribution in a sphere"}
26
+ {"query_id": 55691, "query": "Regarding p-values, why 1% and 5%? Why not 6% or 10%?"}
27
+ {"query_id": 52063, "query": "Why are the number of false positives independent of sample size, if we use p-values to compare two independent datasets?"}
28
+ {"query_id": 78795, "query": "Interpreting a confidence interval"}
29
+ {"query_id": 83900, "query": "standard deviation help please!!!"}
30
+ {"query_id": 3402, "query": "What's the accuracy of data obtained through a random sample?"}
31
+ {"query_id": 6, "query": "The Two Cultures: statistics vs. machine learning?"}
32
+ {"query_id": 7, "query": "Locating freely available data samples"}
33
+ {"query_id": 77349, "query": "Good books for Duration Analysis"}
34
+ {"query_id": 4612, "query": "Good econometrics textbooks?"}
35
+ {"query_id": 32318, "query": "Difference between standard error and standard deviation"}
36
+ {"query_id": 13810, "query": "Threshold for correlation coefficient to indicate statistical significance of a correlation in a correlation matrix"}
37
+ {"query_id": 89472, "query": "Why would adjusting in a model change the direction of an effect?"}
38
+ {"query_id": 113877, "query": "Central Limit Theorem, what does it really say?"}
39
+ {"query_id": 41379, "query": "How do I interpret the results of a regression which involves interaction terms?"}
40
+ {"query_id": 44888, "query": "Deletion residuals"}
41
+ {"query_id": 24911, "query": "Significance tests"}
42
+ {"query_id": 11602, "query": "Training with the full dataset after cross-validation?"}
43
+ {"query_id": 29364, "query": "Probability associated with experiencing all outcomes"}
44
+ {"query_id": 31450, "query": "Confusion in linear regression confidence interval calculation"}
45
+ {"query_id": 10517, "query": "Identify probability distributions"}
46
+ {"query_id": 29126, "query": "Confidence interval for the height of a histogram bar"}
47
+ {"query_id": 33519, "query": "Distribution from which to sample integers evenly between 1 and 1000?"}
48
+ {"query_id": 10510, "query": "What are good references containing arguments against null hypothesis significance testing?"}
49
+ {"query_id": 70846, "query": "Imputing values using additional data w/o knowing underlying structure"}
50
+ {"query_id": 88388, "query": "Cross-validation for mixed-effect logistic regression?"}
51
+ {"query_id": 70605, "query": "PMF of two Poisson RV subtracted from each other"}
52
+ {"query_id": 112779, "query": "APA-style forest plot using metafor"}
53
+ {"query_id": 92751, "query": "What is the best way to analyze data from the Likert scale"}
54
+ {"query_id": 68421, "query": "Mean centering and setting standard deviation to 1 in data"}
55
+ {"query_id": 39044, "query": "how Neural Network works on image recognition"}
56
+ {"query_id": 63099, "query": "Book recommendations for beginners about probability distributions"}
57
+ {"query_id": 18241, "query": "Chi-squared goodness-of-fit statistic if expected frequency is zero"}
58
+ {"query_id": 45961, "query": "Sanity check question about correlation between log-normal random variables"}
59
+ {"query_id": 44992, "query": "What are the values p, d, q, in ARIMA?"}
60
+ {"query_id": 108297, "query": "dichotomizing a predictor variable"}
61
+ {"query_id": 41247, "query": "Risk of extinction of Schr\u00f6dinger's cats"}
62
+ {"query_id": 82947, "query": "Intuitive examples of importance sampling"}
63
+ {"query_id": 3549, "query": "F and t statistics in a regression"}
64
+ {"query_id": 59955, "query": "Variance of superset from variance of subsets"}
65
+ {"query_id": 76398, "query": "Ordinal item on Likert scale as dependent variable in regression"}
66
+ {"query_id": 61906, "query": "Covariate vs. factors"}
67
+ {"query_id": 35929, "query": "Why we solve the dual problem in SVM?"}
68
+ {"query_id": 87168, "query": "the relationship between hypothesis test and confidence interval?"}
69
+ {"query_id": 31326, "query": "How should one interpret the comparison of means from different sample sizes?"}
70
+ {"query_id": 67571, "query": "How can I group numerical data into naturally forming \"brackets\"? (e.g. income)"}
71
+ {"query_id": 102744, "query": "Log and natural log"}
72
+ {"query_id": 949, "query": "When is logistic regression solved in closed form?"}
73
+ {"query_id": 31327, "query": "Power analysis of a secondary data set with a multi-level model"}
74
+ {"query_id": 92661, "query": "How to show that the $E[x_i] = \\bar{X}$"}
75
+ {"query_id": 68431, "query": "Interpretting LASSO variable trace plots"}
76
+ {"query_id": 90243, "query": "One-Tailed Fisher's Exact Test"}
77
+ {"query_id": 92788, "query": "What is this kind of graph called? (2D grid with a color-coded scale for a 3rd variable)"}
78
+ {"query_id": 113334, "query": "Mann Whitney test with unequal variances"}
79
+ {"query_id": 69407, "query": "How do I write a mathematical equation for ARIMA (2,1,0) x (0,2,2) period 12"}
80
+ {"query_id": 78000, "query": "Random Forests and Feature selection"}
81
+ {"query_id": 10613, "query": "Why are p-values uniformly distributed under the null hypothesis?"}
82
+ {"query_id": 26073, "query": "Reference with distributions with various properties"}
83
+ {"query_id": 3438, "query": "Calculating percentile of normal distribution"}
84
+ {"query_id": 32520, "query": "Sequence mining in univariate discrete data using R"}
85
+ {"query_id": 82624, "query": "GLMM multilevel hierarchical model with R"}
86
+ {"query_id": 57662, "query": "spss 20 for mac: how to get probabilities after running a binary logistic regression"}
87
+ {"query_id": 77038, "query": "Covariance matrix proposal distribution"}
88
+ {"query_id": 114674, "query": "lsmeans: how to have mean and SD from pairwise comparison?"}
89
+ {"query_id": 101102, "query": "Can non-normal data be used for factor analysis?"}
90
+ {"query_id": 5853, "query": "Forcing a set of numbers to a gaussian bell-curve"}
91
+ {"query_id": 32405, "query": "How is Poisson distribution different to normal distribution?"}
92
+ {"query_id": 38053, "query": "Help with pretest-postest data analysis"}
93
+ {"query_id": 92895, "query": "Odds Ratio Coefficient"}
94
+ {"query_id": 72940, "query": "Covariance matrix of least squares estimator $\\hat{\\beta}$"}
95
+ {"query_id": 23938, "query": "How to correlate ordinal and nominal variables in SPSS?"}
96
+ {"query_id": 90113, "query": "When I add higher order terms in a regression, do I need to add the main effect?"}
97
+ {"query_id": 16287, "query": "Assessing error of a spatial interpolation algorithm"}
98
+ {"query_id": 43529, "query": "Using PCA to reduce the number of variables split into groups"}
99
+ {"query_id": 56461, "query": "Book Recommendation for Mathematical Statistics"}
100
+ {"query_id": 38290, "query": "Why does standard error not involve population size?"}
101
+ {"query_id": 55131, "query": "Solved Assumptions of Linear Regression"}
102
+ {"query_id": 20425, "query": "having trouble applying hidden markov models to my game"}
103
+ {"query_id": 45825, "query": "What hypothesis for A is better than B?"}
104
+ {"query_id": 59851, "query": "Meaning of significance test"}
105
+ {"query_id": 1266, "query": "A non-parametric repeated-measures multi-way Anova in R?"}
106
+ {"query_id": 80555, "query": "Statistical test for a random die roll?"}
107
+ {"query_id": 81880, "query": "Logistic Regression - Model Selection Method"}
108
+ {"query_id": 5504, "query": "Normal distribution probability"}
109
+ {"query_id": 80791, "query": "Consistency of OLS"}
110
+ {"query_id": 5747, "query": "If A and B are correlated with C, why are A and B not necessarily correlated?"}
111
+ {"query_id": 15164, "query": "Fisher's exact test on 2x4 table"}
112
+ {"query_id": 15285, "query": "Problem with calculating $R^2$"}
113
+ {"query_id": 18434, "query": "R-squared: X \"explains\" the percentage of variation of the Y values. Does axis order matter?"}
114
+ {"query_id": 67243, "query": "Determining an optimum and distribution range for a given species abundance vs an environmental gradient data"}
115
+ {"query_id": 70899, "query": "What correlation makes a matrix singular and what are implications of singularity or near-singularity?"}
116
+ {"query_id": 94747, "query": "How to digitize an image graph to excel data?"}
117
+ {"query_id": 108085, "query": "Interpretation of Linear SVM Coefficients"}
118
+ {"query_id": 46908, "query": "R vs Python for Data Analysis"}
119
+ {"query_id": 56350, "query": "How to compute probabilities of normally distributed variables?"}
120
+ {"query_id": 2493, "query": "Managing error with GPS routes (theoretical framework?)"}
121
+ {"query_id": 46903, "query": "Can we apply inferential statistics on the entire population?"}
122
+ {"query_id": 20514, "query": "Books for self-studying time series analysis?"}
123
+ {"query_id": 90380, "query": "Interpreting negative coordinates and origin in 2D correspondence analysis plot"}
124
+ {"query_id": 61944, "query": "Multivariate normal distribution?"}
125
+ {"query_id": 32864, "query": "How to get SSE for predictions using SAS?"}
126
+ {"query_id": 3215, "query": "Trigonometric operations on standard deviations"}
127
+ {"query_id": 99192, "query": "Why should the feature be standardized before feeding to the neural network algorithm"}
128
+ {"query_id": 103863, "query": "Are there concerns with doing a generalized additive model with a smoothing term of multiple variables?"}
129
+ {"query_id": 113442, "query": "wilcox.test usage in R"}
130
+ {"query_id": 6966, "query": "Why continue to teach and use hypothesis testing?"}
131
+ {"query_id": 89038, "query": "Interpreting estimates from generalized models in R"}
132
+ {"query_id": 113680, "query": "Find linear subsets in a 2D point (xy) data"}
133
+ {"query_id": 66273, "query": "Wilcoxon two-sample test approximated by z-statistic"}
134
+ {"query_id": 71999, "query": "Where can I find a citable reference for the formula for inverse distributions?"}
135
+ {"query_id": 92794, "query": "Intuition For Overlapping Confidence Intervals and Statistical Significance"}
136
+ {"query_id": 19771, "query": "What are the implications of a regression model failing the JB normality test?"}
137
+ {"query_id": 20881, "query": "Truncated normal distribution with WinBUGS"}
138
+ {"query_id": 90499, "query": "How to include number of not-yet-decayed radioactive atoms in MLE?"}
139
+ {"query_id": 93768, "query": "impact on hypothesis if t-stat is equal to t-critical value for one-tail two-sample t-test?"}
140
+ {"query_id": 102791, "query": "Convergence of a sequence of random variables"}
141
+ {"query_id": 19891, "query": "Interpreting main effect and interaction"}
142
+ {"query_id": 41685, "query": "Why does increasing the number of features reduce performance?"}
143
+ {"query_id": 51907, "query": "What does it mean for two variables to be uncorrelated? How is it possible for two variables to be strongly related but still uncorrelated"}
144
+ {"query_id": 104970, "query": "Quantitative method to determine necessary and sufficient causes"}
145
+ {"query_id": 111002, "query": "Find relations without confounding variables?"}
146
+ {"query_id": 91467, "query": "Understanding the effect of each parameter in a Monte Carlo Simulation"}
147
+ {"query_id": 43748, "query": "How to test for equality of means for proportions? And two-sided or one-sided?"}
148
+ {"query_id": 44838, "query": "How are the standard errors of coefficients calculated in a regression?"}
149
+ {"query_id": 45807, "query": "What are the chances my wife has lupus?"}
150
+ {"query_id": 114516, "query": "First order statistics (min) of n non-identical but independent normal variates"}
151
+ {"query_id": 78374, "query": "binomial GLM output hugely affected by a factor level with all zeros"}
152
+ {"query_id": 90130, "query": "How to test a Random Number generator in R?"}
153
+ {"query_id": 109063, "query": "Algorithm for rating books: Relative perception"}
154
+ {"query_id": 82996, "query": "Calculate AUC of a logistic regression model"}
155
+ {"query_id": 25094, "query": "How to interpret regression coefficients for a variable with takes positive and negative values?"}
156
+ {"query_id": 6619, "query": "Probability of getting between"}
157
+ {"query_id": 62916, "query": "Confidence interval for the product of two parameters"}
158
+ {"query_id": 82992, "query": "Using principal component analysis (PCA) for feature selection in regression"}
159
+ {"query_id": 56124, "query": "subtraction of two multivariate normal distribution"}
160
+ {"query_id": 57214, "query": "How to analyze data with more than one associated categorical dependent variables?"}
161
+ {"query_id": 90129, "query": "What is the difference between \"data mining\" and \"data analytics\"?"}
162
+ {"query_id": 101455, "query": "Find parameters $\\alpha$ and $\\beta$ of a beta distribution, if I have one quantile and the mean"}
163
+ {"query_id": 48199, "query": "Are these values really different, given their confidence intervals?"}
164
+ {"query_id": 26060, "query": "Derive househould weights from a uniformly distributed person sample"}
165
+ {"query_id": 7948, "query": "When is it ok to remove the intercept in lm()?"}
166
+ {"query_id": 26719, "query": "Finding the probability of getting a complete set from N classes of objects in M draws"}
167
+ {"query_id": 4451, "query": "Social network datasets"}
168
+ {"query_id": 99416, "query": "test if two normally distributed random variables are equal"}
169
+ {"query_id": 46322, "query": "Understanding signficant interaction with non-significant main effects"}
170
+ {"query_id": 72297, "query": "Describing standard deviation"}
171
+ {"query_id": 2151, "query": "How to plot ROC curves in multiclass classification?"}
172
+ {"query_id": 26712, "query": "regression with multiple response variable in R"}
173
+ {"query_id": 24416, "query": "How to do a pretty scatter plot in R?"}
174
+ {"query_id": 32169, "query": "How can I generate data with a prespecified correlation matrix?"}
175
+ {"query_id": 34587, "query": "Determining a correction factor and applying it to a second set of numbers"}
176
+ {"query_id": 79932, "query": "Does MLE always mean we know the underlying PDF of our data, and does EM mean we don't?"}
177
+ {"query_id": 112055, "query": "Proper back-transformation of lognormal standard deviation to find confidence intervals around a mean"}
178
+ {"query_id": 113023, "query": "Should I use log transformation for my linear regression?"}
179
+ {"query_id": 60076, "query": "Why are 5+ expected frequencies needed in Pearson's chi-square"}
180
+ {"query_id": 83193, "query": "Probability of two people meeting when the arrival intervals and wait times are different"}
181
+ {"query_id": 88880, "query": "Why do PCA scores differ in sign?"}
182
+ {"query_id": 46558, "query": "Multicollinearity in OLS"}
183
+ {"query_id": 22009, "query": "What is the real answer to the Birthday question?"}
184
+ {"query_id": 47769, "query": "Kriging on log transformed rainfall data"}
185
+ {"query_id": 44139, "query": "What is $P(X_1>X_2 , X_1>X_3,... , X_1>X_n)$?"}
186
+ {"query_id": 49942, "query": "Why is the Fisher Information matrix positive semidefinite?"}
187
+ {"query_id": 19195, "query": "Explaining two-tailed tests"}
188
+ {"query_id": 33240, "query": "Interpretation of reference category in logistic regression"}
189
+ {"query_id": 66868, "query": "random number generation and probability problems"}
190
+ {"query_id": 67958, "query": "How to calculate a \"Predicted line\"?"}
191
+ {"query_id": 65779, "query": "Why is coefficient of determination used to assess fit of a least squares line?"}
192
+ {"query_id": 3369, "query": "Difference between FA and PCA"}
193
+ {"query_id": 35544, "query": "Recommend an enjoyable / introductory book on Statistics"}
194
+ {"query_id": 61179, "query": "GLM Distribution of Residuals"}
195
+ {"query_id": 12200, "query": "\"Normalizing\" variables for SVD / PCA"}
196
+ {"query_id": 21151, "query": "A reliable measure of series similarity - correlation just doesn't cut it for me"}
197
+ {"query_id": 11113, "query": "Wrong results using ANOVA with repeated measures"}
198
+ {"query_id": 54645, "query": "Properties of moment-generating functions"}
199
+ {"query_id": 37845, "query": "Two negative beta's in a curvilinear regression when mean centered or using standardized values"}
200
+ {"query_id": 85363, "query": "Simplest example of uncorrelated but not independent X and Y?"}
201
+ {"query_id": 90828, "query": "Forecast Daily Data with Multiple Seasonality"}
202
+ {"query_id": 6652, "query": "What, precisely, is a confidence interval?"}
203
+ {"query_id": 4354, "query": "Distributions other than the normal where mean and variance are independent"}
204
+ {"query_id": 114203, "query": "What is the error on measuring the phase of a sine wave?"}
205
+ {"query_id": 97257, "query": "Stepwise regression in R \u2013 Critical p-value"}
206
+ {"query_id": 24878, "query": "Computation of new standard deviation using old standard deviation after change in dataset"}
207
+ {"query_id": 20039, "query": "Effect of moving average parameter on variability and variance of demand"}
208
+ {"query_id": 2291, "query": "Recommended books or articles as introduction to Cluster Analysis?"}
209
+ {"query_id": 34325, "query": "Regression modelling with unequal variance"}
210
+ {"query_id": 35535, "query": "A good Machine Learning Book"}
211
+ {"query_id": 33354, "query": "When are two normally distributed random variables jointly bivariate normal?"}
212
+ {"query_id": 3136, "query": "How to perform a test using R to see if data follows normal distribution"}
213
+ {"query_id": 899, "query": "Separating two populations from the sample"}
214
+ {"query_id": 89633, "query": "Calculate Standard deviation from mean and confidence interval (95%) in R"}
215
+ {"query_id": 10234, "query": "Meaning of probability notations $P(z;d,w)$ and $P(z|d,w)$"}
216
+ {"query_id": 47746, "query": "Logit versus Probit"}
217
+ {"query_id": 48714, "query": "Prerequisites for AIC model comparison"}
218
+ {"query_id": 26828, "query": "Interpreting AIC and BIC fit"}
219
+ {"query_id": 27916, "query": "Standard errors for multiple regression coefficients?"}
220
+ {"query_id": 64343, "query": "How to Interpret a negative log linear regression coefficient?"}
221
+ {"query_id": 63256, "query": "What is the current 'standard' for modern statistical computing hardware?"}
222
+ {"query_id": 103684, "query": "How to analyze a variable measured on a Likert scale and its interaction with another variable?"}
223
+ {"query_id": 11691, "query": "How to tell if data is \"clustered\" enough for clustering algorithms to produce meaningful results?"}
224
+ {"query_id": 96278, "query": "How can I use logistic regression with categorical variables?"}
225
+ {"query_id": 22346, "query": "Standardized beta weights for a multilevel regression"}
226
+ {"query_id": 16907, "query": "Summation representation for multivariate regressions (or other time-saving techniques)"}
227
+ {"query_id": 665, "query": "What's the difference between probability and statistics?"}
228
+ {"query_id": 86357, "query": "Basics of forecasting"}
229
+ {"query_id": 43020, "query": "Statistics and Probability interview questions"}
230
+ {"query_id": 86597, "query": "We said the data is normally distributed, based on the raw data or residual?"}
231
+ {"query_id": 86353, "query": "How to theoretically fit and test for t-distribution"}
232
+ {"query_id": 11337, "query": "Probability of a certain sum of values from a set of dice rolls"}
233
+ {"query_id": 13875, "query": "Boxplot for several distributions?"}
234
+ {"query_id": 84175, "query": "Confidence Interval for a Fraction?"}
235
+ {"query_id": 9926, "query": "Is there any use for the quantity $\\int f(x)^2 dx$ in statistics or information theory?"}
236
+ {"query_id": 111170, "query": "How to interpret log of independent variable in Poisson regression?"}
237
+ {"query_id": 22439, "query": "Incremental or online or single pass or data stream clustering refers to the same thing?"}
238
+ {"query_id": 46523, "query": "How to simulate artificial data for logistic regression?"}
239
+ {"query_id": 61080, "query": "How can I calculate $\\int^{\\infty}_{-\\infty}\\Phi\\left(\\frac{w-a}{b}\\right)\\phi(w)\\,\\mathrm dw$"}
240
+ {"query_id": 101074, "query": "Nonparametric test when variances are unequal"}
241
+ {"query_id": 67502, "query": "Function of an efficient estimator?"}
242
+ {"query_id": 68834, "query": "What is the benefit of breaking up a continuous predictor variable?"}
243
+ {"query_id": 21463, "query": "Voting in Multi-Class SVM"}
244
+ {"query_id": 25708, "query": "Tests significative with parametric calculations and non-significative with non-parametric ones!"}
245
+ {"query_id": 20010, "query": "How can I help ensure testing data does not leak into training data?"}
246
+ {"query_id": 65446, "query": "Postive correlation but negative coefficient in regression"}
247
+ {"query_id": 114149, "query": "How to determine whether a set of data are qualitative or quantitative?"}
248
+ {"query_id": 31150, "query": "What is a lift chart?"}
249
+ {"query_id": 56852, "query": "Overall rank from multiple ranked lists"}
250
+ {"query_id": 32248, "query": "Effect Size/Mean Squared Error from Linear Mixed-Model in R"}
251
+ {"query_id": 3038, "query": "How to test hypothesis of no group differences?"}
252
+ {"query_id": 35510, "query": "Why does including latitude and longitude in a GAM account for spatial autocorrelation?"}
253
+ {"query_id": 86149, "query": "Is it possible to determine the set of variables contributing the most to first two principal components?"}
254
+ {"query_id": 32000, "query": "Excluding the components and only including the interaction term in a logistic regression?"}
255
+ {"query_id": 108817, "query": "Estimating the absolute decline of rates"}
256
+ {"query_id": 105545, "query": "$\\chi^2$ goodness of fit - how to compute expected counts when $\\exists$ unknown parameters"}
257
+ {"query_id": 45671, "query": "Normality of residuals vs sample data; what about t-tests?"}
258
+ {"query_id": 105309, "query": "Logistic sample and case numbers"}
259
+ {"query_id": 14812, "query": "Poisson regression instead of log transformation of a continuous outcome variable?"}
260
+ {"query_id": 11546, "query": "Tool to confirm Gaussian fit"}
261
+ {"query_id": 57705, "query": "Identify seasonality in time series data"}
262
+ {"query_id": 63260, "query": "Finding an acceptable upper limit on a random generator with an unknown distribution"}
263
+ {"query_id": 87110, "query": "Why is it that it is self-defeating to use the posterior mode as the bayes estimator in this case?"}
264
+ {"query_id": 104110, "query": "What is the difference between a parametric test and non-parametric tests?"}
265
+ {"query_id": 23417, "query": "Dynamic recommender systems"}
266
+ {"query_id": 6563, "query": "80% of missing data in a single variable"}
267
+ {"query_id": 5235, "query": "What is the expected correlation between residual and the dependent variable?"}
268
+ {"query_id": 73077, "query": "Analyzing reflected and transformed variables II"}
269
+ {"query_id": 69939, "query": "Creating a \u2018bounding polygon\u2019 for a set of points (preferably with GGplot2)"}
270
+ {"query_id": 77542, "query": "R gives weird dispersion value"}
271
+ {"query_id": 79843, "query": "Is the W statistic outputted by wilcox.test() in R the same as the U statistic?"}
272
+ {"query_id": 203, "query": "Group differences on a five point Likert item"}
273
+ {"query_id": 35982, "query": "How to interpret regression coefficients when response was transformed by the 4th root?"}
274
+ {"query_id": 21592, "query": "Optimising for Precision-Recall curves under class imbalance"}
275
+ {"query_id": 12884, "query": "Reporting the general perception of tested sample"}
276
+ {"query_id": 5347, "query": "How can I efficiently model the sum of Bernoulli random variables?"}
277
+ {"query_id": 86258, "query": "Using regression equation to estimate values outside of the range of data?"}
278
+ {"query_id": 45660, "query": "What is the probability of tossing k heads in n trials of a fair coin?"}
279
+ {"query_id": 84197, "query": "Probability of observing value EQUAL to +2 SD in a standard normal dist with parameters N(0,1)"}
280
+ {"query_id": 86040, "query": "Rule of thumb for number of bootstrap samples"}
281
+ {"query_id": 88461, "query": "Derive Variance of regression coefficient in simple linear regression"}
282
+ {"query_id": 47951, "query": "calculate partial autocorrelation"}
283
+ {"query_id": 104444, "query": "Econometrics: Panel data without unit identifier"}
284
+ {"query_id": 7542, "query": "How to perform goodness of fit test and how to assign probability with uniform distribution?"}
285
+ {"query_id": 44201, "query": "Link between moment-generating function and characteristic function"}
286
+ {"query_id": 91510, "query": "Correlation of categorical and interval variables"}
287
+ {"query_id": 18391, "query": "How to calculate the difference of two slopes?"}
288
+ {"query_id": 19120, "query": "Sample size for a variable number of answers"}
289
+ {"query_id": 22774, "query": "Dimensionality reduction using self-organizing map"}
290
+ {"query_id": 23501, "query": "Probabilistic (Bayesian) vs Optimisation (Frequentist) methods in Machine Learning"}
291
+ {"query_id": 74174, "query": "Significant ANOVA interaction but non-significant pairwise comparisons"}
292
+ {"query_id": 50095, "query": "Approximation of explained variance"}
293
+ {"query_id": 53000, "query": "Fitting a logistic regression using lassoglm in matlab"}
294
+ {"query_id": 33315, "query": "Optimal software package for bayesian analysis"}
295
+ {"query_id": 76484, "query": "How to scale a variable to a specific mean and standard deviation"}
296
+ {"query_id": 79755, "query": "How to check if data constitute a time series with simple moving average method?"}
297
+ {"query_id": 577, "query": "Is there any reason to prefer the AIC or BIC over the other?"}
298
+ {"query_id": 57840, "query": "How does dsgh work in R?"}
299
+ {"query_id": 80500, "query": "Collectively evaluate a number of normal distributions"}
300
+ {"query_id": 76248, "query": "Analysis to perform"}
301
+ {"query_id": 88228, "query": "How do you calculate the Ordinary Least Squares estimated coefficients in a Multiple Regression Model?"}
302
+ {"query_id": 103345, "query": "My distribution is normal; Kolmogorov-Smirnov test doesn't agree"}
303
+ {"query_id": 7535, "query": "Strategy for deciding appropriate model for count data"}
304
+ {"query_id": 88588, "query": "Regression model for proportion or count when counts of outcome and total events are often zero"}
305
+ {"query_id": 56515, "query": "Estimate PDF from only positive data"}
306
+ {"query_id": 66670, "query": "How to compare performance of probability estimating model"}
307
+ {"query_id": 64370, "query": "How to use SVD for dimensionality reduction"}
308
+ {"query_id": 4040, "query": "R: compute correlation by group"}
309
+ {"query_id": 91981, "query": "Converting a similarity to a dissimilarity"}
310
+ {"query_id": 6581, "query": "What is Deviance? (specifically in CART/rpart)"}
311
+ {"query_id": 91982, "query": "MANOVA, when independent variable is not multi-level and P value significance variance"}
312
+ {"query_id": 8881, "query": "How to perform a regression model with a mix of binary, nominal, ordinal, and continuous predictors?"}
313
+ {"query_id": 41048, "query": "Expected value (Chi-Squared)"}
314
+ {"query_id": 63177, "query": "In GLIM, Is the link function of mean linear in explanatory variables?"}
315
+ {"query_id": 17076, "query": "Math Statistics Bell Curve Computing % correct given 2 numbers (C#)"}
316
+ {"query_id": 91744, "query": "More examples of inconsistent, but unbiased data and vice versa?"}
317
+ {"query_id": 67533, "query": "sum of noncentral Chi-square random variables"}
318
+ {"query_id": 66448, "query": "Should covariates that are not statistically significant be 'kept in' when creating a model?"}
319
+ {"query_id": 25811, "query": "Is the R language reliable for the field of economics?"}
320
+ {"query_id": 43228, "query": "Explain Kernel density chart"}
321
+ {"query_id": 81815, "query": "Model estimation - 2sls"}
322
+ {"query_id": 346, "query": "What is a good algorithm for estimating the median of a huge read-once data set?"}
323
+ {"query_id": 114123, "query": "Describing the association between dependent and independent variables"}
324
+ {"query_id": 30275, "query": "What analysis (in SPSS) should I use for a repeated measures design with dichotomous outcome variable?"}
325
+ {"query_id": 53135, "query": "Probablity of getting sequence of K equal results while tossing coin N times"}
326
+ {"query_id": 105657, "query": "Adding new item to recommender's options?"}
327
+ {"query_id": 87003, "query": "create dataset for particular correlation for two variable"}
328
+ {"query_id": 104567, "query": "Centering vs. Standarizing which one is better?"}
329
+ {"query_id": 35608, "query": "Detecting outstanding events"}
330
+ {"query_id": 55316, "query": "Is the Mundlak fixed effects procedure applicable for logistic regression with dummies?"}
331
+ {"query_id": 7308, "query": "Can the empirical Hessian of an M-estimator be indefinite?"}
332
+ {"query_id": 90407, "query": "Libsvm includes training data in testing file"}
333
+ {"query_id": 6350, "query": "ANOVA assumption normality/normal distribution of residuals"}
334
+ {"query_id": 7200, "query": "Evaluate definite interval of normal distribution"}
335
+ {"query_id": 107898, "query": "Multivariate Hypergeometric Distribution with \"or more\" Successes"}
336
+ {"query_id": 15662, "query": "Do I need to use t-test?"}
337
+ {"query_id": 4298, "query": "Use of kernel density estimate in Naive Bayes Classifier?"}
338
+ {"query_id": 72212, "query": "Updating variance of a dataset"}
339
+ {"query_id": 97515, "query": "What does \"likelihood is only defined up to a multiplicative constant of proportionality\" mean in practice?"}
340
+ {"query_id": 110707, "query": "Normal Quantile Quantile Plot Normalization"}
341
+ {"query_id": 29824, "query": "Factor analysis and regression"}
342
+ {"query_id": 64831, "query": "OLS in R with linear inequality constraints on coefficients"}
343
+ {"query_id": 94360, "query": "Sum of squared errors"}
344
+ {"query_id": 96543, "query": "multicollinearity in OLS regression"}
345
+ {"query_id": 83352, "query": "Sum of independent non-normal random variables"}
346
+ {"query_id": 82142, "query": "Calculating concordance using either Pearson or Spearman (rank) correlations"}
347
+ {"query_id": 48582, "query": "Generalized linear mixed model in R"}
348
+ {"query_id": 15427, "query": "Kruskal-Wallis or Fligner test to check homogeneity of variances?"}
349
+ {"query_id": 9751, "query": "Do we need a global test before post hoc tests?"}
350
+ {"query_id": 9510, "query": "Probability distribution for different probabilities"}
351
+ {"query_id": 8661, "query": "Logistic Regression in R (Odds Ratio)"}
352
+ {"query_id": 105488, "query": "Structural break test on an arma model any statistical software packages"}
353
+ {"query_id": 105489, "query": "Representing a distance matrix in the plane"}
354
+ {"query_id": 49666, "query": "Non-significant intercept in regression with a two level factor in R"}
355
+ {"query_id": 25235, "query": "What test should I use with shannon diversity index values?"}
356
+ {"query_id": 28745, "query": "Advantages of ROC curves"}
357
+ {"query_id": 65811, "query": "How to calculate p-value for t-test if original data is not available?"}
358
+ {"query_id": 95440, "query": "Assessing test-retest reliability of a questionnaire"}
359
+ {"query_id": 29713, "query": "What is covariance in plain language?"}
360
+ {"query_id": 40977, "query": "Is there a term for $P(A\\cap B)/[P(A)P(B)]$?"}
361
+ {"query_id": 92052, "query": "Kolmogorov-Smirnov test for large sample"}
362
+ {"query_id": 40976, "query": "Can a dichotomous variable (yes/no) be merged with a Likert measure (1,2,3,4) using z scores?"}
363
+ {"query_id": 57074, "query": "Is there a simple rule for interpretation of Interactions (and their directions) in binary logistic regression?"}
364
+ {"query_id": 125, "query": "What is the best introductory Bayesian statistics textbook?"}
365
+ {"query_id": 104029, "query": "Reproduce a confidence interval of linear regression in Excel"}
366
+ {"query_id": 4059, "query": "Maximum Likelihood formula for Naive Bayes"}
367
+ {"query_id": 83583, "query": "Reading and interpreting the scatter matrix"}
368
+ {"query_id": 14226, "query": "Given the power of computers these days, is there ever a reason to do a chi-squared test rather than Fisher's exact test?"}
369
+ {"query_id": 49421, "query": "Why are the eigenvalues of a covariance matrix corresponding to the data's variance?"}
370
+ {"query_id": 97659, "query": "Appropriate post-hoc test after a mixed design anova in R"}
371
+ {"query_id": 74537, "query": "Log or square-root transformation for ARIMA"}
372
+ {"query_id": 6498, "query": "Seeking certain type of ARIMA explanation"}
373
+ {"query_id": 95235, "query": "What kind of test should I use?"}
374
+ {"query_id": 97777, "query": "Variablity in cv.glmnet results"}
375
+ {"query_id": 71269, "query": "standard deviation in unbiased problem"}
376
+ {"query_id": 8557, "query": "Testing the difference in AIC of two non-nested models"}
377
+ {"query_id": 71260, "query": "What is the intuition behind conditional Gaussian distributions?"}
378
+ {"query_id": 57083, "query": "Interpreta\u200btion of main effect when interactio\u200bn term is significan\u200bt (ex. lme)"}
379
+ {"query_id": 41934, "query": "Non-parametric alternative for 2-way ANOVA"}
380
+ {"query_id": 64739, "query": "In survival analysis, why do we use semi-parametric models (Cox proportional hazards) instead of fully parametric models?"}
381
+ {"query_id": 27626, "query": "Does the size of the reference sample matter in logistic regression?"}
382
+ {"query_id": 26650, "query": "How do I reference a regression model's coefficient's standard errors?"}
383
+ {"query_id": 85436, "query": "What could it mean to \"Rotate\" a distribution?"}
384
+ {"query_id": 60257, "query": "Markov chain getting stuck due to insufficient data samples"}
385
+ {"query_id": 60256, "query": "Standard deviation of binned observations"}
386
+ {"query_id": 104117, "query": "How to calculate Weighted mean using SPSS"}
387
+ {"query_id": 16613, "query": "Interpreting the results of an analysis"}
388
+ {"query_id": 86881, "query": "Correlated Regressors - Motorway Accidents"}
389
+ {"query_id": 45050, "query": "Diagnostics for logistic regression?"}
390
+ {"query_id": 103164, "query": "What are the mathematics I need to learn, before I start research in data mining"}
391
+ {"query_id": 104250, "query": "How to determine whether a categorical variable is statistically significant?"}
392
+ {"query_id": 36, "query": "Examples for teaching: Correlation does not mean causation"}
393
+ {"query_id": 38870, "query": "Confusion regarding a probability problem"}
394
+ {"query_id": 104496, "query": "Measures of association, Concordant and Discordant"}
395
+ {"query_id": 74542, "query": "Why does the Lasso provide Variable Selection?"}
396
+ {"query_id": 28842, "query": "Significant predictor loses significance when second non-significant predictor is entered (log regression)"}
397
+ {"query_id": 32094, "query": "Linear model overfit due to too many covariates?"}
398
+ {"query_id": 29815, "query": "How to interpret the output for calculating concordance index (c-index)?"}
399
+ {"query_id": 93042, "query": "non significance with one-way ANOVA, but significance with multiple comparisons"}
400
+ {"query_id": 114043, "query": "Clustering using different distance measures"}
401
+ {"query_id": 84334, "query": "how to create predictive model in R when outcome variable has more than 10 classes"}
402
+ {"query_id": 25211, "query": "Simple combination/probability question based on string-length and possible-characters"}
403
+ {"query_id": 87601, "query": "What does this test mean?"}
404
+ {"query_id": 38511, "query": "If MGF exists, does it imply that all $E(X^n)$ exist?"}
405
+ {"query_id": 8318, "query": "Interpretation of log transformed predictors in logistic regression"}
406
+ {"query_id": 87963, "query": "Does the slope of a regression between observed and predicted values always equal the $R^2$ of the original model?"}
407
+ {"query_id": 13475, "query": "How to specify the random term in lme, lmer and aov?"}
408
+ {"query_id": 45165, "query": "MANOVA vs. Repeated Measure ANOVA"}
409
+ {"query_id": 14686, "query": "R language-statistics-significance testing"}
410
+ {"query_id": 60383, "query": "Bonferroni adjustment in SPSS - what does it do?"}
411
+ {"query_id": 113194, "query": "Do Bayesians believe in Fixed Effect Models?"}
412
+ {"query_id": 9664, "query": "What are examples where a \"naive bootstrap\" fails?"}
413
+ {"query_id": 105037, "query": "Kruskal-Wallis test for factorial design"}
414
+ {"query_id": 15740, "query": "What are some quick initial tests to check the quality of a new dataset?"}
415
+ {"query_id": 7004, "query": "Calculating required sample size, precision of variance estimate?"}
416
+ {"query_id": 105277, "query": "How to create a z-score table"}
417
+ {"query_id": 48302, "query": "A constant as an admissible estimator"}
418
+ {"query_id": 22036, "query": "Interaction terms interpretation"}
419
+ {"query_id": 23005, "query": "Deriving ordered statistics minimum cdf"}
420
+ {"query_id": 111835, "query": "regression. sufficient dimension reduction"}
421
+ {"query_id": 28934, "query": "Confidence interval about the difference between false positive and false negative proportions"}
422
+ {"query_id": 72370, "query": "How to perform unsupervised Random Forest classification using Breiman's code?"}
423
+ {"query_id": 86546, "query": "Text Books on Text Mining in R"}
424
+ {"query_id": 49510, "query": "k-means and different metrics"}
425
+ {"query_id": 61002, "query": "Natural log of annual income"}
426
+ {"query_id": 54954, "query": "Interpreting ANOVA results"}
427
+ {"query_id": 48781, "query": "Transform higher order Markov Chain to first order"}
428
+ {"query_id": 15505, "query": "Converting standard error to standard deviation?"}
429
+ {"query_id": 78928, "query": "Repeated ANOVA unbalanced data"}
430
+ {"query_id": 94272, "query": "MC Integration Interval Probability"}
431
+ {"query_id": 94271, "query": "How to properly handle Infs in a statistical function?"}
432
+ {"query_id": 28942, "query": "Computing and plotting a correlogram"}
433
+ {"query_id": 93067, "query": "clustering algorithm for real time event"}
434
+ {"query_id": 94033, "query": "Standard deviation of the mean?"}
435
+ {"query_id": 59174, "query": "Online logistic regression?"}
436
+ {"query_id": 89926, "query": "What do you do when a centroid doesn't attract any points?"}
437
+ {"query_id": 84115, "query": "Distribution of a vector divided by its sum"}
438
+ {"query_id": 33165, "query": "Strange pattern of residuals"}
439
+ {"query_id": 84116, "query": "Estimates of variance from an iid sample"}
440
+ {"query_id": 87866, "query": "A simple optimization problem"}
441
+ {"query_id": 51456, "query": "Why does the correlation coefficient between X and X-Y random variables tend to be 0.7"}
442
+ {"query_id": 83022, "query": "How to fit data that looks like a gaussian?"}
443
+ {"query_id": 88711, "query": "How does Support vector machine predict the classes for the test points?"}
444
+ {"query_id": 52423, "query": "How to perform step() when n < p in R?"}
445
+ {"query_id": 9427, "query": "Interpreting Gaussian probabilities greater than 1"}
446
+ {"query_id": 18905, "query": "Where to find a large text corpus?"}
447
+ {"query_id": 51699, "query": "Moment generating function of the inner product of two gaussian random vectors"}
448
+ {"query_id": 2915, "query": "What is a good internet based source of information on Hierarchical Modeling?"}
449
+ {"query_id": 38856, "query": "How to generate correlated random numbers (given means, variances and degree of correlation)?"}
450
+ {"query_id": 115192, "query": "UnReSolved Mean Adjust DataSet to achieve .5 Mean"}
451
+ {"query_id": 54728, "query": "PCA eigenvectors with opposite values"}
452
+ {"query_id": 109735, "query": "Homoskedasticity Assumption: Var(y|x)=Var(u|x)=constant?"}
453
+ {"query_id": 64652, "query": "Calculating standard deviation associated with percentage change"}
454
+ {"query_id": 96005, "query": "Random Forest and Factor Predictors"}
455
+ {"query_id": 67800, "query": "Creating a Quality Index"}
456
+ {"query_id": 65866, "query": "Good methods for density plots of non-negative variables in R?"}
457
+ {"query_id": 24676, "query": "Difference between one-tailed and two-tailed testing?"}
458
+ {"query_id": 71064, "query": "Test to see what population an observation came from"}
459
+ {"query_id": 94061, "query": "Help interpreting R linear model fit"}
460
+ {"query_id": 66709, "query": "Confusion related to predictive distribution of gaussian processes"}
461
+ {"query_id": 15606, "query": "How to check variance with GARCH (1,1) model?"}
462
+ {"query_id": 26970, "query": "Validation techniques for hierarchical model"}
463
+ {"query_id": 83296, "query": "Which Distribution Does the Data Point Belong to?"}
464
+ {"query_id": 8107, "query": "How do I interpret the results of a Breusch\u2013Pagan test?"}
465
+ {"query_id": 14757, "query": "Is an online chi square calculator available for larger tables?"}
466
+ {"query_id": 36305, "query": "Why do regression coefficients change when excluding variables?"}
467
+ {"query_id": 88980, "query": "Why on average does each bootstrap sample contain roughly two thirds of observations?"}
468
+ {"query_id": 46217, "query": "Find the distribution of w"}
469
+ {"query_id": 9573, "query": "T-test for non normal when N>50?"}
470
+ {"query_id": 13550, "query": "prcomp() vs lm() results in R"}
471
+ {"query_id": 45124, "query": "Central limit theorem for sample medians"}
472
+ {"query_id": 27951, "query": "When are Log scales appropriate?"}
473
+ {"query_id": 65637, "query": "Fisher-type unit-root test for panel data. Results interpretation in Stata"}
474
+ {"query_id": 105382, "query": "Criteria for deleting variables in factor analysis"}
475
+ {"query_id": 1963, "query": "Looking for good introductory treatment of meta-analysis"}
476
+ {"query_id": 89949, "query": "Geometric mean of uniform variables"}
477
+ {"query_id": 35566, "query": "How do I rank variables collected by a Likert scale questionnaire?"}
478
+ {"query_id": 51473, "query": "\"matrix is not positive definite\" - even when highly correlated variables are removed"}
479
+ {"query_id": 25651, "query": "Can two RM ANOVAs be run including one variable that is the same but this variable only be significant in one of the ANOVAs?"}
480
+ {"query_id": 13676, "query": "Why does t statistic increase with the sample size?"}
481
+ {"query_id": 50267, "query": "How to generate a non-normal correlated bivariate distribution"}
482
+ {"query_id": 12469, "query": "Segmented nonlinear regression in R?"}
483
+ {"query_id": 37866, "query": "Pearson r Interpretation"}
484
+ {"query_id": 13314, "query": "Is $R^2$ useful or dangerous?"}
485
+ {"query_id": 16230, "query": "Fourier data with non-integer periods, correcting for phase bias"}
486
+ {"query_id": 97912, "query": "Which equal correlations of three random variables are possible?"}
487
+ {"query_id": 18896, "query": "Practical thoughts on explanatory vs predictive modeling"}
488
+ {"query_id": 89295, "query": "Determining If Transformation of Variables X Are Needed"}
489
+ {"query_id": 93436, "query": "Variable Selection"}
490
+ {"query_id": 192, "query": "Cross tabulation of two categorical variables: recommended techniques"}
491
+ {"query_id": 59882, "query": "How do I use a mean and 95% confidence intervals to draw from a distribution?"}
492
+ {"query_id": 91493, "query": "Normal curve probability mean"}
493
+ {"query_id": 99099, "query": "Neyman-Pearson lemma: critical region and hypothesis testing"}
494
+ {"query_id": 21822, "query": "Understanding Naive Bayes"}
495
+ {"query_id": 78285, "query": "Comparison of two error distributions to determine \"goodness of fit\""}
496
+ {"query_id": 59526, "query": "Correction term in variance of mixture"}
497
+ {"query_id": 26271, "query": "Comparing two classifier accuracy results for statistical significance with t-test"}
498
+ {"query_id": 32600, "query": "In what order should you do linear regression diagnostics?"}
499
+ {"query_id": 56018, "query": "Comparing two logit or probit curves using a single parameter"}
500
+ {"query_id": 1850, "query": "Difference between Cohen's d and Hedges' g for effect size metrics"}
501
+ {"query_id": 21939, "query": "Relatively normalizing values for collaborative filtering"}
502
+ {"query_id": 30428, "query": "What is a good book on experimental design and data analysis relevant to industrial bakery applications?"}
503
+ {"query_id": 30303, "query": "How to simulate data that satisfy specific constraints such as having specific mean and standard deviation?"}
504
+ {"query_id": 70307, "query": "How do I analyse principal component scores?"}
505
+ {"query_id": 25181, "query": "How to the predict the number of daily visitors in six months' time based on the past three?"}
506
+ {"query_id": 19874, "query": "Does the sign of the principal component become meaningless with centered variables?"}
507
+ {"query_id": 92212, "query": "In testing random numbers, what other tests should I use to complement the Kolmogorov-Smirnov?"}
508
+ {"query_id": 20862, "query": "Covariate present in a logistic regression model as a effect modifier, but not as main effect"}
509
+ {"query_id": 72623, "query": "cluster - class dependency bag of words"}
510
+ {"query_id": 92210, "query": "Negative AIC linear regression model"}
511
+ {"query_id": 94872, "query": "Functions of Independent Random Variables"}
512
+ {"query_id": 40454, "query": "Determine different clusters of 1d data from database"}
513
+ {"query_id": 41540, "query": "How to get the prediction values for two response variables from random forest?"}
514
+ {"query_id": 71771, "query": "purpose p value with CI in non-inferiority trials"}
515
+ {"query_id": 9590, "query": "How to use principal components analysis to select variables for regression?"}
516
+ {"query_id": 83865, "query": "JAGS burn-in phase takes ZERO time?"}
517
+ {"query_id": 60766, "query": "How to test for significant difference between 2 binary variables in one sample"}
518
+ {"query_id": 58564, "query": "Help me understand Bayesian prior and posterior distributions"}
519
+ {"query_id": 16008, "query": "What does \"unbiasedness\" mean?"}
520
+ {"query_id": 25190, "query": "Naive Bayes for two continuous features"}
521
+ {"query_id": 68243, "query": "AR(1) coefficient is correlation?"}
522
+ {"query_id": 68377, "query": "Getting the inflection point(s) from a density plot"}
523
+ {"query_id": 8033, "query": "How to find percentiles of a Normal distribution?"}
524
+ {"query_id": 112941, "query": "How can I determine local minima from a Kernel Density Estimation?"}
525
+ {"query_id": 16574, "query": "Are confidence intervals always symmetrical around the point estimate?"}
526
+ {"query_id": 96722, "query": "How can dummy variables are able to add in Stata?"}
527
+ {"query_id": 18750, "query": "Hosmer-Lemeshow vs AIC for logistic regression"}
528
+ {"query_id": 37399, "query": "Weighted geometric mean vs weighted mean"}
529
+ {"query_id": 57240, "query": "How do I interpret the 'correlations of fixed effects' in my glmer output?"}
530
+ {"query_id": 29889, "query": "Monte Carlo approach to compute prediction interval for GLM (Poisson & Neg Bin) with R"}
531
+ {"query_id": 20836, "query": "Algorithms for automatic model selection"}
532
+ {"query_id": 44928, "query": "ANCOVA and its disturbing assumptions"}
533
+ {"query_id": 6093, "query": "Good book on statistics"}
534
+ {"query_id": 106381, "query": "How do I add a \"confidence rating\" to something?"}
535
+ {"query_id": 77099, "query": "Testing equality of variances without the data, just from the variances and the mean"}
536
+ {"query_id": 83538, "query": "Distribution function, applied to itself?"}
537
+ {"query_id": 1995, "query": "Under what conditions should one use multilevel/hierarchical analysis?"}
538
+ {"query_id": 82682, "query": "How do I interpret this fitted vs residuals plot"}
539
+ {"query_id": 30402, "query": "How to calculate mean and standard deviation in R given confidence interval and a normal or gamma distribution?"}
540
+ {"query_id": 47074, "query": "Does it make sense to cut a continuous variable to intervals?"}
541
+ {"query_id": 51946, "query": "How to calculate the signal-to-noise ratio (SNR) in an image?"}
542
+ {"query_id": 20720, "query": "pLSA - Probabilistic Latent Semantic Analysis, how to choose topic number?"}
543
+ {"query_id": 110997, "query": "Finding distribution function"}
544
+ {"query_id": 72648, "query": "Interpretation of Kolmogorov-Smirnov Generated Distributions"}
545
+ {"query_id": 88097, "query": "rescale a vector x to lie between arguments LOWER and UPPER in R"}
546
+ {"query_id": 96835, "query": "chisq.test in R doesn't produce same answer as by-hand"}
547
+ {"query_id": 72646, "query": "How to estimate the confidence interval using sample average and sample size ONLY?"}
548
+ {"query_id": 108211, "query": "Joint test for absolute value of a mean"}
549
+ {"query_id": 19971, "query": "Difference between two separate multiple regression analyses and one combined using dummy variables"}
550
+ {"query_id": 91389, "query": "How to use gain and splitinfo for continuous attributes?"}
551
+ {"query_id": 108697, "query": "Difference between Time series and repeated measures analysis?"}
552
+ {"query_id": 32808, "query": "Comparison between multi-level modelling and generalized estimating equation"}
553
+ {"query_id": 58220, "query": "What distribution does my data follow?"}
554
+ {"query_id": 61510, "query": "How do I write a mathematical equation for ARIMA (0,2,1) x (0,0,1) period 12"}
555
+ {"query_id": 20725, "query": "Rolling analysis with out-of sample"}
556
+ {"query_id": 36054, "query": "What is the difference between Variance and Standard Deviation (SD) intuitively?"}
557
+ {"query_id": 90171, "query": "Why is the p-value written with a supremum?"}
558
+ {"query_id": 57259, "query": "Highly unbalanced test data set and balanced training data in classification"}
559
+ {"query_id": 85702, "query": "Weibull analysis"}
560
+ {"query_id": 26383, "query": "Conditional Expectation for Probability Distribution"}
561
+ {"query_id": 59434, "query": "How to compare 2 regression slopes with R?"}
562
+ {"query_id": 60785, "query": "How to create a ratio from different measures?"}
563
+ {"query_id": 26024, "query": "Moving-average model error terms"}
564
+ {"query_id": 28443, "query": "PCA prcomp function of R"}
565
+ {"query_id": 68261, "query": "Performance evaluation of auto.arima in R and UCM on one dataset"}
566
+ {"query_id": 14168, "query": "How to generate two correlated categorical variables?"}
567
+ {"query_id": 48396, "query": "How often do you have to roll a 6-sided dice to obtain every number at least once?"}
568
+ {"query_id": 30514, "query": "Is Marliyn vos Savant correct about the 2/3 odds in her version of the Monty Hall problem?"}
569
+ {"query_id": 51835, "query": "Can one compute confidence intervals for a census with high nonresponse rates?"}
570
+ {"query_id": 51718, "query": "Assessing approximate distribution of data based on a histogram"}
571
+ {"query_id": 94201, "query": "Are these events independent?"}
572
+ {"query_id": 94208, "query": "How to interpret results from a nonparametric Wilcoxon test"}
573
+ {"query_id": 13166, "query": "R's lmer cheat-sheet"}
574
+ {"query_id": 16552, "query": "Probability of mean of random sample being in a certain range"}
575
+ {"query_id": 25389, "query": "Obtaining predicted values (Y=1 or 0) from a logistic regression model fit"}
576
+ {"query_id": 79292, "query": "What are the methods for multivariate outlier detection?"}
577
+ {"query_id": 95891, "query": "If you know a factor is significant, what is a reason why R might think it's not?"}
578
+ {"query_id": 87909, "query": "Interpretation interaction term with a dummy variable in it"}
579
+ {"query_id": 87908, "query": "exact percentage change for the estimated COOP effect"}
580
+ {"query_id": 3958, "query": "What is your favorite, easy to use statistical analysis website or software package?"}
581
+ {"query_id": 60558, "query": "OLS Regression for binary outcome"}
582
+ {"query_id": 28653, "query": "What is the best way to convert learning to rank to pairwise preference learning?"}
583
+ {"query_id": 83554, "query": "Linear regression not fitting well"}
584
+ {"query_id": 26352, "query": "PCA analysis with centered variables"}
585
+ {"query_id": 111440, "query": "Normality test with p-value equal to zero"}
586
+ {"query_id": 48145, "query": "Extremely unequal sample size in logistic regression"}
587
+ {"query_id": 18738, "query": "what mean a p-value above 0.05 doing an ANOVA?"}
588
+ {"query_id": 66094, "query": "Meaning of Likelihood in layman's terms"}
589
+ {"query_id": 60670, "query": "\"Accept null hypothesis\" or \"fail to reject the null hypothesis\"?"}
590
+ {"query_id": 31958, "query": "How to perform linear regression with categorical factors?"}
591
+ {"query_id": 103801, "query": "Is it meaningful to calculate Pearson or Spearman correlation between two Boolean vectors?"}
592
+ {"query_id": 48261, "query": "Bayesian and frequentist approaches: What are some success stories for the former?"}
593
+ {"query_id": 14140, "query": "How to best display graphically type II (beta) error, power and sample size?"}
594
+ {"query_id": 91286, "query": "reshape data from wide to long in R"}
595
+ {"query_id": 9398, "query": "Supervised learning with \"rare\" events, when rarity is due to the large number of counter-factual events"}
596
+ {"query_id": 17890, "query": "What is the difference between N and N-1 in calculating population variance?"}
597
+ {"query_id": 58242, "query": "Why are MA(q) time series models called \"moving averages\"?"}
598
+ {"query_id": 62741, "query": "Correlation between discrete and continuous variables"}
599
+ {"query_id": 58486, "query": "Is it required for panel data to use dummy variables?"}
600
+ {"query_id": 35185, "query": "Dimensionality reduction (SVD or PCA) on a large, sparse matrix"}
601
+ {"query_id": 64924, "query": "How to cluster a distance matrix?"}
602
+ {"query_id": 79043, "query": "Why PCA of data by means of SVD of the data?"}
603
+ {"query_id": 20701, "query": "Computing p-value using bootstrap with R"}
604
+ {"query_id": 79289, "query": "Why is \"statistically significant\" not enough?"}
605
+ {"query_id": 80157, "query": "Relationship Between Correlation and Multicollinearity"}
606
+ {"query_id": 36036, "query": "How to deal with missing values for PCA?"}
607
+ {"query_id": 3961, "query": "Random permutation of a vector with a fixed expected sample correlation to the original?"}
608
+ {"query_id": 4810, "query": "How to use CDF and PDF statistics for analysis"}
609
+ {"query_id": 114926, "query": "Generating even-sized clusters in scikit-learn"}
610
+ {"query_id": 94103, "query": "PCA on non-centered data"}
611
+ {"query_id": 113831, "query": "Bias in lagged dependent variable"}
612
+ {"query_id": 12174, "query": "Time taken to hit a pattern of heads and tails in a series of coin-tosses"}
613
+ {"query_id": 70133, "query": "F test for regressions with a small N with robust standard errors"}
614
+ {"query_id": 47279, "query": "Is significance of the p-value reliable with extremely small sample sizes?"}
615
+ {"query_id": 23068, "query": "Steps to figure out a posterior distribution when it might be simple enough to have an analytic form?"}
616
+ {"query_id": 28515, "query": "No degrees of freedom in LR rest of multinomial logistic regression"}
617
+ {"query_id": 93370, "query": "In simple linear regression, why the covariance between y bar and beta1 hat is zero?"}
618
+ {"query_id": 27786, "query": "How to compare ratings of airlines on a Likert scale when different participants have rated different airlines?"}
619
+ {"query_id": 61666, "query": "T-test vs. one-way ANOVA"}
620
+ {"query_id": 111419, "query": "Change in regression coeficient using multiple regression"}
621
+ {"query_id": 26218, "query": "Are there any ways to update SVM model incrementally like Bayesian or k-NN classifiers?"}
622
+ {"query_id": 106063, "query": "R-squared for linear mixed effects model"}
623
+ {"query_id": 112626, "query": "Weka clustering"}
624
+ {"query_id": 29726, "query": "How to determine significant subgroups of data inputs?"}
625
+ {"query_id": 92284, "query": "What is the meaning of the beta-coefficient for an interaction term in a crossover study?"}
626
+ {"query_id": 23060, "query": "Confused by MATLAB's implementation of ridge"}
627
+ {"query_id": 3614, "query": "How to easily determine the results distribution for multiple dice?"}
628
+ {"query_id": 28873, "query": "Goodness of fit test for a mixture in R"}
629
+ {"query_id": 26454, "query": "Proof that if higher moment exists then lower moment also exists"}
630
+ {"query_id": 38446, "query": "What do parallel lines in a fitted values vs. residual plot mean? How should I transform my data?"}
631
+ {"query_id": 15323, "query": "How to interpret the divergence of Fisher information expectation"}
632
+ {"query_id": 4700, "query": "What is the difference between fixed effect, random effect and mixed effect models?"}
633
+ {"query_id": 16658, "query": "How to interpret a 95% confidence interval of a proportion?"}
634
+ {"query_id": 90098, "query": "How can I statistically compare two time-series?"}
635
+ {"query_id": 68069, "query": "Boxplot interpretation: is it correct that a boxplot is missing a whisker?"}
636
+ {"query_id": 73416, "query": "In R, how do I fit a student-t distribution to a set of empirical data?"}
637
+ {"query_id": 62880, "query": "No linear effects but a quadratic effect"}
638
+ {"query_id": 62640, "query": "Testing for difference between two percentages (using confidence intervals)"}
639
+ {"query_id": 73412, "query": "normalising constant on exponential of exponential"}
640
+ {"query_id": 74622, "query": "Converting standardized betas back to original variables"}
641
+ {"query_id": 95667, "query": "Intuitive explanation of differences between TOST and UMP tests for equivalence"}
642
+ {"query_id": 40876, "query": "Difference between 'link function' and 'canonical link function' for GLM"}
643
+ {"query_id": 96751, "query": "How to calculate a maximum standard deviation?"}
644
+ {"query_id": 61798, "query": "Example of distribution where large sample size is necessary for central limit theorem"}
645
+ {"query_id": 111526, "query": "Does it make sense to only drop a specific level of a categorical variable?"}
646
+ {"query_id": 87805, "query": "Significant interaction with non significant main effect"}
647
+ {"query_id": 1444, "query": "How should I transform non-negative data including zeros?"}
648
+ {"query_id": 29731, "query": "Regression when the OLS residuals are not normally distributed"}
649
+ {"query_id": 26465, "query": "Behavior of a sum of kernel functions"}
650
+ {"query_id": 46053, "query": "Where to find a good beginner's R Primer?"}
651
+ {"query_id": 13399, "query": "Calculating the 95th percentile: Comparing normal distribution, R Quantile, and Excel approaches"}
652
+ {"query_id": 18844, "query": "When (and why) to take the log of a distribution (of numbers)?"}
cqadupstack-tex.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
cqadupstack-unix.jsonl ADDED
@@ -0,0 +1,1072 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 19225, "query": "Where can I find the Official File Hierarchy Standard for UNIX?"}
2
+ {"query_id": 112326, "query": "How to start command in bash without blocking console"}
3
+ {"query_id": 92503, "query": "Access a NTFS external drive in centos"}
4
+ {"query_id": 20692, "query": "Knowing Privilege rights on a file in Linux"}
5
+ {"query_id": 44421, "query": "One machine & two keyboard, mouse & monitors"}
6
+ {"query_id": 147430, "query": "Compare two strings in a shell script"}
7
+ {"query_id": 80757, "query": "Add a suffix string to end of each line?"}
8
+ {"query_id": 60905, "query": "Shell script to delete all files which are older"}
9
+ {"query_id": 81845, "query": "difference between bash, -bash and /bin/bash in ps output"}
10
+ {"query_id": 21306, "query": "Use the system Compose database in Gtk applications"}
11
+ {"query_id": 43338, "query": "Renaming a bunch of files with date modified timestamp at the end of the filename?"}
12
+ {"query_id": 74076, "query": "Permanent Environment Variable for all users"}
13
+ {"query_id": 60901, "query": "Recover ext3 files from hard disk with bad sector"}
14
+ {"query_id": 53143, "query": "Move a file and re-target all of its symlinks"}
15
+ {"query_id": 76263, "query": "`ps | grep | kill` aborts my script prematurely"}
16
+ {"query_id": 78442, "query": "How to start tmux so that it won't get killed on exit in last windows?"}
17
+ {"query_id": 10418, "query": "How to find power draw in watts?"}
18
+ {"query_id": 4961, "query": "Which mp3 tagging tool for Linux?"}
19
+ {"query_id": 10893, "query": "What did Ken Thompson mean when he said, \"I'd spell create with an 'e'.\""}
20
+ {"query_id": 4965, "query": "keep duplicates out of $PATH on source"}
21
+ {"query_id": 41141, "query": "How to clean up the RAM memory that is being used as cache memory?"}
22
+ {"query_id": 87380, "query": "Using a reference to a bash string variable in sed"}
23
+ {"query_id": 155289, "query": "How to SFTP through proxy if there is no netcat?"}
24
+ {"query_id": 67794, "query": "How to search files where two different words exist?"}
25
+ {"query_id": 19232, "query": "Boot-loader to boot to an encrypted partition"}
26
+ {"query_id": 99129, "query": "Extract in beteen tages in a text file"}
27
+ {"query_id": 3892, "query": "How do I send stdin to the clipboard?"}
28
+ {"query_id": 137634, "query": "\"including\" files in fstab"}
29
+ {"query_id": 76490, "query": "\"No such file or directory\" on an executable, yet file exists and ldd reports all libraries present"}
30
+ {"query_id": 81834, "query": "How can I change the default \"ens33\" network device to old \"eth0\" on Fedora 19?"}
31
+ {"query_id": 45746, "query": "Group Permission on public_html"}
32
+ {"query_id": 21316, "query": "Which application should I blame for compulsively creating a directory again and again?"}
33
+ {"query_id": 23734, "query": "What are the significant differences between different shells?"}
34
+ {"query_id": 1469, "query": "bash directory shortcuts"}
35
+ {"query_id": 150847, "query": "How can I run a GUI on my server through SSH?"}
36
+ {"query_id": 150844, "query": "File manager that shows bit rate for mp3 files"}
37
+ {"query_id": 125862, "query": "How to find out when an application was installed and when the applications/libraries it depends on are installed?"}
38
+ {"query_id": 1464, "query": "vim auto indenting even after setting noai option"}
39
+ {"query_id": 55576, "query": "PS command ouput limited to 80 bytes only"}
40
+ {"query_id": 3886, "query": "Difference between nohup, disown and &"}
41
+ {"query_id": 3645, "query": "How can I check which shell I am currently using?"}
42
+ {"query_id": 3409, "query": "Beginning to learn Unix and Linux"}
43
+ {"query_id": 3646, "query": "How can I list only the directories present in a directory using ls?"}
44
+ {"query_id": 56429, "query": "How to print all lines after a match up to the end of the file?"}
45
+ {"query_id": 86296, "query": "Is it OK to store /var/tmp on a SSD?"}
46
+ {"query_id": 19686, "query": "Open Sakura in home directory"}
47
+ {"query_id": 138737, "query": "tmux protocol mismatch with no upgrade"}
48
+ {"query_id": 46821, "query": "Duplicate keystrokes onto remote computer in realtime"}
49
+ {"query_id": 17263, "query": "Launching application from terminal"}
50
+ {"query_id": 47918, "query": "How to grep a specific line _and_ the first line of a file?"}
51
+ {"query_id": 144187, "query": "Calculate Total disk i/o by a single process"}
52
+ {"query_id": 81628, "query": "is there an alternative to tail -f that has convenient scrolling?"}
53
+ {"query_id": 146114, "query": "How to find which application is creating a particular file in a path?"}
54
+ {"query_id": 148777, "query": "scroll through output using `less` or `tail -f` while keeping the header visible"}
55
+ {"query_id": 79316, "query": "How to deal with spaces in a variable"}
56
+ {"query_id": 102732, "query": "Regex and patterns on a ksh command line"}
57
+ {"query_id": 33519, "query": "How to make X less sensitive when right clicking?"}
58
+ {"query_id": 144190, "query": "cd to the most recently created directory"}
59
+ {"query_id": 93602, "query": "Resize an extended partition to the whole drive"}
60
+ {"query_id": 110595, "query": "Why do forked processes sometimes appear with brackets [] around their name in ps?"}
61
+ {"query_id": 2342, "query": "Why is there a * When There is Mention of Unix Throughout the Internet?"}
62
+ {"query_id": 3431, "query": "What to use to harden Linux box? Apparmor, SELinux, grsecurity, SMACK, chroot?"}
63
+ {"query_id": 125850, "query": "changing the names of files within a directory"}
64
+ {"query_id": 38191, "query": "Terminal 256 colors don't work through Tmux"}
65
+ {"query_id": 10646, "query": "Repeat a Unix command every x seconds forever"}
66
+ {"query_id": 57777, "query": "connect to a remote server through ssh"}
67
+ {"query_id": 78210, "query": "How do I find the running GUI environment from the terminal?"}
68
+ {"query_id": 124995, "query": "TAR Backup to Remote Server"}
69
+ {"query_id": 2577, "query": "How can I move files and view the progress (e.g. with a progress bar)?"}
70
+ {"query_id": 30470, "query": "What does `:-` mean in a shell script"}
71
+ {"query_id": 89107, "query": "Which cmd is the best for determining the OS' word size (32/64)-bit?"}
72
+ {"query_id": 35929, "query": "How can we change root password?"}
73
+ {"query_id": 134155, "query": "How do you keep the password hidden when invoked during the su command?"}
74
+ {"query_id": 102504, "query": "Hard links versus symbolic links: which one is faster / smaller?"}
75
+ {"query_id": 4770, "query": "Quoting in ssh $host $FOO and ssh $host \"sudo su user -c $FOO\" type constructs"}
76
+ {"query_id": 124351, "query": "Transfer files client-server inside a SSH session"}
77
+ {"query_id": 1262, "query": "Where did the \"wheel\" group get its name?"}
78
+ {"query_id": 125683, "query": "Moving pacman from root to /home partition"}
79
+ {"query_id": 55124, "query": "Remove a block of lines between two patterns"}
80
+ {"query_id": 148715, "query": "I don't know how to cancel job"}
81
+ {"query_id": 146773, "query": "why bash increment: `n=0;((n++));` return error?"}
82
+ {"query_id": 60710, "query": "Cannot boot into Windows 7 after deleting Linux partitions"}
83
+ {"query_id": 10617, "query": "Arch Linux not booting after system update"}
84
+ {"query_id": 145207, "query": "Upgraded to mint 17, keyboard stuck in non-english (wrong layout) language - can't login"}
85
+ {"query_id": 148953, "query": "Unix Useradd - Audit list of users added to system"}
86
+ {"query_id": 102312, "query": "No matter how many times I try re-installing Linux Mint, I get a GRUB error. How do I fix it?"}
87
+ {"query_id": 102553, "query": "Current IP address as visible from the internet?"}
88
+ {"query_id": 132142, "query": "\"error while loading shared libraries: libopenal.so.1\" while installing Drox Operative"}
89
+ {"query_id": 6704, "query": "How can I grep in PDF files?"}
90
+ {"query_id": 22604, "query": "How to bulk convert all the file in a file system branch between Unix and Windows line break format?"}
91
+ {"query_id": 44853, "query": "Why process wont start in Inittab"}
92
+ {"query_id": 105840, "query": "nohup: ignoring input and redirecting stderr to stdout"}
93
+ {"query_id": 18583, "query": "Why is my PATH not listed in my .bashrc file?"}
94
+ {"query_id": 1033, "query": "How to change font-size, number of rows / columns on a terminal"}
95
+ {"query_id": 58880, "query": "How does vim steal root owned files?"}
96
+ {"query_id": 148967, "query": "How to use a shell variable inside sed's s command?"}
97
+ {"query_id": 53196, "query": "How to block https facebook site using iptables"}
98
+ {"query_id": 122399, "query": "Where is the value for current \"In USE\" keyboard layout in the system"}
99
+ {"query_id": 58643, "query": "How to fix dpkg-buildpackage: command not found?"}
100
+ {"query_id": 33729, "query": "Need help to make rows into column with awk or sed"}
101
+ {"query_id": 604, "query": "Isn't less just more?"}
102
+ {"query_id": 29470, "query": "Keep running a script via ssh"}
103
+ {"query_id": 38162, "query": "How can I force unzip / zip not to create a subdirectory when I extract it?"}
104
+ {"query_id": 18796, "query": "How to apply changes of newly added user groups without needing to reboot?"}
105
+ {"query_id": 93657, "query": "How driver is specified for any device?"}
106
+ {"query_id": 19882, "query": "Directory size calculation difference"}
107
+ {"query_id": 116702, "query": "How can I listen to communication between a process and a serial port?"}
108
+ {"query_id": 41336, "query": "Where do the files go if you mount a drive to a folder that already contains files?"}
109
+ {"query_id": 58651, "query": "Adjusting keyboard sensitivity in a command line terminal?"}
110
+ {"query_id": 56473, "query": "Linux isn't sure whether a file exists or not"}
111
+ {"query_id": 20878, "query": "Tmux not scaling to fill the window"}
112
+ {"query_id": 27021, "query": "How to name a file in the deepest level of a directory tree"}
113
+ {"query_id": 56479, "query": "How to delete a file to the trash in BASH (Linux)"}
114
+ {"query_id": 81677, "query": "Setting up network from a \"minimal\" CentOS 6.4 install"}
115
+ {"query_id": 128921, "query": "Regular expressions in a shell"}
116
+ {"query_id": 49058, "query": "Shouldn't there be more RAM free than this?"}
117
+ {"query_id": 4547, "query": "NIS and autofs error"}
118
+ {"query_id": 6726, "query": "How do I ensure that a terminal remains scrollable?"}
119
+ {"query_id": 71857, "query": "What is the @ after directory listing mean?"}
120
+ {"query_id": 19654, "query": "Changing extension to multiple files"}
121
+ {"query_id": 137856, "query": "How hide the grub 2 start up screen in debian during bootup?"}
122
+ {"query_id": 4561, "query": "How do I find out what hard disks are in the system?"}
123
+ {"query_id": 57570, "query": "Connect to SSH from outside LAN"}
124
+ {"query_id": 28363, "query": "What's the difference between \"s\" and \"S\" in ls -la?"}
125
+ {"query_id": 29450, "query": "Shell: how to go to the beginning of line when you are inside a screen?"}
126
+ {"query_id": 82515, "query": "How can I filter those \"Permission denied\" from find output?"}
127
+ {"query_id": 3467, "query": "What does \"rc\" in .bashrc stand for?"}
128
+ {"query_id": 5888, "query": "How to apply recursively chmod directories without affecting files?"}
129
+ {"query_id": 27271, "query": "What file system is my file on?"}
130
+ {"query_id": 30676, "query": "Block Internet Access for 1 User"}
131
+ {"query_id": 629, "query": "Is it possible to rename a Unix user account?"}
132
+ {"query_id": 143907, "query": "How can one ensure bandwidth is not hijacked?"}
133
+ {"query_id": 64672, "query": "How to cut (select) a field from text line counting from the end?"}
134
+ {"query_id": 24410, "query": "How do I connect to a new wifi on the command line?"}
135
+ {"query_id": 62015, "query": "Running an executable in PATH with the same name as an existing function"}
136
+ {"query_id": 127421, "query": "Ransomware like BitCrypt dangerous for linux system"}
137
+ {"query_id": 154803, "query": "Obtaining information about system hardware"}
138
+ {"query_id": 149451, "query": "Install R in my own directory"}
139
+ {"query_id": 149694, "query": "Automatic sleep not working in Gnome"}
140
+ {"query_id": 3239, "query": "How can I reproduce commands run on one machine on another machine?"}
141
+ {"query_id": 118950, "query": "What do the number in the file metadata mean"}
142
+ {"query_id": 115202, "query": "Third level domains"}
143
+ {"query_id": 115686, "query": "How to route \"single ip\" to different interfaces"}
144
+ {"query_id": 53542, "query": "How to determine the filesystem of an unmounted device?"}
145
+ {"query_id": 50279, "query": "Is it against linux ethos to provide a progress indicator for running commands?"}
146
+ {"query_id": 11343, "query": "Linux tools to treat files as sets and perform set operations on them"}
147
+ {"query_id": 6505, "query": "Need to upgrade svn on centos"}
148
+ {"query_id": 104791, "query": "How can I disable the button of my CD/DVD drive?"}
149
+ {"query_id": 117609, "query": "Capture Error of LS to file"}
150
+ {"query_id": 63594, "query": "Avoiding temporary files in zsh"}
151
+ {"query_id": 97105, "query": "How to use grep command to find the matching pattern and some more characters?"}
152
+ {"query_id": 101285, "query": "What does a high load with an empty top mean?"}
153
+ {"query_id": 49942, "query": "Simple jail for user with open-ssh"}
154
+ {"query_id": 64203, "query": "How to get lighter (more white) themes for Xfce?"}
155
+ {"query_id": 36871, "query": "Where should a local executable be placed?"}
156
+ {"query_id": 130844, "query": "How do I route traffic between eth0:0 and eth0"}
157
+ {"query_id": 59098, "query": "How can I access (including read and write) a linux file system from a windows machine on the same network"}
158
+ {"query_id": 881, "query": "Ensure a process is always running"}
159
+ {"query_id": 86219, "query": "one IP several guests same port 22"}
160
+ {"query_id": 50044, "query": "Use a script parameter in awk"}
161
+ {"query_id": 31187, "query": "How to enable crash reports/core dumps/stack trace logging globally?"}
162
+ {"query_id": 137486, "query": "Disallow Changing of Passwords"}
163
+ {"query_id": 5665, "query": "What does etc stand for?"}
164
+ {"query_id": 45580, "query": "Loading a custom library"}
165
+ {"query_id": 37964, "query": "Disable direct login for normal users (like oracle) in linux but allow scp and sftp?"}
166
+ {"query_id": 45582, "query": "Can servers be synchronised to share the same configurations?"}
167
+ {"query_id": 12203, "query": "\"rsync: failed to set permissions on ...\" error with rsync -a or -p option"}
168
+ {"query_id": 86694, "query": "Can I use several pipelines as a argument?"}
169
+ {"query_id": 23306, "query": "Can the background of the log-in screen of linux mint 11 change?"}
170
+ {"query_id": 92920, "query": "Use the command bar in bash without I/O?"}
171
+ {"query_id": 43154, "query": "How do I set permissions for a directory so that files and directories created under it maintain group write permissions?"}
172
+ {"query_id": 4595, "query": "Searching for a command line tagging tool for mp3 and ogg that supports pictures"}
173
+ {"query_id": 153974, "query": "How to export a subset of a 'less' output"}
174
+ {"query_id": 80934, "query": "C Shell Array Declaration Syntax, () vs {}"}
175
+ {"query_id": 153977, "query": "Automatically put an alias into ~/.bashrc or ~/.zshrc"}
176
+ {"query_id": 116989, "query": "Why is df -h size, util and dispo not corresponding to each other"}
177
+ {"query_id": 24878, "query": "How do I install g++ on RHEL6?"}
178
+ {"query_id": 53563, "query": "Is it possible to modify the colors in bash?"}
179
+ {"query_id": 56834, "query": "How do I force a user to log out?"}
180
+ {"query_id": 56836, "query": "Can you specify an enclosure for cut?"}
181
+ {"query_id": 46898, "query": "Sort a file based on 1 column"}
182
+ {"query_id": 7870, "query": "How to check how long a process has been running?"}
183
+ {"query_id": 7631, "query": "error booting the custom compiled kernel 2.6.37 on ubuntu 10.04 : gave up waiting on root device"}
184
+ {"query_id": 46410, "query": "package management"}
185
+ {"query_id": 6301, "query": "How do I read from /proc/$pid/mem under Linux?"}
186
+ {"query_id": 98697, "query": "Bash command to open a system's terminal"}
187
+ {"query_id": 65315, "query": "How to do a continous 'wc -l' with gnu texttools?"}
188
+ {"query_id": 130628, "query": "Why does it take more time for a login to fail than to succeed?"}
189
+ {"query_id": 98693, "query": "getaddrinfo() from shell?"}
190
+ {"query_id": 149001, "query": "moving a process to fg and bg"}
191
+ {"query_id": 136171, "query": "ACL is NOT enabled but it's working"}
192
+ {"query_id": 34435, "query": "top output: cpu usage > 100%"}
193
+ {"query_id": 124356, "query": "centos patch heartbleed bug"}
194
+ {"query_id": 6777, "query": "How to clean up file extensions?"}
195
+ {"query_id": 138592, "query": "How to clone a Debian installation?"}
196
+ {"query_id": 13996, "query": "How can I break away from an SSH session that has crashed?"}
197
+ {"query_id": 15932, "query": "How do I add a user in SVN?"}
198
+ {"query_id": 6790, "query": "executing a sh script from the cron"}
199
+ {"query_id": 6551, "query": "How can I set env variables so that KDE recognizes them?"}
200
+ {"query_id": 25948, "query": "Parallelizing a for loop"}
201
+ {"query_id": 46645, "query": "how can I use bash as my login shell when my sysadmin refuses to let me change it"}
202
+ {"query_id": 67503, "query": "Move all files with a certain extension from multiple subdirectories into one directory"}
203
+ {"query_id": 47730, "query": "Rescale a PDF file"}
204
+ {"query_id": 97157, "query": "Syntax error in shell script"}
205
+ {"query_id": 66899, "query": "How to tell grep to match special character at beginning of each word"}
206
+ {"query_id": 22674, "query": "Shell script for moving oldest files?"}
207
+ {"query_id": 146145, "query": "How do I stop a bash shell PS1 color to stop at the end of the command?"}
208
+ {"query_id": 72096, "query": "Grab text from detached screen"}
209
+ {"query_id": 75364, "query": "copy sas file from prior version directory to new version directory"}
210
+ {"query_id": 14815, "query": "Process descendants"}
211
+ {"query_id": 78886, "query": "LVM to extend a partition?"}
212
+ {"query_id": 32000, "query": "stdout , stderr and logging using the script command"}
213
+ {"query_id": 10692, "query": "How do I get which to show aliases?"}
214
+ {"query_id": 57706, "query": "Difference between 3 commands which are used to execute shell script?"}
215
+ {"query_id": 4144, "query": "How to have correct permissions of files from usb disks?"}
216
+ {"query_id": 42032, "query": "How to set environment variable JAVA_HOME that will be saved on exit?"}
217
+ {"query_id": 139854, "query": "Why does wget return a HTTP 403 error to download openSSH pet?"}
218
+ {"query_id": 7412, "query": "How to reconnect a logically disconnected USB device?"}
219
+ {"query_id": 67758, "query": "move a directory with a single character (back quote) as its name"}
220
+ {"query_id": 99325, "query": "Automatically save bash command history in screen session"}
221
+ {"query_id": 98231, "query": "Symbolic link path"}
222
+ {"query_id": 53591, "query": "Command line e-mailing"}
223
+ {"query_id": 24625, "query": "How to completely disable swap?"}
224
+ {"query_id": 147242, "query": "How to kill - softly?"}
225
+ {"query_id": 34898, "query": "Can an interupt be processed by software, without hardware support?"}
226
+ {"query_id": 685, "query": "Why put things other than /home to a separate partition?"}
227
+ {"query_id": 52268, "query": "Why is it a bad idea to run as root?"}
228
+ {"query_id": 10220, "query": "listing packages in Debian, a la `dpkg -l`, but including the package origin/source"}
229
+ {"query_id": 53119, "query": "Best distro for programming"}
230
+ {"query_id": 88675, "query": "Is there any way to check df -k hanging for nfs mount issues?"}
231
+ {"query_id": 103019, "query": "Can't install new applications"}
232
+ {"query_id": 56868, "query": "Modify environment variable in a running process"}
233
+ {"query_id": 44686, "query": "Finding command execution time in hindsight"}
234
+ {"query_id": 22419, "query": "Show lines matching a pattern and the 4 lines before each"}
235
+ {"query_id": 98029, "query": "Need a shell script which should send a mail to me once every 20 days"}
236
+ {"query_id": 119812, "query": "setting environment variable as a function of another env variable"}
237
+ {"query_id": 18151, "query": "How to follow links in linux man pages?"}
238
+ {"query_id": 31379, "query": "install firefox in ubuntu-server edition"}
239
+ {"query_id": 35732, "query": "What is the easiest way to execute text from tail at the command line?"}
240
+ {"query_id": 126349, "query": "Disable commands for users"}
241
+ {"query_id": 55546, "query": "Removing Color Codes From Output"}
242
+ {"query_id": 32222, "query": "Shell script executing in the terminal but not from shell script file"}
243
+ {"query_id": 117643, "query": "Check for Process if Same is Running"}
244
+ {"query_id": 52277, "query": "Pacman option to assume \"yes\" to every question?"}
245
+ {"query_id": 5478, "query": "What process created this X11 window?"}
246
+ {"query_id": 104797, "query": "HDD indicator blinks when I run out of memory, but I have no swap configured"}
247
+ {"query_id": 105402, "query": "/dev/disk/ lists disks, why /dev/net/ doesn't list network interfaces?"}
248
+ {"query_id": 107823, "query": "How can the output of ldd be checked to see of they exist on a different system or not?"}
249
+ {"query_id": 53128, "query": "Difference between passwd and passwd- file"}
250
+ {"query_id": 7658, "query": "Linux: Writing a watchdog to monitor multiple processes"}
251
+ {"query_id": 120800, "query": "Bash in php exec don't color png and mp3 files on Linux"}
252
+ {"query_id": 140857, "query": "i3 mirrors laptop screen on monitor, wasting space"}
253
+ {"query_id": 137219, "query": "Execute snippet of code when key is pressed"}
254
+ {"query_id": 65110, "query": "No more coredumps after migrating to systemd"}
255
+ {"query_id": 65354, "query": "Why can't I trim a file using `head`?"}
256
+ {"query_id": 90772, "query": "First characters of the command repeated in the display when completing"}
257
+ {"query_id": 103242, "query": "Need help in removing specific character"}
258
+ {"query_id": 42010, "query": "Re-assigning (specifically, incrementing) a variable in a bash script"}
259
+ {"query_id": 47941, "query": "What's wrong with these two cron job's?"}
260
+ {"query_id": 65115, "query": "Total vs listed directories"}
261
+ {"query_id": 92710, "query": "How to create alias to kill processes running on a TCP/IP port?"}
262
+ {"query_id": 148353, "query": "Show error messages and information that a program was killed on another terminal"}
263
+ {"query_id": 80968, "query": "How can I create automatically expiring user accounts?"}
264
+ {"query_id": 127432, "query": "Logging SSH access attempts"}
265
+ {"query_id": 130824, "query": "Difference between \".\" and \"./\" while setting the environment variables using export?"}
266
+ {"query_id": 117629, "query": "How to ask for a password to mount crypted swap at boot time on Linux Mint 16 with initramfs-tools?"}
267
+ {"query_id": 36815, "query": "Find out network traffic per IP"}
268
+ {"query_id": 131918, "query": "Is it possible to make zcat output text even if it's uncompressed?"}
269
+ {"query_id": 32210, "query": "using single or double bracket - bash"}
270
+ {"query_id": 33541, "query": "`free`: output format"}
271
+ {"query_id": 80733, "query": "Possible to get RAID1, by simply adding HDD?"}
272
+ {"query_id": 118964, "query": "Share config among ssh aliases"}
273
+ {"query_id": 76478, "query": "What does this code do?"}
274
+ {"query_id": 87129, "query": "Customizing console appearance"}
275
+ {"query_id": 78659, "query": "Setting up Helvetica with fontconfig"}
276
+ {"query_id": 9605, "query": "How can I detect if the shell is controlled from SSH?"}
277
+ {"query_id": 139886, "query": "Terminal sometimes fails to find executables on local directory"}
278
+ {"query_id": 86036, "query": "Use same arguments with different command"}
279
+ {"query_id": 58825, "query": "Assigning IP address to environment variable"}
280
+ {"query_id": 105417, "query": "GPS stopped working, gpsctl says: \"gpsctl:ERROR: packet recognition timed out\""}
281
+ {"query_id": 88452, "query": "Concatenating two variables with an underscore"}
282
+ {"query_id": 94247, "query": "SSH connection establishment too slow"}
283
+ {"query_id": 130796, "query": "What is the difference between all and default in kernel setting?"}
284
+ {"query_id": 48103, "query": "Construct a command by putting a string into a tty"}
285
+ {"query_id": 5268, "query": "How do I merge two *.avi files into one?"}
286
+ {"query_id": 71121, "query": "determine shell in script during runtime"}
287
+ {"query_id": 119999, "query": "Linux Mint Booting Installed Partition"}
288
+ {"query_id": 106680, "query": "Invert colors on one window"}
289
+ {"query_id": 131649, "query": "Free DNS Clients"}
290
+ {"query_id": 80088, "query": "How to find files by the time in their filename?"}
291
+ {"query_id": 116498, "query": "List the file permissions of only the current directory"}
292
+ {"query_id": 145801, "query": "paths for searching executables"}
293
+ {"query_id": 35279, "query": "Typescript -terminal recording into video?"}
294
+ {"query_id": 150158, "query": "how to create a v.imrc"}
295
+ {"query_id": 33099, "query": "How to check progress when cloning a disk using `dd`?"}
296
+ {"query_id": 83357, "query": "Staggering the authentication delay on failed `su` or `sudo`"}
297
+ {"query_id": 104018, "query": "Set dynamic window title based on command input"}
298
+ {"query_id": 82021, "query": "What is the equivalent of apt-file in portage, if any?"}
299
+ {"query_id": 86621, "query": "The difference that quotation marks make in find command"}
300
+ {"query_id": 18937, "query": "Why most unix don't have undelete function?"}
301
+ {"query_id": 107541, "query": "Add ssh user with minimum rights for backup"}
302
+ {"query_id": 105365, "query": "How to add the logs to a crontab with time stamp"}
303
+ {"query_id": 13251, "query": "Batch delete exif info"}
304
+ {"query_id": 7215, "query": "Deleting all files in a folder except files X, Y, and Z"}
305
+ {"query_id": 24145, "query": "How can different file descriptors point to the same file in open file table?"}
306
+ {"query_id": 34174, "query": "How can I limit the output speed of stdout?"}
307
+ {"query_id": 103180, "query": "How does the Linux desktop perform system actions?"}
308
+ {"query_id": 28506, "query": "How do you install Grub2 on a USB stick?"}
309
+ {"query_id": 143871, "query": "What is the difference between ~ and / in paths"}
310
+ {"query_id": 138291, "query": "replace $ with \u00a3 using sed command"}
311
+ {"query_id": 119996, "query": "How can I hide a command line from (e.g.) top & htop?"}
312
+ {"query_id": 151498, "query": "What does \"mv *\" do?"}
313
+ {"query_id": 60481, "query": "Match word containing characters beyond a-zA-Z"}
314
+ {"query_id": 50208, "query": "How to change the working directory of invoking shell using a script?"}
315
+ {"query_id": 8554, "query": "Parsing XML's , JSON's and newer data file formats in UNIX using command line utilities"}
316
+ {"query_id": 98868, "query": "Self complied version of GCC overwriting package installed version"}
317
+ {"query_id": 1910, "query": "How linux handles multiple path separators (/home////username///file)"}
318
+ {"query_id": 139152, "query": "configure ToggleShowDesktop in Openbox to only act on specified layer"}
319
+ {"query_id": 24351, "query": "Remotely control an xorg session"}
320
+ {"query_id": 75992, "query": "Renamed network interfaces"}
321
+ {"query_id": 60257, "query": "How to create a sequence with leading zeroes using brace expansion"}
322
+ {"query_id": 127117, "query": "Why Service accounts in Linux and Unix Systems?"}
323
+ {"query_id": 126269, "query": "Passwordless sudo not working"}
324
+ {"query_id": 77934, "query": "Parameters of script"}
325
+ {"query_id": 151023, "query": "Reading file with different formats"}
326
+ {"query_id": 46382, "query": "Recreating EXT4 partition without losing data"}
327
+ {"query_id": 16978, "query": "How to make password-less login work"}
328
+ {"query_id": 45051, "query": "Format external hard drive to linux compatible file system"}
329
+ {"query_id": 139154, "query": "Show output only if both words match using grep"}
330
+ {"query_id": 64861, "query": "How to display numbers in reverse order using seq(1)?"}
331
+ {"query_id": 14560, "query": "How to recover data from a bad SD card?"}
332
+ {"query_id": 35241, "query": "How to combine two grep statements and display their results together?"}
333
+ {"query_id": 127110, "query": "Which process scheduler is my linux system using?"}
334
+ {"query_id": 88808, "query": "Empty the contents of a file"}
335
+ {"query_id": 25690, "query": "How do I prevent a script from terminating when the shell exits?"}
336
+ {"query_id": 119733, "query": "Can a superuser (with 'root' access) manipulate data on a database installed on the server?"}
337
+ {"query_id": 85305, "query": "Is there a standard POSIX way of doing `tac`"}
338
+ {"query_id": 83127, "query": "Ubuntu directory permissions - Sticky bit - Prevent deletion of a file"}
339
+ {"query_id": 83120, "query": "iptables: how to allow traffic from redirected port"}
340
+ {"query_id": 1924, "query": "Create services in Linux (Start up in linux)"}
341
+ {"query_id": 45040, "query": "Why isn't there a server edition for Fedora like Ubuntu?"}
342
+ {"query_id": 128279, "query": "How Linux is implementing case sensitivity and what are its benefits over windows"}
343
+ {"query_id": 63783, "query": "What is the function of user group root?"}
344
+ {"query_id": 27841, "query": "How to make \"notify-send\" work from daemon application"}
345
+ {"query_id": 23246, "query": "Hard links vs. Soft links: When would you want to use one over the other?"}
346
+ {"query_id": 272, "query": "Simple file transfer"}
347
+ {"query_id": 6393, "query": "How do you move all files (including hidden) in a directory to another?"}
348
+ {"query_id": 13208, "query": "GCC installation prefix under Linux"}
349
+ {"query_id": 77951, "query": "Traceback (most recent call last) error appears on terminal"}
350
+ {"query_id": 84246, "query": "How many clipboards are in system?"}
351
+ {"query_id": 117148, "query": "How can I run reboot as a normal user without needing to enter a password?"}
352
+ {"query_id": 88602, "query": "scp from remote host fails due to login greeting set in .bashrc"}
353
+ {"query_id": 141402, "query": "SCP Automation in production environment"}
354
+ {"query_id": 14537, "query": "How to limit resource usage to save CPU+RAM for a certain process?"}
355
+ {"query_id": 138485, "query": "Is there a way to administrate multiple computers at the same time?"}
356
+ {"query_id": 129596, "query": "Some puzzles of how to close file descriptors on sh or bash"}
357
+ {"query_id": 13451, "query": "What is the \"directory order\" of files in a directory (used by `ls -U`)?"}
358
+ {"query_id": 48777, "query": "Command to display first few and last few lines of a file"}
359
+ {"query_id": 73116, "query": "Time synchronization of machines on LAN to GPS NTP server on the LAN"}
360
+ {"query_id": 96698, "query": "Mac OS X Darwin: how to reset admin password?"}
361
+ {"query_id": 62221, "query": "Find functions, commands, and builtins"}
362
+ {"query_id": 45025, "query": "How to suspend and bring a background process to foreground"}
363
+ {"query_id": 118219, "query": "Free disk space from a JBoss log file which is still being written to"}
364
+ {"query_id": 71176, "query": "Howto find duplicate files on disk"}
365
+ {"query_id": 94270, "query": "How to install squashfs-tools on Ubuntu?"}
366
+ {"query_id": 7493, "query": "Why is the US international keyboard layout on Debian different?"}
367
+ {"query_id": 140565, "query": "Backup of data from Linux PC"}
368
+ {"query_id": 151455, "query": "Show signals received by processes"}
369
+ {"query_id": 1709, "query": "How to fix Ctrl + arrows in Vim?"}
370
+ {"query_id": 13214, "query": "How many files can be saved in one directory on Linux?"}
371
+ {"query_id": 52668, "query": "How to fix hard-disk error connected by usb?"}
372
+ {"query_id": 17815, "query": "running script with \". \" and with \"source \""}
373
+ {"query_id": 46350, "query": "Switching to superuser while shell script is running"}
374
+ {"query_id": 84233, "query": "Keyboard shortcut to copy current command from terminal to clipboard"}
375
+ {"query_id": 83381, "query": "Visualizing ansi color escape codes in log files correctly in Emacs"}
376
+ {"query_id": 17810, "query": "Computer terminal and virtual console"}
377
+ {"query_id": 38737, "query": "SSH login with clear text password as a parameter?"}
378
+ {"query_id": 45259, "query": "list Windows shared folders (samba) available in the local network?"}
379
+ {"query_id": 154740, "query": "Using nohup to keep a script running indefinitely"}
380
+ {"query_id": 13660, "query": "Is it possible to login via ssh to unlock LUKS drives?"}
381
+ {"query_id": 36540, "query": "Why am I still getting a password prompt with ssh with public key authentication?"}
382
+ {"query_id": 46344, "query": "How do I get this find and rename command to work with subdirectories?"}
383
+ {"query_id": 119779, "query": "alternatives to adding entry in /etc/hosts"}
384
+ {"query_id": 148069, "query": "IPTables rules for specific processes"}
385
+ {"query_id": 65505, "query": "How can I configure zsh to let it explain to me where I can retrieve an executable instead of saying file not found?"}
386
+ {"query_id": 33030, "query": "process files in a directory as they appear"}
387
+ {"query_id": 25404, "query": "Is there a difference between Linux and Unix?"}
388
+ {"query_id": 154509, "query": "How can I make sed not append a newline character?"}
389
+ {"query_id": 96484, "query": "How can I configure syslog.conf file, to log iptables messages in a separate file?"}
390
+ {"query_id": 97572, "query": "Logging violations of rules in limits.conf"}
391
+ {"query_id": 86209, "query": "Why is bash interpreting characters that I have character escaped?"}
392
+ {"query_id": 24550, "query": "Unix (Ubuntu Server): $PYTHONPATH resets to blank when I reboot"}
393
+ {"query_id": 78821, "query": "How can I rename all files with one extension to a different extension recursively"}
394
+ {"query_id": 43073, "query": "Custom xkb layout in which one key creates two unicode code points"}
395
+ {"query_id": 20193, "query": "How to make putty to not break my session after some time?"}
396
+ {"query_id": 12332, "query": "Which are the biggest offshoots of UNIX?"}
397
+ {"query_id": 10158, "query": "Splitting large directory tree into specified-size chunks?"}
398
+ {"query_id": 122944, "query": "Unable to open Windows Disk partitions in solaris 11"}
399
+ {"query_id": 85352, "query": "How can I `alias sudo !!`?"}
400
+ {"query_id": 154733, "query": "Operations only on complete files"}
401
+ {"query_id": 63335, "query": "How to remove all white spaces just between brackets [] using bash?"}
402
+ {"query_id": 126068, "query": "How to know my server's time offset?"}
403
+ {"query_id": 148074, "query": "Unix filesys reserved space"}
404
+ {"query_id": 94297, "query": "ksh:Get files created on specific date in directory"}
405
+ {"query_id": 76870, "query": "cat files in current folder and all subfolders"}
406
+ {"query_id": 119772, "query": "Why is GParted listing an empty parition as using 43.90 GB?"}
407
+ {"query_id": 151238, "query": "characters stick at the CLI"}
408
+ {"query_id": 15611, "query": "What is the difference between 'su -' and 'su root'?"}
409
+ {"query_id": 38951, "query": "What is the 'working directory' when cron executes a job"}
410
+ {"query_id": 1729, "query": "Does installing and using Wine open up your Linux platform to windows virus'?"}
411
+ {"query_id": 89941, "query": "How proc gets updated about the devices"}
412
+ {"query_id": 55954, "query": "How to build a custom kernel?"}
413
+ {"query_id": 86674, "query": "How can I change the date modified of a folder to the last changed file inside?"}
414
+ {"query_id": 55719, "query": "How to loop through each file in FTP directory using a bash script"}
415
+ {"query_id": 77969, "query": "'screen' utility : how to prevent it to handle the display?"}
416
+ {"query_id": 6199, "query": "How do I install mercurial on openSUSE?"}
417
+ {"query_id": 111631, "query": "Windows partition hidden?"}
418
+ {"query_id": 151091, "query": "Determin if the currnet terminal has a dark or light theme"}
419
+ {"query_id": 107138, "query": "I want to print a line when a user login"}
420
+ {"query_id": 108222, "query": "Linux - Sending a command to a screen through a shell script?"}
421
+ {"query_id": 110540, "query": "Adding Postgres bins to PATH: should I `export`?"}
422
+ {"query_id": 27006, "query": "Which *nix distro is most lightweight for running virtual machines?"}
423
+ {"query_id": 41555, "query": "can't change file permission"}
424
+ {"query_id": 107131, "query": "Find files systemwide that are created within a date range"}
425
+ {"query_id": 85928, "query": "How to make apt recognize an installed tar package?"}
426
+ {"query_id": 31751, "query": "Doubt on the value of PS1 environment variable"}
427
+ {"query_id": 82424, "query": "How to check which client is accessing Unix?"}
428
+ {"query_id": 28571, "query": "Redirect traffic through vpn on an as needed basis"}
429
+ {"query_id": 61719, "query": "Changing tmux .bash_profile behavior"}
430
+ {"query_id": 1736, "query": "When do su and sudo use different passwords?"}
431
+ {"query_id": 117184, "query": "Most efficient way of purging of 10TB data from SAN?"}
432
+ {"query_id": 16120, "query": "In bash how can I change the color of my command prompt?"}
433
+ {"query_id": 19871, "query": "Have to type out whole path in order to execute an application in OSX"}
434
+ {"query_id": 128060, "query": "finding specific path for an installed program"}
435
+ {"query_id": 21956, "query": "Pretty tail -f for log files"}
436
+ {"query_id": 60404, "query": "Manipulate file name piped from find command"}
437
+ {"query_id": 57239, "query": "Unix cp wildcard with directory structure"}
438
+ {"query_id": 82657, "query": "Trouble with mv and adding the date"}
439
+ {"query_id": 10825, "query": "Remember a half-typed command while I check something"}
440
+ {"query_id": 147831, "query": "Get number of installed RAM sticks on server and size"}
441
+ {"query_id": 132350, "query": "What are the specific naming conventions for variables in bash shell scripting language?"}
442
+ {"query_id": 41770, "query": "How can I copy a file and create the target directories at the same time?"}
443
+ {"query_id": 107111, "query": "what is meant by vi and emacs editing modes"}
444
+ {"query_id": 109536, "query": "If you ^Z from a process, it gets \"stopped\". How do you switch back in?"}
445
+ {"query_id": 8396, "query": "Bash: Display exit status in prompt:"}
446
+ {"query_id": 40442, "query": "Which installed software packages use the most disk space on Debian?"}
447
+ {"query_id": 132115, "query": "How to find reason a notebook wakes up?"}
448
+ {"query_id": 62830, "query": "\"error setting up gummiboot-efi\" on Archboot UEFI install"}
449
+ {"query_id": 56395, "query": "Replace semicolons to commas between the quotes only"}
450
+ {"query_id": 25049, "query": "How do I close a terminal without saving the history?"}
451
+ {"query_id": 78182, "query": "How to lock users after 5 unsuccessful login tries?"}
452
+ {"query_id": 21920, "query": "SSH output isn't line buffered?"}
453
+ {"query_id": 27220, "query": "ssh + nohup does not work"}
454
+ {"query_id": 30400, "query": "Execute remote commands, completely detaching from the ssh connection"}
455
+ {"query_id": 1993, "query": "Make package explicitly installed in pacman"}
456
+ {"query_id": 29884, "query": "Two prefix commands for tmux?"}
457
+ {"query_id": 81355, "query": "Trouble with read line script in Cygwin"}
458
+ {"query_id": 17428, "query": "Moved bin and other folders! How to get them back?"}
459
+ {"query_id": 116070, "query": "granting write permissions to a group to a folder"}
460
+ {"query_id": 119583, "query": "How to trick a particular command into thinking it is a different date?"}
461
+ {"query_id": 120327, "query": "Cron Job - Log Each Minutes Activity"}
462
+ {"query_id": 121415, "query": "shell script header for best compatibility"}
463
+ {"query_id": 2606, "query": "Get list of required libraries when installing something from source"}
464
+ {"query_id": 2605, "query": "Change main partition size to install another distribution"}
465
+ {"query_id": 155463, "query": "Understanding the Different Bin Locations"}
466
+ {"query_id": 132122, "query": "shell or python script to transpose rows to columns"}
467
+ {"query_id": 90299, "query": "How to get 256 color support in a login shell TTY?"}
468
+ {"query_id": 9496, "query": "Looping through files with spaces in the names?"}
469
+ {"query_id": 18765, "query": "Best way to remove file extension from a string?"}
470
+ {"query_id": 18760, "query": "How does the \"tail\" command's \"-f\" parameter work?"}
471
+ {"query_id": 148950, "query": "I have to calculate values from two files and store the result in output file"}
472
+ {"query_id": 57012, "query": "Coloring shell command and output differrently"}
473
+ {"query_id": 61997, "query": "Recovering from \"chmod -R 777 /\" in Ubuntu"}
474
+ {"query_id": 78176, "query": "vmblock on archlinux"}
475
+ {"query_id": 90294, "query": "How can I pipe colored tree result to less or more?"}
476
+ {"query_id": 120796, "query": "logic behind deleting files where user does not have right to write"}
477
+ {"query_id": 146521, "query": "Result of diff two files with switched lines says missing the same line twice"}
478
+ {"query_id": 123821, "query": "How to record the actual running time of a program with other programs running?"}
479
+ {"query_id": 26385, "query": "Use command line to download file which is accessible only in a given session"}
480
+ {"query_id": 58344, "query": "mounting problem during installation of archlinux on dell xps one"}
481
+ {"query_id": 122971, "query": "Logging and controlling changes to the system"}
482
+ {"query_id": 49003, "query": "How do I unbooklet a PDF-booklet?"}
483
+ {"query_id": 144109, "query": "command type \"hashed\"?"}
484
+ {"query_id": 97715, "query": "Ubuntu- How do I change clock speed from terminal?"}
485
+ {"query_id": 73989, "query": "Why do Unix man pages use double backticks in place of double quotes?"}
486
+ {"query_id": 96868, "query": "Why do I see myself twice when I run the who command?"}
487
+ {"query_id": 71566, "query": "read file record by record and do transformation to the subsequent record based on above record and write into another file"}
488
+ {"query_id": 93117, "query": "find all commands with wh, find by part of keyword in man page"}
489
+ {"query_id": 26598, "query": "How can I increase the number of inodes in an ext4 filesystem?"}
490
+ {"query_id": 56174, "query": "Permanently fixed screen titles"}
491
+ {"query_id": 155418, "query": "Is it possible to run binvox (or any X11 app) on a Linux server without display?"}
492
+ {"query_id": 114943, "query": "Can sed replace new line characters?"}
493
+ {"query_id": 85728, "query": "How to switch to editing command in text editor"}
494
+ {"query_id": 28771, "query": "How to remove last part of a path in bash?"}
495
+ {"query_id": 3958, "query": "What's difference between FISH and SFTP?"}
496
+ {"query_id": 84888, "query": "Can we run objective c on UNIX operating system?"}
497
+ {"query_id": 26350, "query": "Mail vs. mail what is the difference"}
498
+ {"query_id": 123652, "query": "Openssl upgraded via apt-get, `openssl version` showing previous version"}
499
+ {"query_id": 49477, "query": "Got less output with print0 option on find?"}
500
+ {"query_id": 85971, "query": "Rsync and take name/path changes into account"}
501
+ {"query_id": 13046, "query": "Format of /etc/hosts on Linux (different from Windows?)"}
502
+ {"query_id": 30621, "query": "Execute command for x seconds?"}
503
+ {"query_id": 49471, "query": "How do I find out if my computer has PAE using Linux?"}
504
+ {"query_id": 48381, "query": "Fixing scrolling in nano running in tmux in mate-terminal"}
505
+ {"query_id": 18743, "query": "What's the point in adding a new line to the end of a file?"}
506
+ {"query_id": 131699, "query": "Difference between useradd and adduser"}
507
+ {"query_id": 39663, "query": "How to disable laptop keyboard on plugging in a USB keyboard?"}
508
+ {"query_id": 14384, "query": "How do I know that my CPU supports 64bit operating systems under Linux?"}
509
+ {"query_id": 47048, "query": "Combining 2 different cut outputs in a single command?"}
510
+ {"query_id": 123650, "query": "What is the ` character or symbol called and what is its significance outside of SE code formatting?"}
511
+ {"query_id": 73750, "query": "difference between function foo() {} and foo() {}"}
512
+ {"query_id": 90073, "query": "Does 'rm .*' ever delete the parent directory?"}
513
+ {"query_id": 126914, "query": "How does sudo really work?"}
514
+ {"query_id": 51971, "query": "Ssh through two servers and a user in one command line"}
515
+ {"query_id": 120134, "query": "Terminal data flows"}
516
+ {"query_id": 121222, "query": "Identifying genes from a list of genes"}
517
+ {"query_id": 13260, "query": "How to run command at startup in linux?"}
518
+ {"query_id": 73527, "query": "why . and .. are listed when ls -a command executed?"}
519
+ {"query_id": 110563, "query": "How can the order of execution in the shell as it relates to redirection be upset about 1 time out of a 1000 on my system?"}
520
+ {"query_id": 39652, "query": "Colorized `cat` for source and script files?"}
521
+ {"query_id": 71585, "query": "Convert ls -l output format to chmod format"}
522
+ {"query_id": 97735, "query": "Start up commads in LUBUNTU"}
523
+ {"query_id": 111650, "query": "How to set up wireshark with correct permissions"}
524
+ {"query_id": 98820, "query": "Why does a working standalone nested function/script not work inside a larger script?"}
525
+ {"query_id": 61305, "query": "What should I check after an unauthorized access?"}
526
+ {"query_id": 87928, "query": "Combining rsync --files-from with --delete"}
527
+ {"query_id": 101847, "query": "Cannot expand asterisk without proper permission"}
528
+ {"query_id": 2888, "query": "Correct textual name for <<"}
529
+ {"query_id": 60459, "query": "How to make bash put prompt on a new line after cat command?"}
530
+ {"query_id": 85757, "query": "Store password as hash in wpa_supplicant.conf?"}
531
+ {"query_id": 1555, "query": "How can I move files by type recursively from a directory and its sub-directories to another directory?"}
532
+ {"query_id": 57046, "query": "Remote GUI login from Windows machine to Linux machine"}
533
+ {"query_id": 48124, "query": "File descriptor linked to socket or pipe in proc"}
534
+ {"query_id": 76803, "query": "How to run a script when install a rpm package?"}
535
+ {"query_id": 154591, "query": "Repeat Last N commands"}
536
+ {"query_id": 17865, "query": "How can I find out which package installed a particular executable?"}
537
+ {"query_id": 100755, "query": "Bring Debian to second Position in the GRUB Menu at startup"}
538
+ {"query_id": 76805, "query": "Read log file between two dates"}
539
+ {"query_id": 107168, "query": "What's the practical difference between `command` and $(command)?"}
540
+ {"query_id": 74867, "query": "Can I bridge \"backwards\" from an ssh connection to my local emacs-server?"}
541
+ {"query_id": 16301, "query": "Open Group Base Specifications, Single UNIX Specification and POSIX"}
542
+ {"query_id": 16785, "query": "Is 'some_program <some_file' faster than 'cat some_file | some_program'?"}
543
+ {"query_id": 12186, "query": "Are there any good tools besides SeleniumRC that can fetch webpages including content post-painted by JavaScript?"}
544
+ {"query_id": 153248, "query": "Looking at the content of a character device's file"}
545
+ {"query_id": 20804, "query": "In a regular expression, which characters need escaping?"}
546
+ {"query_id": 61313, "query": "Renaming Files according to Pattern"}
547
+ {"query_id": 129175, "query": "Redirect output of a command to two different files"}
548
+ {"query_id": 9053, "query": "Why does \"xdg-open\" fail although \"xdg-mime query defaut \" succeeds on Ubuntu 10.10?"}
549
+ {"query_id": 2658, "query": "Why use swap when there is more than enough free space in RAM?"}
550
+ {"query_id": 61308, "query": "Is setting up fstab like this dangerous?"}
551
+ {"query_id": 120114, "query": "How to use quick substitution to replace all the strings of the previous command?"}
552
+ {"query_id": 51993, "query": "A Web ssh/telnet client"}
553
+ {"query_id": 53937, "query": "How can I choose which OS grub will reboot me into\u2014before I reboot?"}
554
+ {"query_id": 52845, "query": "How do I use this .ttf file as my terminal font?"}
555
+ {"query_id": 3747, "query": "Understanding the exclamation mark (!) in bash"}
556
+ {"query_id": 43212, "query": "X11 send notification to all users on all DISPLAY's"}
557
+ {"query_id": 111118, "query": "How can I interact with my home router via a device on the local network using ssh?"}
558
+ {"query_id": 16076, "query": "Is it possible to follow a command (run repeatedly)? as one would follow a file using tail -f?"}
559
+ {"query_id": 110269, "query": "The amount of time since the system was last booted"}
560
+ {"query_id": 111355, "query": "How to redirect the output of any command?"}
561
+ {"query_id": 113774, "query": "Permission denied to change gid(group) of a file I own"}
562
+ {"query_id": 19101, "query": "Does Mint Linux have apport-bug for bug reporting?"}
563
+ {"query_id": 1340, "query": "Is there any program to provide a consistent interface across multiple archive types?"}
564
+ {"query_id": 75289, "query": "difference between non-builtin 'test' and '['"}
565
+ {"query_id": 145133, "query": "How to search and list files and folders with specific pattern?"}
566
+ {"query_id": 74195, "query": "Watch goes blank on refresh"}
567
+ {"query_id": 33413, "query": "Change directory with -d in shell script"}
568
+ {"query_id": 105908, "query": "How to display meminfo in megabytes in top?"}
569
+ {"query_id": 3515, "query": "31 Debian CDs -- Why? and which do I need for a vanilla desktop install?"}
570
+ {"query_id": 120067, "query": "Copy files without changing owner"}
571
+ {"query_id": 134483, "query": "Why my ethernet interface is called enp0s10 instead of eth0?"}
572
+ {"query_id": 103963, "query": "cycle through one command's output and use in another command"}
573
+ {"query_id": 147309, "query": "Can I move the source folder after I compiled the code inside?"}
574
+ {"query_id": 3757, "query": "Find the disk-space usage of a directory and all it's files"}
575
+ {"query_id": 75059, "query": "How to blacklist a correct bad RAM sector according to MemTest86+ error indication?"}
576
+ {"query_id": 99004, "query": "udev rules to identify a USB storage media?"}
577
+ {"query_id": 22762, "query": "How to give regular users the write privilege to an external drive?"}
578
+ {"query_id": 114613, "query": "How to determine which init system is used?"}
579
+ {"query_id": 21439, "query": "Get Position of RAID Hard Drives"}
580
+ {"query_id": 45626, "query": "Output file contents while they change"}
581
+ {"query_id": 99243, "query": "How can I grep for a string containing regex metacharacters like $ and '?"}
582
+ {"query_id": 46715, "query": "Piping from grep to awk not working"}
583
+ {"query_id": 82805, "query": "file modified while doing scp/cp"}
584
+ {"query_id": 32314, "query": "using SSH to connect to remote CentOS 5.6 server where Firefox running on server is very slow"}
585
+ {"query_id": 79882, "query": "What exactly did mv /tmp/folder/* /* do to my filesystem?"}
586
+ {"query_id": 12725, "query": "how to build lc tool in linux?"}
587
+ {"query_id": 121144, "query": "Authentication failure for FTP server"}
588
+ {"query_id": 80876, "query": "/usr/ucb/cc: language optional software package not installed"}
589
+ {"query_id": 34970, "query": "Way to determine where certain global parameter is configured"}
590
+ {"query_id": 58963, "query": "Script to convert filenames to lowercase depending on extension"}
591
+ {"query_id": 78316, "query": "How to use arguments with 'find -exec'?"}
592
+ {"query_id": 103731, "query": "Run a command without making me wait"}
593
+ {"query_id": 101797, "query": "How to report time and other information on all bash commands?"}
594
+ {"query_id": 137520, "query": "How do I log out/disconnect from SSH after starting a process with output to keep it running?"}
595
+ {"query_id": 114608, "query": "ls: show file size with thousand separator"}
596
+ {"query_id": 41493, "query": "How to ssh to a server using another server?"}
597
+ {"query_id": 66110, "query": "Contradictory information from \"top\""}
598
+ {"query_id": 134498, "query": "mysql database no space available"}
599
+ {"query_id": 92643, "query": "Is there way to replace value of symbolic link?"}
600
+ {"query_id": 111331, "query": "Evolution of the shell"}
601
+ {"query_id": 148420, "query": "Tmux log output"}
602
+ {"query_id": 41258, "query": "What is a good tool to sync two computers"}
603
+ {"query_id": 77492, "query": "Special File that causes I/O error"}
604
+ {"query_id": 92880, "query": "How to print dates between two different dates"}
605
+ {"query_id": 76162, "query": "How do I capture the return status and use tee at the same time in korn shell?"}
606
+ {"query_id": 82837, "query": "Fedora's command-not-found doesn't work"}
607
+ {"query_id": 101527, "query": "How can the number of files in a directory be determined by viewing \"ls -ld\" output?"}
608
+ {"query_id": 55223, "query": "Can't boot Scientific Linux"}
609
+ {"query_id": 5959, "query": "How can I pause/resume rsync"}
610
+ {"query_id": 120045, "query": "How to sed and put back the part of the match?"}
611
+ {"query_id": 147568, "query": "Is there a way to pass a Password to ssh automatically?"}
612
+ {"query_id": 5711, "query": "Why does '/' have an '..' entry?"}
613
+ {"query_id": 6800, "query": "pwd without symlinks"}
614
+ {"query_id": 87054, "query": "Booting into shell instead of graphical interface"}
615
+ {"query_id": 39168, "query": "bash: get last stdout"}
616
+ {"query_id": 92876, "query": "How to copy multiple files but keep their extensions the same?"}
617
+ {"query_id": 136444, "query": "AWK: Nested Conditional Subset of Rows"}
618
+ {"query_id": 144070, "query": "What is \"built-in\" command in bash"}
619
+ {"query_id": 121130, "query": "difference between \"ls \u2013alR /\" and \"ls \u2013alR / &\"?"}
620
+ {"query_id": 76151, "query": "Remove random string from particular position in file names"}
621
+ {"query_id": 23833, "query": "How can I tell what version of linux I'm using?"}
622
+ {"query_id": 30111, "query": "How to grep a text recursively on BusyBox 1.0?"}
623
+ {"query_id": 119298, "query": "How can I extract images from a pdf file?"}
624
+ {"query_id": 130906, "query": "Why doesn't setuid not work?"}
625
+ {"query_id": 78578, "query": "What is the '+' in find command for?"}
626
+ {"query_id": 3543, "query": "Expand KDE activities concept to the shell"}
627
+ {"query_id": 12949, "query": "sudo nt passing after redirection operator"}
628
+ {"query_id": 101772, "query": "Xorg.conf to only use part of screen"}
629
+ {"query_id": 90206, "query": "What does the `who` command result `root :0` mean?"}
630
+ {"query_id": 89469, "query": "What should I be aware of when installing Linux on a Mac?"}
631
+ {"query_id": 102624, "query": "What does a dot after the file permission bits mean?"}
632
+ {"query_id": 90244, "query": "bash: Run command in background and capture pid"}
633
+ {"query_id": 91576, "query": "mail doesn't work"}
634
+ {"query_id": 131168, "query": "renaming multiple files increment order"}
635
+ {"query_id": 17122, "query": "Is it possible to install the linux kernel alone?"}
636
+ {"query_id": 40143, "query": "How to know if /dev/sdX is a connected USB or HDD?"}
637
+ {"query_id": 70630, "query": "Must parse ls -Al output and get file or directory name"}
638
+ {"query_id": 80437, "query": "How can I run an hdparm command after boot and resume on Fedora 19?"}
639
+ {"query_id": 116847, "query": "lsmod outputs: Not tainted"}
640
+ {"query_id": 20536, "query": "reformatting output with aligned columns"}
641
+ {"query_id": 116849, "query": "Why load is high despite the fact that neither CPU or disk is overused"}
642
+ {"query_id": 79211, "query": "Can linux systems on multiple virtual machines share the same swap partition?"}
643
+ {"query_id": 127978, "query": "ext4 to btrfs conversion: how many times the whole volume will be read during the process?"}
644
+ {"query_id": 122289, "query": "why is install-recommends default true?"}
645
+ {"query_id": 954, "query": "How does keyboard mapping work in Linux?"}
646
+ {"query_id": 4402, "query": "What is a Superblock, Inode, Dentry and a File?"}
647
+ {"query_id": 94837, "query": "Having trouble uncompressing a few files"}
648
+ {"query_id": 66131, "query": "upgrade OpenSSL from 0.9.8w to 1.0.0i or 1.0.1a on Linux server"}
649
+ {"query_id": 67462, "query": "Linux kernel is not finding the initrd correctly"}
650
+ {"query_id": 10731, "query": "Common multiple SSH connections file handling issue"}
651
+ {"query_id": 117928, "query": "Disable login for useradd"}
652
+ {"query_id": 18224, "query": "How to add a user to sudoers file?"}
653
+ {"query_id": 92653, "query": "Proper way to delete contents of directory"}
654
+ {"query_id": 137955, "query": "Directory permissions for read/write children"}
655
+ {"query_id": 43886, "query": "Monitor file system"}
656
+ {"query_id": 39145, "query": "Execute command in remote active terminal"}
657
+ {"query_id": 102453, "query": "What does `init [2]` mean in the COMMAND column of ps?"}
658
+ {"query_id": 61931, "query": "Redirect all subsequent commands' stderr using exec"}
659
+ {"query_id": 146666, "query": "How do you patch a kernel?"}
660
+ {"query_id": 49183, "query": "MySQL not getting started on linux"}
661
+ {"query_id": 82612, "query": "Installed Win7 after Ubuntu, Win removed Ubuntu boot option"}
662
+ {"query_id": 144007, "query": "Symbolic link permission changes"}
663
+ {"query_id": 28269, "query": "How to get root inside of vi?"}
664
+ {"query_id": 79688, "query": "Directories are listed twice"}
665
+ {"query_id": 148843, "query": "Searching in man pages"}
666
+ {"query_id": 79207, "query": "When using 'yum list installed' why are some entries listed in bold?"}
667
+ {"query_id": 27178, "query": "Vim :s replace first N < g occurrences on a line"}
668
+ {"query_id": 28267, "query": "what does \"serial=${serial##*.}\" do?"}
669
+ {"query_id": 105717, "query": "upgrading an O.S. affects which file systems?"}
670
+ {"query_id": 101118, "query": "Is there an easy method for installing binary builds of glibc?"}
671
+ {"query_id": 71504, "query": "File extensions and association with programs in linux"}
672
+ {"query_id": 20751, "query": "Note-taking and outlining using Vi: On startup, highlight tags and display tags in a preview window"}
673
+ {"query_id": 42543, "query": "Can I restrict a user to use special programs?"}
674
+ {"query_id": 92689, "query": "Distro for low-RAM with most recent package versions"}
675
+ {"query_id": 101330, "query": "Pin or hold? What's the proper way to tell apt-get dist-upgrade that I want to keep a particular package over another?"}
676
+ {"query_id": 19520, "query": "Is it possible to \"fork\" STDOUT to two different locations?"}
677
+ {"query_id": 43638, "query": "How to change environment variables without re-logging to UI?"}
678
+ {"query_id": 123364, "query": "Where can I find more information about /dev/pts/*, /dev/ptmx, tty and pseudo terminals"}
679
+ {"query_id": 2010, "query": "What does the Broken pipe message mean in an SSH session?"}
680
+ {"query_id": 43636, "query": "Why does this compound command report errors when copying directories?"}
681
+ {"query_id": 26051, "query": "What are all the items on the cover of the \"Linux Administration Handbook\"?"}
682
+ {"query_id": 27382, "query": "How do I reverse a for loop?"}
683
+ {"query_id": 80466, "query": "Making Debian Bleeding Edge"}
684
+ {"query_id": 101321, "query": "Proper escape sequence for a non-standard file name"}
685
+ {"query_id": 4422, "query": "Is gnu coreutils sort broken?"}
686
+ {"query_id": 4426, "query": "Access to original contents of mount point"}
687
+ {"query_id": 101326, "query": "Set Static IP in CentOS 6.4?"}
688
+ {"query_id": 17108, "query": "Why is there a '.d' in 'init.d'?"}
689
+ {"query_id": 91343, "query": "What option(s) would you use to sort a file named foo in place, that is replacing the original file with the sorted version?"}
690
+ {"query_id": 89262, "query": "How to adapt a Linux like fedora, ubuntu etc. to make my own linux distro?"}
691
+ {"query_id": 105940, "query": "Nested POSIX groups in Linux"}
692
+ {"query_id": 18684, "query": "Access history of a file"}
693
+ {"query_id": 144271, "query": "Unix - Addressing filename with space for script"}
694
+ {"query_id": 123590, "query": "How to copy remote files to local if you don't have permission on the remote directory?"}
695
+ {"query_id": 61712, "query": "Change command name in Linux"}
696
+ {"query_id": 61947, "query": "Move files replacing?"}
697
+ {"query_id": 1168, "query": "how to glob every hidden file except current and parent directory"}
698
+ {"query_id": 56123, "query": "Remove line containing certain string and the following line"}
699
+ {"query_id": 122014, "query": "setting output of a command to a variable"}
700
+ {"query_id": 6854, "query": "Can I identify my RAM without shutting down linux?"}
701
+ {"query_id": 746, "query": "How could I remember how to use redirection?"}
702
+ {"query_id": 110282, "query": "CP: max source files number arguments for copy utility"}
703
+ {"query_id": 51911, "query": "Unable to change file permissions"}
704
+ {"query_id": 80692, "query": "Refer to an item in `dirs`"}
705
+ {"query_id": 140902, "query": "Archives used for software packaging and distribution"}
706
+ {"query_id": 101392, "query": "Why does halt not turn the machine off?"}
707
+ {"query_id": 136258, "query": "What are the advantages / disadvantages Linux file hierarchy has in compare to other OSs?"}
708
+ {"query_id": 74117, "query": "Why is resolv.conf spelled without the 'e'?"}
709
+ {"query_id": 117975, "query": "disable mail notification on login"}
710
+ {"query_id": 75686, "query": "Online course that covers Unix/Linux Systems programming"}
711
+ {"query_id": 146062, "query": "Missing repository problem (404 Not Found)"}
712
+ {"query_id": 126694, "query": "Enabling wired internet connection with dhcp during Arch Linux Installation?"}
713
+ {"query_id": 50150, "query": "Can I map a key (caps lock) so it does one thing pressed alone, and another when pressed with a second key?"}
714
+ {"query_id": 152733, "query": "bashrc in custom folder"}
715
+ {"query_id": 34584, "query": "How to make unused dependencies clean with yum?"}
716
+ {"query_id": 14971, "query": "Searching for string in files"}
717
+ {"query_id": 55848, "query": "Xmodmap on bashrc not working"}
718
+ {"query_id": 90838, "query": "(standard_in) 1: parse error"}
719
+ {"query_id": 102492, "query": "raid5 exchange 1 of 3 harddrives"}
720
+ {"query_id": 46796, "query": "How to pass a variable to an sh child process?"}
721
+ {"query_id": 11472, "query": "Automount USB drives with no GUI requirement (halevt replacement)"}
722
+ {"query_id": 97223, "query": "Fix broken apt: insserv: Service killprocs has to be enabled to start service single"}
723
+ {"query_id": 96131, "query": "What does * next to the file name mean in the output of ls?"}
724
+ {"query_id": 85009, "query": "Shell, Concatenating 2 strings to reference a 3rd variable"}
725
+ {"query_id": 2038, "query": "Commandline gstreamer player"}
726
+ {"query_id": 116640, "query": "What is maximum RAM supportable by Linux?"}
727
+ {"query_id": 87667, "query": "cp : short way of copying"}
728
+ {"query_id": 111197, "query": "Routing Application through different network interfaces"}
729
+ {"query_id": 767, "query": "What is the real difference between \"apt-get\" and \"aptitude\"? (How about \"wajig\"?)"}
730
+ {"query_id": 52349, "query": "Bash while loop and reading from pipe"}
731
+ {"query_id": 101158, "query": "SSH tunneling via few hosts"}
732
+ {"query_id": 104429, "query": "How do I edit a file as root?"}
733
+ {"query_id": 4219, "query": "How do I get bash completion for command aliases?"}
734
+ {"query_id": 52108, "query": "How to create SHA512 password hashes on command line"}
735
+ {"query_id": 24758, "query": "what is the difference between \"/sbin/nologin\" and \"/bin/false\"?"}
736
+ {"query_id": 20396, "query": "Make cd automatically ls"}
737
+ {"query_id": 32140, "query": "Autentification on SSH connection in OneLine"}
738
+ {"query_id": 98103, "query": "Hard link for directories"}
739
+ {"query_id": 74135, "query": "LINUX: Permissions for files: Identify if it is a file or directory, and its access allowed to the world, user, and group"}
740
+ {"query_id": 2051, "query": "bash: recall command by typing some characters of it"}
741
+ {"query_id": 26934, "query": "Using sftp to Transfer a Directory?"}
742
+ {"query_id": 35416, "query": "Four tasks in parallel... how do I do that?"}
743
+ {"query_id": 77410, "query": "CentOS conservative governor, nice error"}
744
+ {"query_id": 78501, "query": "Ssh to a box, run a command, output data to a file, then move on to the next IP adress"}
745
+ {"query_id": 138224, "query": "Remote access - grey background in Debian 7"}
746
+ {"query_id": 150331, "query": "How to customize Linux without sudo/root access?"}
747
+ {"query_id": 79837, "query": "How to delete directory ' :q!'?"}
748
+ {"query_id": 10355, "query": "git and remote security with Encfs"}
749
+ {"query_id": 10597, "query": "Reattach to lost X11 session"}
750
+ {"query_id": 6409, "query": "How does Linux kernel compare to microkernel architectures?"}
751
+ {"query_id": 103549, "query": "Yanked USB Key During Move"}
752
+ {"query_id": 113589, "query": "How to have longer key bindings for stty"}
753
+ {"query_id": 90853, "query": "How can I run ssh-add automatically, without password prompt?"}
754
+ {"query_id": 49809, "query": "Console Text Editor with Windows-like keyboard shortcuts (ctrl-z, x, c, v)"}
755
+ {"query_id": 68945, "query": "Working of the [0-9]"}
756
+ {"query_id": 2062, "query": "grep - why do brackets in grep pattern remove the grep process from ps results?"}
757
+ {"query_id": 73293, "query": "In bash, how can I erase an alias without logout?"}
758
+ {"query_id": 34315, "query": "What is the best book every Unix or Linux user should read?"}
759
+ {"query_id": 2059, "query": "Linux for low-end hardware and internet browsing"}
760
+ {"query_id": 50186, "query": "Home folder name with Unicode characters?"}
761
+ {"query_id": 55875, "query": "Why is some filesystem space used even though the filesystem is empty?"}
762
+ {"query_id": 152763, "query": "Memory Usage in Linux"}
763
+ {"query_id": 84179, "query": "Why is the first line comment of .sh file necessary?"}
764
+ {"query_id": 38910, "query": "Cygwin has no watch command?"}
765
+ {"query_id": 107917, "query": "How to modify the shell prompt?"}
766
+ {"query_id": 84175, "query": "Create a symbolic link relative to the current directory"}
767
+ {"query_id": 9926, "query": "Can I redirect stdout from a background application after starting it?"}
768
+ {"query_id": 85021, "query": "In Bash scripting, what's the meaning of \" $! \"?"}
769
+ {"query_id": 64595, "query": "Why do inode-based file systems NOT need reboot after updating library versions?"}
770
+ {"query_id": 138877, "query": "Extracting text using sed does not work as expected"}
771
+ {"query_id": 63266, "query": "mv * folder (avoiding 'cannot move' error)"}
772
+ {"query_id": 90883, "query": "Is it possible to run pure GNU?"}
773
+ {"query_id": 116210, "query": "What is the appropriate kernel for the i7-4770K CPU?"}
774
+ {"query_id": 53460, "query": "Change PS1 without hitting enter"}
775
+ {"query_id": 56975, "query": "What's the command to \"prepend\" a line to a file?"}
776
+ {"query_id": 114274, "query": "An init-script does not get called on shutdown"}
777
+ {"query_id": 797, "query": "Where is implemented the definitions of the kernel header files?"}
778
+ {"query_id": 7998, "query": "Which bash will expand {1..$VAR} in the same way that zsh does"}
779
+ {"query_id": 107967, "query": "Is there a way to keep an app running after closing the terminal that calls it?"}
780
+ {"query_id": 12755, "query": "How to forward X over SSH from Ubuntu machine?"}
781
+ {"query_id": 10575, "query": "Can't add user to sudoers file"}
782
+ {"query_id": 29182, "query": "Meaning of \"* */1 * * *\" cron entry?"}
783
+ {"query_id": 41070, "query": "Aptitude on Debian 6.0.4 \"media change\" to CD ROM"}
784
+ {"query_id": 6681, "query": "Re hardlink and old rsnapshot backups"}
785
+ {"query_id": 84191, "query": "How to create nested directory in a single command?"}
786
+ {"query_id": 136228, "query": "-exec isn't being passed all the files found by find"}
787
+ {"query_id": 24989, "query": "How to use regrex with AWK for string replacement in this example?"}
788
+ {"query_id": 45665, "query": "Default Guake tab names"}
789
+ {"query_id": 26928, "query": "Should I install 32 or 64 bit?"}
790
+ {"query_id": 7772, "query": "Is there a tool that hooks to two directories and synchronizes them as soon as something changes?"}
791
+ {"query_id": 6686, "query": "Clean up / after accidentally extracting archive into it?"}
792
+ {"query_id": 68721, "query": "Where should user configuration files go?"}
793
+ {"query_id": 98353, "query": "Executable not visible when run with sudo"}
794
+ {"query_id": 92809, "query": "What are the numbers after program names in Linux/GNU documentation?"}
795
+ {"query_id": 33203, "query": "How does load average work with modern CPU's?"}
796
+ {"query_id": 139501, "query": "How to determine who started a process?"}
797
+ {"query_id": 43481, "query": "File not found for file which is there"}
798
+ {"query_id": 88313, "query": "how to duplicate values of each row under each for n times?"}
799
+ {"query_id": 12522, "query": "Installing two glibc alongside in debian/ubuntu"}
800
+ {"query_id": 88550, "query": "vlookup function in unix"}
801
+ {"query_id": 4271, "query": "bash get file name and extension"}
802
+ {"query_id": 63284, "query": "why cannot rename subdir when parent dir owner is not the same user"}
803
+ {"query_id": 20112, "query": "sudo without password - security?"}
804
+ {"query_id": 102024, "query": "How to install linux (BackBox) and windows on the same computer?"}
805
+ {"query_id": 66796, "query": "Select greatest numbered filename"}
806
+ {"query_id": 46749, "query": "Find and remove many files by specific content"}
807
+ {"query_id": 21449, "query": "How can I prevent Apt-Get from autoremoving packages?"}
808
+ {"query_id": 124293, "query": "Why does fstrim trim all of the free space on my mdraid mirror after a reboot?"}
809
+ {"query_id": 11889, "query": "Pasting X selection (not clipboard contents) with keyboard"}
810
+ {"query_id": 11406, "query": "How to search for file contents"}
811
+ {"query_id": 118853, "query": "What means the s in ls file permissions?"}
812
+ {"query_id": 32584, "query": "Insert a multiline string into another string"}
813
+ {"query_id": 114013, "query": "Edit file on image created with dd"}
814
+ {"query_id": 87258, "query": "Delete all files except certain subfolder"}
815
+ {"query_id": 102016, "query": "How do I columnate a list of items with minimal width?"}
816
+ {"query_id": 12976, "query": "How to move 100 files from a folder containing thousands?"}
817
+ {"query_id": 43465, "query": "What's the default order of linux sort?"}
818
+ {"query_id": 9971, "query": "How do I find how long ago a Linux system was installed?"}
819
+ {"query_id": 46974, "query": "What is the difference between > and >> (especially as it relates to use with the cat program)?"}
820
+ {"query_id": 42379, "query": "Find recursively all archive files of diverse archive formats and search them for file name patterns"}
821
+ {"query_id": 114235, "query": "Weird behaviour on debian machine"}
822
+ {"query_id": 147386, "query": "chown as non-root user"}
823
+ {"query_id": 53250, "query": "Package managers for local installations under home directory"}
824
+ {"query_id": 53252, "query": "How to read the messages during power off"}
825
+ {"query_id": 87005, "query": "How to download files from a remote Linux (Ubuntu) Server?"}
826
+ {"query_id": 53017, "query": "How do you enter a directory that's name is only a minus?"}
827
+ {"query_id": 91976, "query": "What is the cheapest way to run AIX 6-7 at home?"}
828
+ {"query_id": 138674, "query": "Dynamic congifuration of monitors (Debian, Intel i915)"}
829
+ {"query_id": 12986, "query": "How to copy the partition layout of a whole disk using standard tools"}
830
+ {"query_id": 34516, "query": "Can I create a man page for a script?"}
831
+ {"query_id": 71902, "query": "Is there any website having command line environment of Linux, for practicing commands?"}
832
+ {"query_id": 11182, "query": "Mapping key combination with xmodmap"}
833
+ {"query_id": 97876, "query": "How to unpack a downloaded tar.bz2 archive?"}
834
+ {"query_id": 131527, "query": "routing based on source IP"}
835
+ {"query_id": 26676, "query": "How to check if a shell is login/interactive/batch"}
836
+ {"query_id": 127268, "query": "Delete all files in a directory whose name do not match a line in a file list"}
837
+ {"query_id": 132856, "query": "Writing a shell script in Ubuntu to process several layers as a single animated GIF file"}
838
+ {"query_id": 153318, "query": "Storing whitespace in a shell script variable"}
839
+ {"query_id": 126176, "query": "VPN client for linux machine + support checkpoint gateway"}
840
+ {"query_id": 110822, "query": "Using bash \"&\" operator with \";\" delineator?"}
841
+ {"query_id": 28615, "query": "How to hide commands typed in a Linux shell?"}
842
+ {"query_id": 23163, "query": "Newlines in filenames"}
843
+ {"query_id": 117467, "query": "How to permanently set environmental variables"}
844
+ {"query_id": 39755, "query": "Find out exact CPU model, Mainboard, RAM / server model?"}
845
+ {"query_id": 121716, "query": "unable to open X server"}
846
+ {"query_id": 50313, "query": "How do I perform an action on all files with a specific extension in subfolders in an elegant way?"}
847
+ {"query_id": 8647, "query": "gnu find and masking the {} for some shells - which?"}
848
+ {"query_id": 152691, "query": "How to disable beep sound in Linux CentOS 7 command line?"}
849
+ {"query_id": 9997, "query": "Resources for portable shell programming"}
850
+ {"query_id": 12283, "query": "unix, difference between path starting with '/' and '//'"}
851
+ {"query_id": 133950, "query": "convert many eps files in single page pdf or ps file using shell script"}
852
+ {"query_id": 92172, "query": "Can Any one Suggest good Linux OS Tutorial?"}
853
+ {"query_id": 126165, "query": "How to access my webserver from the host machine?"}
854
+ {"query_id": 20900, "query": "Recommended reverse firewall applications for linux?"}
855
+ {"query_id": 366, "query": "Convince grep to output all lines, not just those with matches"}
856
+ {"query_id": 144601, "query": "Bash script question - skip enter key press"}
857
+ {"query_id": 12046, "query": "Is there any book , Tutorial on very very advanced shell scripting"}
858
+ {"query_id": 19915, "query": "Is there any method to mount a block of memory as a filesystem in linux?"}
859
+ {"query_id": 49785, "query": "Distribution for eldery people"}
860
+ {"query_id": 47360, "query": "Associating a function in Emacs after looking up the code with M-x describe-key"}
861
+ {"query_id": 120615, "query": "How to comment multiple lines at once?"}
862
+ {"query_id": 49779, "query": "Can I change the font of terminal?"}
863
+ {"query_id": 8430, "query": "How to remove all empty directories in a subtree?"}
864
+ {"query_id": 104125, "query": "How do I delete files with spaces in them in bash script?"}
865
+ {"query_id": 106544, "query": "Use xargs input in eval command"}
866
+ {"query_id": 126154, "query": "Unrar local files to remote server"}
867
+ {"query_id": 25327, "query": "watch command alias expansion"}
868
+ {"query_id": 103270, "query": "How do I get the current bandwidth speed of an interface from the terminal?"}
869
+ {"query_id": 126393, "query": "I get low disk space warning after my last upgrade"}
870
+ {"query_id": 17949, "query": "What is the difference between `grep`, `egrep`, and `fgrep`?"}
871
+ {"query_id": 83257, "query": "Does kernel: EDAC MC0: UE page 0x0 point to bad memory, a driver, or something else?"}
872
+ {"query_id": 85678, "query": "insert text in a file using echo command"}
873
+ {"query_id": 83017, "query": "How does one view what the contents of symbolic link are, instead of the destination?"}
874
+ {"query_id": 37313, "query": "How do I grep for multiple patterns?"}
875
+ {"query_id": 30925, "query": "In Bash, when to alias, when to script, and when to write a function?"}
876
+ {"query_id": 83491, "query": "Wrapper for package managers"}
877
+ {"query_id": 105220, "query": "Why is learning command line imporatant?"}
878
+ {"query_id": 14680, "query": "How to use find command with wildcard when current directory contains a match?"}
879
+ {"query_id": 11172, "query": "How can I kill a <defunct> process whose parent is init?"}
880
+ {"query_id": 47344, "query": "The \"yes\" command"}
881
+ {"query_id": 125058, "query": "How can I use iptables to block certain processes from accessing the network?"}
882
+ {"query_id": 153569, "query": "SSH - Is it possible for an SSH session to take complete control of the client?"}
883
+ {"query_id": 1800, "query": "How to specify a custom autocomplete for specific commands?"}
884
+ {"query_id": 66918, "query": "Run a program at startup after starting display services"}
885
+ {"query_id": 140267, "query": "Why do I have to execute bash programs with ./?"}
886
+ {"query_id": 50101, "query": "Where to locate \"sockets\""}
887
+ {"query_id": 50343, "query": "I specifically want to delete my grep output string from the text file"}
888
+ {"query_id": 86996, "query": "Is there something as flexible as crontab for user-level autostarts?"}
889
+ {"query_id": 38634, "query": "Is there any way to exit \"less\" without clearing the screen?"}
890
+ {"query_id": 52764, "query": "/ is out of blocks, can't find out why"}
891
+ {"query_id": 150063, "query": "Why are these values not appending correctly when appended to the pipeline?"}
892
+ {"query_id": 73228, "query": "Input/output file.txt in bash shell"}
893
+ {"query_id": 108782, "query": "Pass the output of previous command to next as an argument"}
894
+ {"query_id": 47577, "query": "rsync: how to include files with name ending in a specific string"}
895
+ {"query_id": 36682, "query": "Printing files as PDF with syntax highlighting via terminal"}
896
+ {"query_id": 96348, "query": "Reason for the inability of root to send a fatal signal to PID 1/init"}
897
+ {"query_id": 98527, "query": "sox returns an error when I try to handle mp3 files"}
898
+ {"query_id": 105278, "query": "Resetting password of another Linux"}
899
+ {"query_id": 44068, "query": "Use a shell variable to execute a comand"}
900
+ {"query_id": 96343, "query": "How to take effect `usermod` command without logout and login"}
901
+ {"query_id": 105030, "query": "Bash Syntax Colouring"}
902
+ {"query_id": 129240, "query": "tail display whole file and then only changes"}
903
+ {"query_id": 25541, "query": "Updating tar.gz daily only with changed files"}
904
+ {"query_id": 151566, "query": "How can I pass a filename containing percent signs (%) as a parameter to a shell script in cron?"}
905
+ {"query_id": 10055, "query": "Why does `last` show '{' and '|' in the TTY field?"}
906
+ {"query_id": 152412, "query": "`seq` and bash brace expansion failing"}
907
+ {"query_id": 87633, "query": "Physical host or VM"}
908
+ {"query_id": 78925, "query": "How to sort by multiple columns?"}
909
+ {"query_id": 47330, "query": "What exactly are Linux kernel headers?"}
910
+ {"query_id": 118593, "query": "Wrapper command that runs program in temporary directory and deletes it after execution"}
911
+ {"query_id": 12236, "query": "Best resources to learn bash scripting?"}
912
+ {"query_id": 83273, "query": "How To Diagnose Faulty (onboard) Network Adapter"}
913
+ {"query_id": 59171, "query": "Why is cd not a file in /bin?"}
914
+ {"query_id": 55808, "query": "Make program first read from pipe, then from keyboard"}
915
+ {"query_id": 64762, "query": "how to convert a shell script into binary executable?"}
916
+ {"query_id": 96579, "query": "What is the difference between ' and \"?"}
917
+ {"query_id": 106377, "query": "How to route traffic to different interfaces for different ports"}
918
+ {"query_id": 48653, "query": "Does quiesce exist for Linux?"}
919
+ {"query_id": 73475, "query": "List all my variables"}
920
+ {"query_id": 74322, "query": "Tailing a New File with an Old Name"}
921
+ {"query_id": 98993, "query": "What is the language that appears on the first line of a script?"}
922
+ {"query_id": 35580, "query": "What is the difference between $var and \"$var\"?"}
923
+ {"query_id": 62109, "query": "How can I see a process' thread count?"}
924
+ {"query_id": 38619, "query": "Numerically sorting files"}
925
+ {"query_id": 88718, "query": "Setting up a shared folder with group: ACL and file creation"}
926
+ {"query_id": 152426, "query": "How to combine arithmetic expansion and brace expansion?"}
927
+ {"query_id": 86535, "query": "File permissions of file when tranferring from Windows to Unix"}
928
+ {"query_id": 138376, "query": "Why All the text is invisible in Intellij?"}
929
+ {"query_id": 53875, "query": "Is there any impact of reaping zombie processes?"}
930
+ {"query_id": 138374, "query": "Extract Values from simple html file via grep/awk"}
931
+ {"query_id": 44288, "query": "Run gui application on startup"}
932
+ {"query_id": 62355, "query": "Is there a tool/website to compare package status in different Linux distributions?"}
933
+ {"query_id": 173, "query": "How to compile and install programs from source"}
934
+ {"query_id": 1832, "query": "Why do some commands have man pages and other commands use --help?"}
935
+ {"query_id": 35338, "query": "su vs sudo -s vs sudo bash"}
936
+ {"query_id": 119662, "query": "Can we make grep faster by indexing words in files?"}
937
+ {"query_id": 34004, "query": "How does tcp-keepalive work in ssh?"}
938
+ {"query_id": 143964, "query": "How to slice a text file into several files of 100 lines each?"}
939
+ {"query_id": 77852, "query": "How to recover from a chmod -R 000 /bin?"}
940
+ {"query_id": 22494, "query": "Copy file to xclip and paste to Firefox"}
941
+ {"query_id": 44040, "query": "A standard tool to convert a byte-count into human KiB MiB etc; like du, ls1"}
942
+ {"query_id": 70, "query": "What Unix commands can be used as a semaphore/lock?"}
943
+ {"query_id": 54975, "query": "How to check that a daemon is listening on what interface?"}
944
+ {"query_id": 122824, "query": "My Kali desktop is messed up after trying to change Login-Background.png in /usr/share/images"}
945
+ {"query_id": 16815, "query": "What does DISPLAY=:0.0 actually mean?"}
946
+ {"query_id": 73, "query": "How can I set the processor affinity of a process on Linux?"}
947
+ {"query_id": 141307, "query": "What does typing a single apostrophe do in terminal?"}
948
+ {"query_id": 52559, "query": "How to compile a c program without leaving the editor?"}
949
+ {"query_id": 105026, "query": "boot partition is almost full in CentOS"}
950
+ {"query_id": 97446, "query": "Why this sort command gives me an empty file?"}
951
+ {"query_id": 109862, "query": "#!/bin/bash: No such file or directory"}
952
+ {"query_id": 118558, "query": "Is the busybox cpio THAT different from GNU cpio?"}
953
+ {"query_id": 138150, "query": "How to combine Bash's read with HERE-document when shopt -os errexit is in place?"}
954
+ {"query_id": 34238, "query": "Complete files from a different directory in bash"}
955
+ {"query_id": 24441, "query": "Get file created/creation time?"}
956
+ {"query_id": 116389, "query": "Recursively delete all files with a given extension"}
957
+ {"query_id": 128118, "query": "Filter partial output of some script"}
958
+ {"query_id": 151113, "query": "How to change primary group?"}
959
+ {"query_id": 138398, "query": "How to get lines 10 to 100 from a 200 line file into a new file"}
960
+ {"query_id": 141558, "query": "Using regex in locate"}
961
+ {"query_id": 44031, "query": "How to save command line history without logout?"}
962
+ {"query_id": 45120, "query": "Given a git patch id, how to find out which kernel release contains it?"}
963
+ {"query_id": 84376, "query": "How to remove the last character from every line in a text file"}
964
+ {"query_id": 13316, "query": "Good OpenWRT alternative?"}
965
+ {"query_id": 13314, "query": "File system for an SSD drive"}
966
+ {"query_id": 14887, "query": "The way to use `/usr/bin/env sed -f ` in shebang?"}
967
+ {"query_id": 20972, "query": "Which is the best KDE-based distribution?"}
968
+ {"query_id": 17323, "query": "Installing a .deb package in home directory"}
969
+ {"query_id": 9107, "query": "How can I run Firefox on Linux headlessly (i.e. without requiring libgtk-x11-2.0.so.0)?"}
970
+ {"query_id": 70796, "query": "Sort with unequal whitespace in first column"}
971
+ {"query_id": 96700, "query": "Equivalent of iwlist to see who is around?"}
972
+ {"query_id": 43617, "query": "Tools to visualize file size distributions"}
973
+ {"query_id": 56495, "query": "What's the difference between running a program as a daemon and forking it into background with '&'?"}
974
+ {"query_id": 26035, "query": "What are suitable distros for the Asus EEE PC 701 4G?"}
975
+ {"query_id": 94517, "query": "Removing in interactive mode"}
976
+ {"query_id": 30303, "query": "How to create a DEB file manually?"}
977
+ {"query_id": 31876, "query": "What do these commands mean?"}
978
+ {"query_id": 80362, "query": "What does <<< mean?"}
979
+ {"query_id": 122889, "query": "Debian and Systemd: breaking ordering cycle error"}
980
+ {"query_id": 96938, "query": "Bash script - determine vendor and install system (apt-get, yum etc)"}
981
+ {"query_id": 73836, "query": "Failed to sign CSR with the CA root key"}
982
+ {"query_id": 132225, "query": "bash completion on posix mode"}
983
+ {"query_id": 84955, "query": "Given a CSV file, how do I delete the content between the 2nd and 3rd tabs of each row?"}
984
+ {"query_id": 29791, "query": ".bash_profile not sourced when running su"}
985
+ {"query_id": 3809, "query": "How can I make a program executable from everywhere"}
986
+ {"query_id": 117050, "query": "Program for making a complete ISO-image of damaged DVD by multiple readings?"}
987
+ {"query_id": 66062, "query": "Reasons for choosing primary over logical partitions"}
988
+ {"query_id": 9125, "query": "How do I find text within a file and have it search multiple subfolders?"}
989
+ {"query_id": 15360, "query": "How to add a ssh user who only has permissions to access specific folder?"}
990
+ {"query_id": 110401, "query": "Need a command sequence that will move files from one directory to another based on a particular year?"}
991
+ {"query_id": 68255, "query": "Why do . and .. have a file size of 4 kB and 12 kB, respectively?"}
992
+ {"query_id": 9123, "query": "Is there a one-liner that allows me to create a directory and move into it at the same time?"}
993
+ {"query_id": 15366, "query": "newgrp and groups assigned via pam_group.so"}
994
+ {"query_id": 52908, "query": "How do I \"merge\" two text files?"}
995
+ {"query_id": 96965, "query": "How to check where users come from?"}
996
+ {"query_id": 9361, "query": "What does \"-\" mean as an argument to a command?"}
997
+ {"query_id": 94780, "query": "Alternative shells (Javascript, Ruby, etc)?"}
998
+ {"query_id": 119463, "query": "Updating last modified time of a file"}
999
+ {"query_id": 81238, "query": "How should I compile a dev package from source?"}
1000
+ {"query_id": 93209, "query": "Should I use LVM or not?"}
1001
+ {"query_id": 123959, "query": "How to limit a user's RAM on Ubuntu?"}
1002
+ {"query_id": 18877, "query": "What is the proper sudoers syntax to add a user?"}
1003
+ {"query_id": 1636, "query": "How do I bind the tmux prefix to a Super?"}
1004
+ {"query_id": 20720, "query": "Managing disk space on servers"}
1005
+ {"query_id": 93686, "query": "Can I prove that an SSD is broken?"}
1006
+ {"query_id": 94775, "query": "List all commands that a shell knows"}
1007
+ {"query_id": 96957, "query": "Delete all jpg in a folder that are smaller than specific width/heigth"}
1008
+ {"query_id": 96712, "query": "Variable Substitution in sed"}
1009
+ {"query_id": 55195, "query": "kill -9 hangs, unable to kill process (murder proof process)"}
1010
+ {"query_id": 42735, "query": "Run a script automatically as I switch to a directory"}
1011
+ {"query_id": 120432, "query": "How can I have a SSH banner appear BEFORE the \"login as:\" prompt?"}
1012
+ {"query_id": 61627, "query": "How to find the device is connected to which usb hub in linux OS?"}
1013
+ {"query_id": 82314, "query": "how to find the type of img file and mount it"}
1014
+ {"query_id": 27594, "query": "Why do we need to use visudo instead of directly modifying the sudoers file?"}
1015
+ {"query_id": 60544, "query": "Allowing ssh, but only to execute a specific script"}
1016
+ {"query_id": 119698, "query": "When was file created"}
1017
+ {"query_id": 121761, "query": "Having ssh tunneling itself for remote access from a third machine"}
1018
+ {"query_id": 81224, "query": "How to go to the previous working directory in terminal?"}
1019
+ {"query_id": 17316, "query": "Check for process already running in webfaction?"}
1020
+ {"query_id": 50508, "query": "Reusing ssh session for repeated rsync commands"}
1021
+ {"query_id": 8056, "query": "Disable screen blanking on text console"}
1022
+ {"query_id": 14010, "query": "The merits of a partitionless filesystem"}
1023
+ {"query_id": 107290, "query": "Extract date from a variable in a different format"}
1024
+ {"query_id": 56054, "query": "Time Machine Server on Fedora"}
1025
+ {"query_id": 61401, "query": "\"~/\" receives a permission denied error in Csh"}
1026
+ {"query_id": 132657, "query": "how to avoid NSCD for DNS"}
1027
+ {"query_id": 26237, "query": "ISO file readonly?"}
1028
+ {"query_id": 61646, "query": "Why are .so files executable?"}
1029
+ {"query_id": 3838, "query": "zsh autcomplete not updating path executables"}
1030
+ {"query_id": 84760, "query": "Should /usr and /home be on different partitions?"}
1031
+ {"query_id": 66097, "query": "Find all files with a Python Shebang"}
1032
+ {"query_id": 2505, "query": "Which run dialog"}
1033
+ {"query_id": 90198, "query": "What happens to argument in alias after using it once?"}
1034
+ {"query_id": 153587, "query": "environement variable assignment followed by command"}
1035
+ {"query_id": 37366, "query": "Alt-Left on OSX to behave like Alt-Left on Ubuntu"}
1036
+ {"query_id": 132669, "query": "What is bitwise.c~?"}
1037
+ {"query_id": 56065, "query": "Where to place a Bash shell redirection for a command?"}
1038
+ {"query_id": 129072, "query": "What's the difference between $@ and $*"}
1039
+ {"query_id": 26006, "query": "Is there a root password on OS X and Ubuntu?"}
1040
+ {"query_id": 59570, "query": "Implementing patch for changing a CPU frequency governor"}
1041
+ {"query_id": 1426, "query": "How do you choose a distribution?"}
1042
+ {"query_id": 3842, "query": "How can I scroll within the output of my watch command?"}
1043
+ {"query_id": 96728, "query": "Extract a single file from a tar file and put it to another directory"}
1044
+ {"query_id": 2759, "query": "Why does sed act differently depending on the output file?"}
1045
+ {"query_id": 17779, "query": "How can I build a custom distribution for running a simple web browser?"}
1046
+ {"query_id": 96526, "query": "BIOS don't recognize my bootable USB"}
1047
+ {"query_id": 16890, "query": "How to make a machine accessible from the LAN using its hostname"}
1048
+ {"query_id": 94345, "query": "Can i use & variable of sed for doing operation inside $()?"}
1049
+ {"query_id": 71221, "query": "How to use find to remove *.py~ and *.pyc files at once?"}
1050
+ {"query_id": 93012, "query": "-bash: syntax error near unexpected token `;'"}
1051
+ {"query_id": 113715, "query": "How can I concatenate all files in a directory together in one command line operation?"}
1052
+ {"query_id": 84544, "query": "Mapping single key (such as 'F1') to multiple keys (such as 'Ctrl+C') in Gnome"}
1053
+ {"query_id": 58017, "query": "Upstart script produces folder with question mark at the end. Why?"}
1054
+ {"query_id": 13147, "query": "Rename all the files within a folder with prefix \u201cUnix_\u201d"}
1055
+ {"query_id": 84540, "query": "twitter status updates from command line (via cURL)"}
1056
+ {"query_id": 15324, "query": "None of the dot-files is sourced when running bash via ssh, part II"}
1057
+ {"query_id": 100874, "query": "need to display hard error , transport error & soft errors above 2"}
1058
+ {"query_id": 102812, "query": "Can't execute a file with execute permission bit set"}
1059
+ {"query_id": 18841, "query": "Measuring RAM usage of a program"}
1060
+ {"query_id": 49567, "query": "How do you access internet in RHEL 5 using Android smartphone USB LAN?"}
1061
+ {"query_id": 91060, "query": "Why is `find -name *.jks` not returning some files?"}
1062
+ {"query_id": 92150, "query": "Multiple media convertions fail"}
1063
+ {"query_id": 25138, "query": "How to print certain columns by name?"}
1064
+ {"query_id": 25372, "query": "Turn off buffering in pipe"}
1065
+ {"query_id": 80177, "query": "How to install Cinnamon with SLiM on Arch Linux?"}
1066
+ {"query_id": 40749, "query": "Remove duplicate $PATH entries with awk command"}
1067
+ {"query_id": 81023, "query": "Which tool can tell me the distribution of Linux that is running when uname is generic?"}
1068
+ {"query_id": 85865, "query": "Trim with LVM and dm-crypt"}
1069
+ {"query_id": 30956, "query": "How to access the data stored in guest operating system(i.e Virtual machine) from Host system"}
1070
+ {"query_id": 13157, "query": "Renaming multiple files based on their contents"}
1071
+ {"query_id": 1449, "query": "Lightweight outgoing SMTP server"}
1072
+ {"query_id": 53814, "query": "Configure up-arrow to browse through commands with same initial characters rather than all previous commands"}
cqadupstack-webmasters.jsonl ADDED
@@ -0,0 +1,506 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 22877, "query": "SEO: Where do I start?"}
2
+ {"query_id": 21423, "query": "How to make my page load faster?"}
3
+ {"query_id": 47931, "query": "Subdomain or domain?"}
4
+ {"query_id": 47811, "query": "Googlebot craw rate is too slow for a huge site"}
5
+ {"query_id": 44782, "query": "Can we use a copyrighted material if there is no copyright information and there is no way to contact the author"}
6
+ {"query_id": 18011, "query": "HTTP and HTTPS impacts on SEO"}
7
+ {"query_id": 68635, "query": "negative seo myth or reality"}
8
+ {"query_id": 41035, "query": "Should I send my content to other websites by RSS Feed?"}
9
+ {"query_id": 44420, "query": "How to do SEO for a one page web application?"}
10
+ {"query_id": 2793, "query": "Live view of online visitors"}
11
+ {"query_id": 17281, "query": "Can I find out who is +1ing my website?"}
12
+ {"query_id": 17162, "query": "Step by step website developent"}
13
+ {"query_id": 21427, "query": "Are there any programs that i can use to test my website against hacks?"}
14
+ {"query_id": 52172, "query": "What are best SEO practices when deleting a webpage? What return code should I use?"}
15
+ {"query_id": 27087, "query": "Best practice for SEO \"special characters\" in products pages"}
16
+ {"query_id": 31354, "query": "SEO and Spelling mistakes in keyword"}
17
+ {"query_id": 34986, "query": "How to register a .er domain?"}
18
+ {"query_id": 56655, "query": "Lazy-loading content and SEO impact"}
19
+ {"query_id": 33415, "query": "Is it possible to stop Chrome and other browsers from pre-fetching/rendering my site?"}
20
+ {"query_id": 56418, "query": "Does it help if my tld contains words that describe the function of my business?"}
21
+ {"query_id": 13920, "query": "Does a site's bounce rate influence Google rankings?"}
22
+ {"query_id": 3770, "query": "SEO Geolocation"}
23
+ {"query_id": 11637, "query": "Strange incoming links appearing on site statistics"}
24
+ {"query_id": 51099, "query": "With Robots.txt disallow all, why was my site still getting traffic?"}
25
+ {"query_id": 53156, "query": "Google AdSense in my website"}
26
+ {"query_id": 55334, "query": "How long for data highlighter mark up to appear in structured data tool?"}
27
+ {"query_id": 12960, "query": "SEO: How to Separate Fact from Fiction?"}
28
+ {"query_id": 803, "query": "When does a website require a privacy policy and/or terms of use?"}
29
+ {"query_id": 63070, "query": "Does having a dynamic URL for all pages in my blog put me at disadvantage SEO wise?"}
30
+ {"query_id": 29030, "query": "Does adding a description to menu links have any SEO value?"}
31
+ {"query_id": 30379, "query": "Google search results"}
32
+ {"query_id": 65130, "query": "Using microdata for SEO will help to increase SERP Position?"}
33
+ {"query_id": 22618, "query": "To change URL to user friendly URL"}
34
+ {"query_id": 16299, "query": "Is there a maximum size that web pages should be kept under?"}
35
+ {"query_id": 57880, "query": "Page gone: 404, or other options?"}
36
+ {"query_id": 21768, "query": "Connecting +1s on a Google+ Business Page and a webpage"}
37
+ {"query_id": 16170, "query": "Effect of adding link from PR1 site to PR0 site?"}
38
+ {"query_id": 10756, "query": "Will HTML5 adoption render my site search engine unoptimized?"}
39
+ {"query_id": 35933, "query": "How to serve WAMP website over internet?"}
40
+ {"query_id": 57886, "query": "How to prevent Google (and others) from indexing the site under construction?"}
41
+ {"query_id": 2448, "query": "How to choose a CMS system for a small web site?"}
42
+ {"query_id": 1115, "query": "Can we ignore visitors without JavaScript enabled?"}
43
+ {"query_id": 55220, "query": "SEO problem with mispelled domain"}
44
+ {"query_id": 57768, "query": "Why use meta description, when we know, if we do not use meta description in a webpage, the Google will show the article text, in SERP?"}
45
+ {"query_id": 54138, "query": "SEO and Mobile XML sitemap"}
46
+ {"query_id": 1355, "query": "Is there any way to have search engines not index a certain section of a page?"}
47
+ {"query_id": 54378, "query": "How to make DNS server propagate faster if you are a site owner?"}
48
+ {"query_id": 55225, "query": "Querystring case differences and duplicate content"}
49
+ {"query_id": 35939, "query": "Is hidden content (display: none;) -indexed- by search engines?"}
50
+ {"query_id": 55228, "query": "change of address to subdomain"}
51
+ {"query_id": 10993, "query": "SSL Certification on both www and no-www domains"}
52
+ {"query_id": 34605, "query": "How can I see what Wikipedia pages link to my website?"}
53
+ {"query_id": 16186, "query": "Any tool to sketch layout?"}
54
+ {"query_id": 19576, "query": "Is there any way to find out how often a certain query is sent to a search engine?"}
55
+ {"query_id": 65395, "query": "Split domain name between two hosts (separate webmail and webhost)"}
56
+ {"query_id": 42576, "query": "Is it a good idea to register multiple domains pointing to a single website"}
57
+ {"query_id": 16067, "query": "How do I control how often search engines visit my site?"}
58
+ {"query_id": 54261, "query": "301 redirect www to non-www"}
59
+ {"query_id": 23954, "query": "Adaptive websites - considered keyword stuffing by Googlebot?"}
60
+ {"query_id": 31203, "query": "Preview content on website linking to full page, SEO strikes for duplicate content?"}
61
+ {"query_id": 57894, "query": "Different URLs with duplicate content"}
62
+ {"query_id": 49088, "query": "Which is good to target, singular or plural keyword?"}
63
+ {"query_id": 5845, "query": "Alternative to AdSense"}
64
+ {"query_id": 32659, "query": "Joomla Sites hacked by DR-MTMRD"}
65
+ {"query_id": 33627, "query": "Is there any way to discover the traffic of a site I don't control?"}
66
+ {"query_id": 10886, "query": "Any recommended forum software for commercial/busniess discussion"}
67
+ {"query_id": 16396, "query": "website dns redirects to another"}
68
+ {"query_id": 17124, "query": "Where can I host / run periodically a ruby script for free?"}
69
+ {"query_id": 42564, "query": "Changing default date range in Google Analyics?"}
70
+ {"query_id": 16398, "query": "is it a good seo practice to put relative keywords in a hidden div?"}
71
+ {"query_id": 41118, "query": "Do online webhosting accounts allow the customers to install and run webservers like node.js?"}
72
+ {"query_id": 44629, "query": "SEO handling of ever changing portion of site"}
73
+ {"query_id": 3320, "query": "Why google is not showing links to my site in result?"}
74
+ {"query_id": 16390, "query": "Preventing robots from crawling specific part of a page"}
75
+ {"query_id": 12911, "query": "What is linkbaiting?"}
76
+ {"query_id": 55000, "query": "Using the same keywords in many URLs"}
77
+ {"query_id": 54038, "query": "How do you find all the links to disavow for a Google reconsideration request?"}
78
+ {"query_id": 5852, "query": "What's the a good mailing list manager/platform?"}
79
+ {"query_id": 21633, "query": "How did this website get a custom search bar listed under their search results?"}
80
+ {"query_id": 4780, "query": "What role do article submission directories play in SEO?"}
81
+ {"query_id": 29238, "query": "Should i host the country specific website in the server at same country?"}
82
+ {"query_id": 21636, "query": "Favicon Best Practices"}
83
+ {"query_id": 20424, "query": "blogger multiple custom domains?"}
84
+ {"query_id": 58888, "query": "How to prevent Google from showing sub domain name as title in search result?"}
85
+ {"query_id": 28144, "query": "How do I deal with content scrapers?"}
86
+ {"query_id": 34810, "query": "Title of the page in search results and title of google's cached version are different. Why?"}
87
+ {"query_id": 48094, "query": "Could globally applying rel=\"nofollow\" to external links have a negative SEO impact"}
88
+ {"query_id": 10626, "query": "Strange spam posts not making sense"}
89
+ {"query_id": 30213, "query": "Does searchbots index content in iframe"}
90
+ {"query_id": 53076, "query": "Adding http:// in internal links"}
91
+ {"query_id": 56101, "query": "Why have the number of impressions reported by Google Webmaster Tools become so little?"}
92
+ {"query_id": 28266, "query": "URL length and content optimised for SEO"}
93
+ {"query_id": 32519, "query": "How to redirect an old url to a new url via htaccess? Website uses Wordpress"}
94
+ {"query_id": 49067, "query": "Will moving Images to CDN effect Google Image search results?"}
95
+ {"query_id": 19559, "query": "Applying domain name to a subfolder/path"}
96
+ {"query_id": 848, "query": "How to use rel='canonical' properly"}
97
+ {"query_id": 26080, "query": "Redirect domain address to host address with cloaking"}
98
+ {"query_id": 30214, "query": "How do I make sure my website is live all the time?"}
99
+ {"query_id": 68455, "query": "Which technique is useful for image SEO, when images is coming from CSS?"}
100
+ {"query_id": 20992, "query": "Reducing the number of js or css files downloaded?"}
101
+ {"query_id": 39250, "query": "Which keyword should I use: colors or colours or a combination of both?"}
102
+ {"query_id": 58535, "query": "Adding Disqus to wordpress effect SEO"}
103
+ {"query_id": 55265, "query": "Use SSL on Heroku without paying Heroku for SSL?"}
104
+ {"query_id": 30685, "query": "Proper caching method with .htaccess"}
105
+ {"query_id": 971, "query": "What are the best ways to implement cross browser css?"}
106
+ {"query_id": 10838, "query": "How is anti-hotlinking done?"}
107
+ {"query_id": 4424, "query": "addthis button default message"}
108
+ {"query_id": 6602, "query": "Data sources for Alexa and Compete rankings"}
109
+ {"query_id": 51902, "query": "Using same Google Adsense units for web and mobile versions"}
110
+ {"query_id": 19406, "query": "Is the meta tag for keywords not useful anymore?"}
111
+ {"query_id": 38155, "query": "Add a record in my panel route my domain from host.com to www.host.com in dot net panel"}
112
+ {"query_id": 68349, "query": "google analytics - calculate peak concurrent users for a given hour"}
113
+ {"query_id": 5653, "query": "Does the Google spider render JavaScript?"}
114
+ {"query_id": 60617, "query": "How to combine GZip + CDN for faster page loads?"}
115
+ {"query_id": 28367, "query": "Loading another domain's content in a modal iframe - acceptable?"}
116
+ {"query_id": 55279, "query": "How can I rewrite URL without losing Facebook likes, tweets, etc"}
117
+ {"query_id": 26060, "query": "How to overcome browser-specific font rendering differences?"}
118
+ {"query_id": 26181, "query": "Displaying a \"coming soon\" image to users whilst I work on website redevelopment"}
119
+ {"query_id": 25869, "query": "Managing Client's Hosting and Domain Services"}
120
+ {"query_id": 63582, "query": "Should paginated content have unique meta tags?"}
121
+ {"query_id": 5662, "query": "How do I get images containing text to be indexed by search engines?"}
122
+ {"query_id": 66979, "query": "How to organize this site?"}
123
+ {"query_id": 3242, "query": "What are the best ways to start driving traffic to a new website?"}
124
+ {"query_id": 66976, "query": "Only Allowing My IP with .htaccess for Maintenance Mode"}
125
+ {"query_id": 2272, "query": "Does Google cache robots.txt?"}
126
+ {"query_id": 27802, "query": "Hiding a particulat page from search engines not to index"}
127
+ {"query_id": 47771, "query": "Is it good to index category in search engines?"}
128
+ {"query_id": 53305, "query": "Crawling problem with AJAX search result pages"}
129
+ {"query_id": 47772, "query": "is it good for SEO to hierarchy the site links?"}
130
+ {"query_id": 10012, "query": "Google Analytics - Showing multiple site stats at once"}
131
+ {"query_id": 26849, "query": "Which symbol should I use in Meta Title: \"|\" or \"-\"?"}
132
+ {"query_id": 63591, "query": "Why are the stats for HTML Improvements in Google Webmaster Tools not decreasing?"}
133
+ {"query_id": 5550, "query": "How to provide Google reviews information?"}
134
+ {"query_id": 45465, "query": "Is it a bad idea to use a domain hack for my personal website name?"}
135
+ {"query_id": 25752, "query": "Dev site indexed by Google"}
136
+ {"query_id": 3496, "query": "Do subdomains help/hurt SEO?"}
137
+ {"query_id": 24427, "query": "What do you know about how google/search engines see's/crawls PDF files?"}
138
+ {"query_id": 37727, "query": "How to solve \"Login Only\" rejection?"}
139
+ {"query_id": 56820, "query": "Sitemap.xml doesn't seem to be working properly"}
140
+ {"query_id": 32276, "query": "Having either www.domainname.com or domainname.com is really required?"}
141
+ {"query_id": 51011, "query": "Home Page plagiarism risks from a competitors"}
142
+ {"query_id": 22483, "query": "Does adding google analytics improve google ranking"}
143
+ {"query_id": 53438, "query": "How to hide \u201call traffic\u201d when plotting rows in Google Analytics?"}
144
+ {"query_id": 37723, "query": "Why are my backlinks not showing on google on this asp.net website with all I've done?"}
145
+ {"query_id": 15834, "query": "Why do websites have a contact form? isn't an email address enough?"}
146
+ {"query_id": 42190, "query": "Connection speed for a website from UK to Australia"}
147
+ {"query_id": 6519, "query": "Does server location or TLD affects SEO"}
148
+ {"query_id": 6890, "query": "Are HTML tables bad for SEO?"}
149
+ {"query_id": 4473, "query": "What is a \"back link\" and how does it affect search ranking?"}
150
+ {"query_id": 8710, "query": "Google doesn't seem to update the description or title of my homepage"}
151
+ {"query_id": 11560, "query": "SEO preference for WWW or HTTP:// protocol redirection? Do www websites rank better than NON-www?"}
152
+ {"query_id": 19168, "query": "How to send mass email and not get treated as spam"}
153
+ {"query_id": 4596, "query": "How to remove malware from website?"}
154
+ {"query_id": 67720, "query": "Do my blog page views help my main site's page ranking, if they are on the same domain?"}
155
+ {"query_id": 7864, "query": "How to Estimate Needed Bandwidth for New Web Application?"}
156
+ {"query_id": 63489, "query": "SEO-meta description crawling issue"}
157
+ {"query_id": 24997, "query": "Website falsely blocked because of spam. Does anyone know how we should proceed?"}
158
+ {"query_id": 23546, "query": "What's the best way to create your own website?"}
159
+ {"query_id": 56712, "query": "How do I get my website public?"}
160
+ {"query_id": 533, "query": "How to add SMS text messaging functionality to my website?"}
161
+ {"query_id": 55501, "query": "Main index redirect to sub folder (e.g. domain.com/site)"}
162
+ {"query_id": 31056, "query": "How long usually it takes to effect google ranking after revise contents?"}
163
+ {"query_id": 10473, "query": "Providing fake info during domain registration - does it matter?"}
164
+ {"query_id": 44240, "query": "Redirection transparent to Google and other SE"}
165
+ {"query_id": 55509, "query": "Switching domain and hosting providers - questions about email"}
166
+ {"query_id": 21377, "query": "W3C Compliance v SEO"}
167
+ {"query_id": 67970, "query": "Create a Google Information Panel"}
168
+ {"query_id": 19176, "query": "Does google always downrank pages with hidden texts"}
169
+ {"query_id": 24888, "query": "How to get Google Page Rank for a site hosted Blog"}
170
+ {"query_id": 48716, "query": "How to avoid page views from an adult site in my blog?"}
171
+ {"query_id": 35768, "query": "Is this Anti-Scraping technique viable with Crawl-Delay?"}
172
+ {"query_id": 56600, "query": "Store name appears twice in meta titles while searching in Google?"}
173
+ {"query_id": 51152, "query": "SEO: Redirecting an incoming link to a discontinued product to a very similar product"}
174
+ {"query_id": 57933, "query": "Domain Branding: Is Making A Word Plural Relevant?"}
175
+ {"query_id": 54423, "query": "Foolproof way to ensure Google news pulls the correct image for its thumbnails?"}
176
+ {"query_id": 10242, "query": "PHP based ad server ( alternative to OpenX )"}
177
+ {"query_id": 13510, "query": "Are hyphens bad for domain names?"}
178
+ {"query_id": 20161, "query": "Thousands of 404 errors in Google Webmaster Tools"}
179
+ {"query_id": 8836, "query": "Do dedicated IP addresses improve SEO?"}
180
+ {"query_id": 11457, "query": "IP Addresses of Known Spammers"}
181
+ {"query_id": 6791, "query": "image behind adsense"}
182
+ {"query_id": 20257, "query": "Defense against rude web crawlers"}
183
+ {"query_id": 6790, "query": "Dating CMS ideas"}
184
+ {"query_id": 61080, "query": "What's the quickest way to do a \"clean\" google search?"}
185
+ {"query_id": 43494, "query": "Search Rankings and new website"}
186
+ {"query_id": 9943, "query": "Helpdesk software"}
187
+ {"query_id": 20252, "query": "Do search engines index a new domain that just redirect to the main site?"}
188
+ {"query_id": 6796, "query": "Make the content area div come next the menu bar"}
189
+ {"query_id": 18050, "query": "One multi-domain analytics profile, or one analytics profiles per domain?"}
190
+ {"query_id": 32360, "query": "Does the stop keywords matter?"}
191
+ {"query_id": 17080, "query": "Ad service that supports ssl (secure publishing)"}
192
+ {"query_id": 12759, "query": "Should I choose sub-directories over sub-domains in this case?"}
193
+ {"query_id": 56853, "query": "When seeking to acquire a legacy domain from a site owner, what should I look for in the domain history?"}
194
+ {"query_id": 310, "query": "HTML validation: is it worth it?"}
195
+ {"query_id": 14818, "query": "Improve SEO for a project that differs from another only by 1 character"}
196
+ {"query_id": 47970, "query": "Best links architecture for items under sections and categories?"}
197
+ {"query_id": 11663, "query": "How can we find the develpoment language of a specific website?"}
198
+ {"query_id": 53468, "query": "Google webmaster Tool showing : 170 not found 404 errors!"}
199
+ {"query_id": 11544, "query": "How can I help Google build SiteLinks?"}
200
+ {"query_id": 61084, "query": "Rating for website page"}
201
+ {"query_id": 28094, "query": "What are the best SMS APIs out there?"}
202
+ {"query_id": 63152, "query": "Google indexing pages very slowly"}
203
+ {"query_id": 8861, "query": "Is there anything better than awstats?"}
204
+ {"query_id": 24749, "query": "Stopping Apache from serving requests for content from other sites"}
205
+ {"query_id": 8501, "query": "Self ads targeting"}
206
+ {"query_id": 19275, "query": "How long it takes for google to refresh the page information? How can I achieve to make it faster?"}
207
+ {"query_id": 20143, "query": "What are pitfalls in SEO when internationalizing a website?"}
208
+ {"query_id": 21110, "query": "List of phones that support media queries?"}
209
+ {"query_id": 67512, "query": "Transferred hosting and website not online for 2 weeks during transition - will this affect search results?"}
210
+ {"query_id": 22684, "query": "Titles in Google results contain spammy prefixes"}
211
+ {"query_id": 18185, "query": "How to find the records for domain name purchased today and in past?"}
212
+ {"query_id": 23532, "query": "Browser vesions I should consider when testing compatibility (besides IE)?"}
213
+ {"query_id": 55898, "query": "Does text ad exchange or traffic exchange or auto surf websites good for google ranking?"}
214
+ {"query_id": 33561, "query": "What is the name for landing pages that are one long page?"}
215
+ {"query_id": 32352, "query": "Where is Google getting the title of my page from?"}
216
+ {"query_id": 6556, "query": "Does the order of keywords matter in a page title?"}
217
+ {"query_id": 9947, "query": "How can I buy a domain that has already been registered?"}
218
+ {"query_id": 13850, "query": "Will Google's New +1 Count For SEO"}
219
+ {"query_id": 7889, "query": "Are there any difference between `<h1> ... <h6>` tags for SEO?"}
220
+ {"query_id": 41061, "query": "Should you rel=\"nofollow\" on links which go to non-canonical pages"}
221
+ {"query_id": 10104, "query": "Looking for software that has a shopping cart where I can sell licensed photos"}
222
+ {"query_id": 22658, "query": "My site disappeared from Google search, how long does it take to get back?"}
223
+ {"query_id": 18395, "query": "How does Google recognize publish date of a post"}
224
+ {"query_id": 44440, "query": "google search index what is fresh content"}
225
+ {"query_id": 7424, "query": "New Domain Registration - Price differences"}
226
+ {"query_id": 19362, "query": "What is deleteme.xxxxxxxx.php"}
227
+ {"query_id": 39092, "query": "Do WordPress websites get indexed quicker by search engines than a regular website?"}
228
+ {"query_id": 55780, "query": "Can a PHP generated main page be indexed by Google?"}
229
+ {"query_id": 34525, "query": "Google Places seo?"}
230
+ {"query_id": 52395, "query": "How did Google find my unlinked newly created pages?"}
231
+ {"query_id": 32347, "query": "Could crosslinking using very general anchor texts be a reason for a drop in rankings?"}
232
+ {"query_id": 56754, "query": "Keyword adding in footer tag in the website will it help for SEO?"}
233
+ {"query_id": 335, "query": "What are some great tools to use for keyword research?"}
234
+ {"query_id": 34882, "query": "Mobile site robots.txt"}
235
+ {"query_id": 53486, "query": "Warning in Google structured data: either price or review or availability needs to be present"}
236
+ {"query_id": 216, "query": "What are some good resources for generating privacy policies and terms of use?"}
237
+ {"query_id": 4269, "query": "Where is the best place to find stock website templates?"}
238
+ {"query_id": 12974, "query": "SEO - New web page are not getting indexing"}
239
+ {"query_id": 45402, "query": "Site Indexed in Yahoo and Bing but not Google"}
240
+ {"query_id": 43468, "query": "How to view website from different locations"}
241
+ {"query_id": 44798, "query": "google removed links from the index"}
242
+ {"query_id": 4166, "query": "SEO benefits of URL as: www.example.com/category/subcategory/"}
243
+ {"query_id": 19134, "query": "My website was spammed with Russian porn links and my ranking dropped by half"}
244
+ {"query_id": 23993, "query": "complex heading tags: should I avoid them?"}
245
+ {"query_id": 22301, "query": "How does Google's Traffic Estimator calculate the \"Estimated Avg. CPC\"?"}
246
+ {"query_id": 43228, "query": "URL re-write for indexed pages"}
247
+ {"query_id": 13959, "query": "Changing nameservers for a domain on GoDaddy"}
248
+ {"query_id": 56765, "query": "Sitelinks and domain name"}
249
+ {"query_id": 58703, "query": "Bing Webmaster Tools missing www"}
250
+ {"query_id": 34510, "query": "How can I simulate a website loading slowly?"}
251
+ {"query_id": 51198, "query": "Does Google cap impressions of my website?"}
252
+ {"query_id": 34871, "query": "How to hide download file from bots?"}
253
+ {"query_id": 9968, "query": "When removing a bunch of files from a website, is 301 to the start page appropriate?"}
254
+ {"query_id": 9848, "query": "Squeezing all the SEO out of a URL as possible"}
255
+ {"query_id": 5007, "query": "Seo: Change the title of a page"}
256
+ {"query_id": 11413, "query": "SEO - 2 websites in the same domain"}
257
+ {"query_id": 31008, "query": "Is an xml sitemap good or bad"}
258
+ {"query_id": 32459, "query": "Finding estimated traffic to a website"}
259
+ {"query_id": 29829, "query": "Make Google +1 button +1 a specific URL rather than the URL it's on?"}
260
+ {"query_id": 5385, "query": "Page appears indexed in Google but not findable for any search terms?"}
261
+ {"query_id": 30938, "query": "SEO and multiple domains to same site"}
262
+ {"query_id": 5265, "query": "How do I set expiration headers for CSS, JS, and Images?"}
263
+ {"query_id": 35272, "query": "Does text size and placement on page have an effect on SEO"}
264
+ {"query_id": 65804, "query": "Social media logos and their bg"}
265
+ {"query_id": 28978, "query": "Googlebot crawler is indexing and giving value to useless words"}
266
+ {"query_id": 593, "query": "Which meta tags are not worth the effort?"}
267
+ {"query_id": 64708, "query": "separate domains vs subdomains"}
268
+ {"query_id": 27520, "query": "I'm using a CNAME to send www. traffic to domain without www. Will this hurt my SEO?"}
269
+ {"query_id": 61201, "query": "What is the correct and better language code format in URL and hreflang?"}
270
+ {"query_id": 14457, "query": "What does WWW do?"}
271
+ {"query_id": 19906, "query": "Duplicate meta description"}
272
+ {"query_id": 30705, "query": "Redirecting from blogger to custom domain"}
273
+ {"query_id": 49794, "query": "How to move a single page of content to a new domain"}
274
+ {"query_id": 15422, "query": "SEO: What are SEO benefits of submitting to Yahoo Directory?"}
275
+ {"query_id": 51528, "query": "Added new redirected domain with lots of visitors bouncing - is that bad for us?"}
276
+ {"query_id": 9739, "query": "Which URL format is better? domain.com/[id]/title OR domain.com/title/[id].html"}
277
+ {"query_id": 16999, "query": "Tool or plugin required to show out in which html files a given css selectors is used"}
278
+ {"query_id": 17724, "query": "Is there risk to registering a domain using extension from another country?"}
279
+ {"query_id": 7451, "query": "google cache grabber"}
280
+ {"query_id": 58280, "query": "find-new/posts&recent=1 as homepage: what about SEO?"}
281
+ {"query_id": 48699, "query": "Changing host bad for SEO ranking?"}
282
+ {"query_id": 18, "query": "Should I use HTML5 and/or CSS3 to build my website?"}
283
+ {"query_id": 34173, "query": "Subdomains vs. subdirectory \u2013 status as of 2012."}
284
+ {"query_id": 26206, "query": "Is \"robots.txt\" necessarily needed?"}
285
+ {"query_id": 64967, "query": "Best way to get improve SEO ranking for image-based site"}
286
+ {"query_id": 57073, "query": "How to find out why our website is blocked by Sophos and Websense?"}
287
+ {"query_id": 63508, "query": "New TLDs and Their Impact on SEO"}
288
+ {"query_id": 25470, "query": "Is minifying id and class names a bad SEO practice?"}
289
+ {"query_id": 51652, "query": "Redirecting all 404 pages in Wordpress is not good SEO, but what is?"}
290
+ {"query_id": 5269, "query": "Self hosted Web Analytics like urchin"}
291
+ {"query_id": 52624, "query": "How can I objectively check my search engine ranking?"}
292
+ {"query_id": 53713, "query": "How to Recover Lost Website/ blog data with no backup?"}
293
+ {"query_id": 8536, "query": "How do I get a domain from a grabber without paying?"}
294
+ {"query_id": 48692, "query": "If a website has no backlinks, would it ever get listed in Google?"}
295
+ {"query_id": 49781, "query": "Benefit of date in URL segments"}
296
+ {"query_id": 7209, "query": ".CO Domains. Worthwhile?"}
297
+ {"query_id": 16769, "query": "Why is my site not approved by Google Adsense?"}
298
+ {"query_id": 53714, "query": "SEO for Google Maps applications?"}
299
+ {"query_id": 8798, "query": "Hosted version of Yahoo! answers"}
300
+ {"query_id": 29800, "query": "Tool to view currently used CSS definitions"}
301
+ {"query_id": 64858, "query": "Does paid traffic improve SEO?"}
302
+ {"query_id": 57085, "query": "How do google bots work for sites that are database driven?"}
303
+ {"query_id": 23382, "query": "How to remove trailing slashes from URL with .htaccess?"}
304
+ {"query_id": 59029, "query": "Mobile and desktop SEO, double content"}
305
+ {"query_id": 27860, "query": "Frequency to submit sitemap to search engines"}
306
+ {"query_id": 48200, "query": "Tell Google to ignore parts of website"}
307
+ {"query_id": 51304, "query": "Multiple domains, same content"}
308
+ {"query_id": 68094, "query": "HTTP to only HTTPS Google wmtools"}
309
+ {"query_id": 16614, "query": "Anonymous website"}
310
+ {"query_id": 30908, "query": "How do I prevent access to an add-on domain's root directory from main hosting domain name"}
311
+ {"query_id": 47349, "query": "Is Google ok with multiple rel=\"author\" links?"}
312
+ {"query_id": 9777, "query": "Risk for hosting SEO links"}
313
+ {"query_id": 38994, "query": "Is there a general rule of thumb for which browsers to optimize your site for?"}
314
+ {"query_id": 9897, "query": "How does google calculate bounce rate?"}
315
+ {"query_id": 58185, "query": "Will 404 pages hurt website page ranking?"}
316
+ {"query_id": 28961, "query": "How to find unsecured content on a webpage"}
317
+ {"query_id": 52642, "query": "How is it possible that Google has indexed more URLs than a sitemap contains?"}
318
+ {"query_id": 51674, "query": "Someone is copying my blog content. Does it affect my blog\u2019s ranking on Google?"}
319
+ {"query_id": 47342, "query": "Are keywords in URLs good SEO or needlessly redundant?"}
320
+ {"query_id": 49400, "query": "Restoring a site (SEO) after 6 months of downtime"}
321
+ {"query_id": 50224, "query": "Forwarding naked domain to www"}
322
+ {"query_id": 44070, "query": "Website that allows users to interact via SMS (at a charge)"}
323
+ {"query_id": 44071, "query": "Can I hide an embedded YouTube video or is that against the terms of use?"}
324
+ {"query_id": 7484, "query": "bounce rate and Alexa ranking clarifications"}
325
+ {"query_id": 45, "query": "What are some options for taking payments on my website?"}
326
+ {"query_id": 9543, "query": "Search Engine results from different locations"}
327
+ {"query_id": 9540, "query": "Where is the line drawn with domain names which include a trademark?"}
328
+ {"query_id": 47577, "query": "Google Pagerank (PR) History and Next Upcoming Updates"}
329
+ {"query_id": 64632, "query": "How many back links should be created within 7 days?"}
330
+ {"query_id": 11262, "query": "How to make sure that my web application would be stable?"}
331
+ {"query_id": 11383, "query": "Alternative to Pingdom website monitoring service"}
332
+ {"query_id": 27720, "query": "SEO Reseller Programs"}
333
+ {"query_id": 274, "query": "How to choose between web hosting and cloud hosting?"}
334
+ {"query_id": 22392, "query": "A script that would create snapshots of web pages"}
335
+ {"query_id": 33178, "query": "How to make a sub-domain an alias of other domain when a wilcard exist to that level in the dns server"}
336
+ {"query_id": 50475, "query": "How to fix soft 404 errors in GWT?"}
337
+ {"query_id": 49751, "query": "Effect of redirection on ranking"}
338
+ {"query_id": 50234, "query": "Best way to prevent Google from indexing a directory"}
339
+ {"query_id": 54834, "query": "Duplicate content caused by HTTPS pages"}
340
+ {"query_id": 21183, "query": "What happens when a domain name reached it's expiration date?"}
341
+ {"query_id": 8206, "query": "How do you start an on-line community?"}
342
+ {"query_id": 10177, "query": "how to do bing seo"}
343
+ {"query_id": 20093, "query": "Why treat these as URLs with different path capitalization and trailing slash as different?"}
344
+ {"query_id": 45395, "query": "How to direct https requests to http while SSL cert expired?"}
345
+ {"query_id": 53626, "query": "What to do with discontinued product pages?"}
346
+ {"query_id": 7136, "query": "Pagination, Duplicate Content, and SEO"}
347
+ {"query_id": 15871, "query": "404 monitoring tool for websites?"}
348
+ {"query_id": 7377, "query": "How to register a domain for a beginner?"}
349
+ {"query_id": 45147, "query": "website won't work without www. on 123-reg"}
350
+ {"query_id": 61375, "query": "Website maintenance - SEO - 503"}
351
+ {"query_id": 65733, "query": "Does removing ID from url improve SEO?"}
352
+ {"query_id": 25434, "query": "need help with making seo friendly links"}
353
+ {"query_id": 34492, "query": "Pointing .com and .ca domain names"}
354
+ {"query_id": 25315, "query": "Hotlinking: what is it, and why shouldn't people do it?"}
355
+ {"query_id": 59293, "query": "Started out with a .co.uk site now want to go to .com"}
356
+ {"query_id": 28825, "query": "DNS takes too long to resolve"}
357
+ {"query_id": 34375, "query": "When will my old page stop appearing on Google?"}
358
+ {"query_id": 36434, "query": "What should filenames and URLs of images contain for SEO benefit?"}
359
+ {"query_id": 14543, "query": "Building for different screen sizes"}
360
+ {"query_id": 14669, "query": "Hide a file showing up in google search"}
361
+ {"query_id": 14546, "query": "best practice to migrate server"}
362
+ {"query_id": 15878, "query": "Content appearing under multiple categories; anything I can do to prevent duplicate penalty?"}
363
+ {"query_id": 52307, "query": "Changing web hosting companies"}
364
+ {"query_id": 44049, "query": "What is the maximum number of DNS A-records you can use on one domain?"}
365
+ {"query_id": 8354, "query": "What does the double slash mean in URLs?"}
366
+ {"query_id": 49736, "query": "What are the SEO Benefits of adding a Tumblr feed to a website?"}
367
+ {"query_id": 20078, "query": "new domain, old links are 301'd from old domain to new, how will this affect my rankings?"}
368
+ {"query_id": 12690, "query": "Ratio of No-follow & Do-follow Backlinks"}
369
+ {"query_id": 22495, "query": "Google analytics - drop in traffic"}
370
+ {"query_id": 34481, "query": "I want to host clients' websites, but not their email. What's the easiest way to handle this?"}
371
+ {"query_id": 7383, "query": "SEO one longer page vs. several targeted subpages?"}
372
+ {"query_id": 49618, "query": "Browser compatibility issues"}
373
+ {"query_id": 54970, "query": "Creating sub domain on webmin"}
374
+ {"query_id": 35212, "query": "Does google see the output of document.write?"}
375
+ {"query_id": 54851, "query": "Business not showing up on right hand side of google search"}
376
+ {"query_id": 24550, "query": "Self hosted PHP shopping cart with no storefront?"}
377
+ {"query_id": 12333, "query": "How to grep (or find) on cPanel?"}
378
+ {"query_id": 53405, "query": "Google Analytics: How can 'Avg time on page' stat be larger than my 'Avg visit duration' stat?"}
379
+ {"query_id": 55945, "query": "Adsense for my site was disapproved due to insufficient content"}
380
+ {"query_id": 6185, "query": "New META TAGS with positive effects for seo ranking in 2011 and beyond"}
381
+ {"query_id": 8001, "query": "Am I legally liable for user generated content and comments?"}
382
+ {"query_id": 11492, "query": "SEO Heading Tags"}
383
+ {"query_id": 56919, "query": "How to submit sitemap to google?"}
384
+ {"query_id": 12583, "query": "Subdomain versus new domain"}
385
+ {"query_id": 9572, "query": "Why won't title attributes get indexed in Google?"}
386
+ {"query_id": 38838, "query": "Concerns about moving media files to a CDN and impact on SEO"}
387
+ {"query_id": 53891, "query": "Why is Google reporting no authorship when I created the link?"}
388
+ {"query_id": 31089, "query": "How many days would update if I modify page meta:title and meta:description?"}
389
+ {"query_id": 52683, "query": "How to dynamically change the host URL?"}
390
+ {"query_id": 14644, "query": "How do I find the Alexa traffic rank of a site that uses a subdomain?"}
391
+ {"query_id": 11256, "query": "Are temporarily hidden elements bad for search-engine rankings?"}
392
+ {"query_id": 17914, "query": "What is a lot of traffic?"}
393
+ {"query_id": 61272, "query": "Setting up Nginx Load Balancing"}
394
+ {"query_id": 12228, "query": "Google Analytics: How can I track between http:// and https:// profiles for a domain?"}
395
+ {"query_id": 19742, "query": "Google Analytics unable to validate my site during setup"}
396
+ {"query_id": 14174, "query": "How to hide my website from search engines using robots.txt?"}
397
+ {"query_id": 42884, "query": "Pagination for product listing, what to use? \"canonical\" or \"rel-prev-next\" or do nothing?"}
398
+ {"query_id": 67266, "query": "Website logo text - best tag for SEO purposes?"}
399
+ {"query_id": 9347, "query": "IE6 Support - When to drop it?"}
400
+ {"query_id": 57582, "query": "Is there a limit to the number of web properties one can create in Google Analytics?"}
401
+ {"query_id": 25062, "query": "Any other web Analytics tool other than Google Analytics"}
402
+ {"query_id": 2823, "query": "Problem integrating Adsense with Google Analytics"}
403
+ {"query_id": 2822, "query": "free SSL certificates?"}
404
+ {"query_id": 56018, "query": "Should I use HTTPS for my WordPress blog?"}
405
+ {"query_id": 57102, "query": "Domains - real differences & advantages between .com | .org | .net"}
406
+ {"query_id": 25189, "query": "Users often say my website is infected, but can't find any evidence of this?"}
407
+ {"query_id": 30548, "query": "Prevent virtual host on same server interact on apache"}
408
+ {"query_id": 34903, "query": "How to overcome politics of the net (Google translate code refuses to work from a specific region)"}
409
+ {"query_id": 50839, "query": "How to get business map location displayed in the right hand sidebar of the Google search results page?"}
410
+ {"query_id": 67155, "query": "Establishing Authorship"}
411
+ {"query_id": 7299, "query": "StackOverflow and Google search"}
412
+ {"query_id": 9118, "query": "Should page contents be same all time for SEO?"}
413
+ {"query_id": 38014, "query": "Is having a 'home' navigation item on the home page negative to your sites SEO?"}
414
+ {"query_id": 44936, "query": "change the static IP address to domain name"}
415
+ {"query_id": 59891, "query": "Why our mails go to spam box in Gmail?"}
416
+ {"query_id": 59898, "query": "Linking to my website from my clients sites"}
417
+ {"query_id": 31629, "query": "Google reverse an analytic"}
418
+ {"query_id": 38139, "query": "Redirect non-www to www while preserving protocol"}
419
+ {"query_id": 47088, "query": "Request change of address for non-root level domain name"}
420
+ {"query_id": 30776, "query": "Google Analytics - Traffic Source - Search engine - (Not Provided)"}
421
+ {"query_id": 30412, "query": "What are some good services for brainstorming domain name ideas?"}
422
+ {"query_id": 19517, "query": "Google Analytics underestimating pageviews and visitors"}
423
+ {"query_id": 47083, "query": "How to know if certain IP is blocked in china?"}
424
+ {"query_id": 19637, "query": "How can I point a subdomain at another server?"}
425
+ {"query_id": 15362, "query": "Stackexchange meta tags"}
426
+ {"query_id": 42860, "query": "https:// search results appearing on Google for purely http:// site"}
427
+ {"query_id": 15361, "query": "Cheap stock images website (per image pricing)"}
428
+ {"query_id": 29766, "query": "What methods are effective/necessary to quickly remove URLs from the Google index?"}
429
+ {"query_id": 8273, "query": "SSL certificate - which one to buy?"}
430
+ {"query_id": 14390, "query": "Is SEO effected when URL changes from .php to not including .php"}
431
+ {"query_id": 61737, "query": "Using directories vs http get?"}
432
+ {"query_id": 47071, "query": "What does the keyword 'clicks' mean or constitute in web analytics"}
433
+ {"query_id": 58576, "query": "How can I rewrite to my .htaccess in PHP?"}
434
+ {"query_id": 26132, "query": "Is it a bad idea for my homepage to be in a sub-folder?"}
435
+ {"query_id": 59788, "query": "How to protect a form from spam?"}
436
+ {"query_id": 29762, "query": "Do URL shorteners such as bit.ly affect SEO"}
437
+ {"query_id": 50974, "query": "Issues with trailing slash vs no trailing slash and if I even need to redirect?"}
438
+ {"query_id": 51823, "query": "What domain structure is best for a forum according to SEO?"}
439
+ {"query_id": 32703, "query": "How Does Amazon have so much information in a tweet?"}
440
+ {"query_id": 3932, "query": "keyword stuffing in SEO"}
441
+ {"query_id": 2726, "query": "How can I get search engines to crawl my site and see a localised view of my data?"}
442
+ {"query_id": 18763, "query": "How Google reacts on display:none for CSS media query?"}
443
+ {"query_id": 27237, "query": "What Does Local SEO Consist of and How Does it Differ From Website SEO?"}
444
+ {"query_id": 28205, "query": "How to improve a single-paged site search result"}
445
+ {"query_id": 56160, "query": "Choose the Google Sitelinks that are shown when somebody searches for my website"}
446
+ {"query_id": 1766, "query": "New HTML5 elements and search engine ranking impact?"}
447
+ {"query_id": 24083, "query": "Ideal word count per web page?"}
448
+ {"query_id": 61507, "query": "Redirecting entire old domain to new domain"}
449
+ {"query_id": 26386, "query": "Can google crawl an URL (say some static HTML file) that has no pointing link?"}
450
+ {"query_id": 60423, "query": "Should Good Content Strategy Possibly Create Multiple Domains?"}
451
+ {"query_id": 15137, "query": "So now Google has said no to old browsers when can the rest of us follow suit?"}
452
+ {"query_id": 17314, "query": "SEO questions about website page titles"}
453
+ {"query_id": 31724, "query": "Impact of +1 on blogpost for the rootsite"}
454
+ {"query_id": 19978, "query": "How do I setup 301 redirects in Google Apps site?"}
455
+ {"query_id": 20933, "query": "Which mobile browsers for testing?"}
456
+ {"query_id": 35073, "query": "Validation Meta tag for Bing"}
457
+ {"query_id": 57028, "query": "Can competitors get your website penalized?"}
458
+ {"query_id": 64907, "query": "Blocked URLS in My webmater Tools"}
459
+ {"query_id": 28653, "query": "Can I invoke Google to check my robots.txt?"}
460
+ {"query_id": 64909, "query": "Subdomains for UK and USA"}
461
+ {"query_id": 59326, "query": "Why would I use a robots.txt file?"}
462
+ {"query_id": 59568, "query": "Will the \"Geographic Target\" of my website negatively affect my search ranking?"}
463
+ {"query_id": 24298, "query": "Old content, new URL's, how to keep the old URL's still working? 301 redirects?"}
464
+ {"query_id": 16437, "query": "URLs which begin \"www2\""}
465
+ {"query_id": 16799, "query": "Are files in a hidden directory safe?"}
466
+ {"query_id": 3952, "query": "Understanding Alexa rank, it isn't showing many of my back links?"}
467
+ {"query_id": 52812, "query": "How to prevent misattributed goal conversions to Facebook and accounts.google.com in Google Analytics?"}
468
+ {"query_id": 18978, "query": "Retrieve Facebook Like count after changing URL structure for entire website"}
469
+ {"query_id": 13170, "query": "Alt attribute for SEO recommendation"}
470
+ {"query_id": 38693, "query": "Chrome says my website is Serbian...how do I \"force\" chrome to use english?"}
471
+ {"query_id": 13056, "query": "Buying/registering domain name"}
472
+ {"query_id": 48136, "query": "Get rank for non english keyword in a english site"}
473
+ {"query_id": 20827, "query": "Business Website Fraudulently Copied; What Can We Do to Get Fraudulent Chinese Site Taken Down"}
474
+ {"query_id": 57273, "query": "Sudden decrease in number of pages indexed in Google"}
475
+ {"query_id": 26240, "query": "Why would Google Rich Snippets work for one site author but not another?"}
476
+ {"query_id": 26361, "query": "Are shorter URIs better from an SEO perspective?"}
477
+ {"query_id": 59697, "query": "SEO: best way to deal with short lifetime URLs?"}
478
+ {"query_id": 36278, "query": "What is the SEO impact of moving my domain to another IP address and what is the right way of doing this?"}
479
+ {"query_id": 19714, "query": "Shared Web Hosting provider for video or social networking sites"}
480
+ {"query_id": 47040, "query": "Will Google penalize my site for switching content upon page load?"}
481
+ {"query_id": 68299, "query": "phpBB - Reducing Spam"}
482
+ {"query_id": 38562, "query": "SEO - folder or file"}
483
+ {"query_id": 14473, "query": "Google Analytics and the EU cookie directive. Who will fall foul of the law? Google or the developer?"}
484
+ {"query_id": 56074, "query": "What resolution does Google use while crawling a site with responsive/adaptive design?"}
485
+ {"query_id": 28757, "query": "Collapsible menu and amount of links in a web page"}
486
+ {"query_id": 62996, "query": "link:www.example.com returns 0 results"}
487
+ {"query_id": 26573, "query": "Link error checking tool for linux"}
488
+ {"query_id": 28994, "query": "Someone else is using our Google Analytics Tracking code number. What do we do?"}
489
+ {"query_id": 48366, "query": "Site blocked by content filter"}
490
+ {"query_id": 50415, "query": "Best way to handle query string params no longer used"}
491
+ {"query_id": 47031, "query": "Removing GA from Sites"}
492
+ {"query_id": 1318, "query": "Alternatives to Google Website Optimizer"}
493
+ {"query_id": 47270, "query": "What are the most commonly used and basic Apache htaccess redirects?"}
494
+ {"query_id": 67085, "query": "Moving site new domain web.config IIS8.5 page level"}
495
+ {"query_id": 16420, "query": "Subfolder won't permenantly redirect to subdomain"}
496
+ {"query_id": 64944, "query": "How rel=\"next\" and rel=\"prev\" helps in SEO if used for pagination?"}
497
+ {"query_id": 61798, "query": "Is buying a localized domain and redirecting it to my main site a good idea for SEO?"}
498
+ {"query_id": 58382, "query": "Is it good ideo seo point of view- to give noindex or nofollow to labels and tags?"}
499
+ {"query_id": 50664, "query": "Web design company backlinking technique"}
500
+ {"query_id": 68063, "query": "How to remove external backlinks?"}
501
+ {"query_id": 15578, "query": "help with htaccess code for navigation"}
502
+ {"query_id": 18607, "query": "Unlimited free sitemap generator for Nginx?"}
503
+ {"query_id": 1208, "query": "Self-rated Content"}
504
+ {"query_id": 50428, "query": "If not H1 tags, what can be used?"}
505
+ {"query_id": 1449, "query": "Why does SEO seem to hinge on using wordpress?"}
506
+ {"query_id": 19813, "query": "Adding <description> metadata in php / html for google results page"}
cqadupstack-wordpress.jsonl ADDED
@@ -0,0 +1,541 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 132179, "query": "How to load dynamic content via jquery/css in a page?"}
2
+ {"query_id": 93830, "query": "Really simple query giving error in SQL syntax"}
3
+ {"query_id": 71922, "query": "how to change capability required to view an admin page?"}
4
+ {"query_id": 137986, "query": "WordPress 3.9 - Trouble Editing new TinyMCE"}
5
+ {"query_id": 42120, "query": "Remove slug in taxonomy url"}
6
+ {"query_id": 112685, "query": "Thickbox doesn't respect dimensions when used in admin"}
7
+ {"query_id": 120193, "query": "assign 2 $args to one wp_query"}
8
+ {"query_id": 149850, "query": "Static posts page with home.php"}
9
+ {"query_id": 99138, "query": "Creating a Custom Post Type as a Plugin? Why?"}
10
+ {"query_id": 56775, "query": "Add Comment Custom Field"}
11
+ {"query_id": 79894, "query": "Save Thumbnails From wp_oembed_get Function"}
12
+ {"query_id": 77597, "query": "How to Create a Custom WordPress Install Package?"}
13
+ {"query_id": 78325, "query": "How to add dynamically the main parent pages's custom fields and their values to all sub-pages?"}
14
+ {"query_id": 125634, "query": "How do I use update_option to give me a new option name each time a form is submitted?"}
15
+ {"query_id": 124300, "query": "disable comments if array exists"}
16
+ {"query_id": 56652, "query": "Filtering the Admin Comments List to Show Only Comments from the Current User?"}
17
+ {"query_id": 56779, "query": "Check if post is being published for the first time, or is an already published post being updated"}
18
+ {"query_id": 67780, "query": "Restrict url to one segment, even when page or post is nested"}
19
+ {"query_id": 116917, "query": "Notification when new post is submitted"}
20
+ {"query_id": 134128, "query": "ajax response is 0 instead of 'script'"}
21
+ {"query_id": 134249, "query": "When using a cache plugin I destroyed a menu structure"}
22
+ {"query_id": 40173, "query": "How-to: push a GitHub repo to the wordpress plugin servers"}
23
+ {"query_id": 100230, "query": "adding the full image path to a wordpress javascript file"}
24
+ {"query_id": 124420, "query": "Local environment update WordPress require FTP server"}
25
+ {"query_id": 2680, "query": "best way to overide plugin CSS?"}
26
+ {"query_id": 56781, "query": "shortcode outputs first before the page content"}
27
+ {"query_id": 114734, "query": "How To Customize Position of \u00bbadd to cart\u00ab of WooCommerce on Product Page"}
28
+ {"query_id": 78792, "query": "How to select featured images for 1500 posts?"}
29
+ {"query_id": 57512, "query": "Determine if Term has Grandparent/Great-Grandparent"}
30
+ {"query_id": 121143, "query": "Show only second level menu items?"}
31
+ {"query_id": 147797, "query": "Getting latest posts from network"}
32
+ {"query_id": 77227, "query": "Enqueue Google Web Fonts Without Messing Up Symbols In URL"}
33
+ {"query_id": 135581, "query": "Privacy Blog, maybe?"}
34
+ {"query_id": 30139, "query": "Adding a class (arrows) to main menu links that have children?"}
35
+ {"query_id": 67790, "query": "Custom search form with empty parameters"}
36
+ {"query_id": 87264, "query": "Do I need to use The Loop on pages?"}
37
+ {"query_id": 158469, "query": "Paginate Term Archive?"}
38
+ {"query_id": 42586, "query": "How to troubleshoot WordPress issues?"}
39
+ {"query_id": 19446, "query": "WordPress upgrade now receiving Error 101 (net::ERR_CONNECTION_RESET): Unknown error"}
40
+ {"query_id": 138977, "query": "Adding help for user when using $wp_customize->add_control()"}
41
+ {"query_id": 113631, "query": "Putting PHP variables into javascript"}
42
+ {"query_id": 4751, "query": "Adding Pages to Menus - No Page Hierarchy in Backend"}
43
+ {"query_id": 82718, "query": "How do I implement the Wordpress Iris picker into my plugin on the front-end?"}
44
+ {"query_id": 125980, "query": "Worth enqueue_scripts for mobile via is_mobile?"}
45
+ {"query_id": 137409, "query": "How to print a shortcode?"}
46
+ {"query_id": 77012, "query": "publish_post action hook not working"}
47
+ {"query_id": 55227, "query": "How to execute conditional script when on new customize.php (Theme Customize) screen"}
48
+ {"query_id": 121132, "query": "How to trigger the core WPLANG to make automatically set a language when the theme is activated?"}
49
+ {"query_id": 126942, "query": "Multiple taxonomies & terms (no hyperlinking) in 1 function"}
50
+ {"query_id": 4984, "query": "Resizing all images"}
51
+ {"query_id": 136322, "query": "WP Cron: Save third party data as user meta"}
52
+ {"query_id": 64050, "query": "Does WordPress send data about your blog to WordPress.org or Automattic?"}
53
+ {"query_id": 158113, "query": "How to change the publishing date of each posts?"}
54
+ {"query_id": 11722, "query": "Applying automatic link class to images embedded to posts"}
55
+ {"query_id": 24924, "query": "Programmatically change post templates?"}
56
+ {"query_id": 63098, "query": "How do I turn comments off for pages, but not posts?"}
57
+ {"query_id": 138627, "query": "Wordpress double post name distinguish by term"}
58
+ {"query_id": 112773, "query": "How can I inject html after the [x]th widget inside a Sidebar?"}
59
+ {"query_id": 134026, "query": "Setting an attribute as variation in woo commerce via php"}
60
+ {"query_id": 2100, "query": "Database synchronization between dev/staging and production"}
61
+ {"query_id": 99386, "query": "How to load wordpress sidebar using AJAX"}
62
+ {"query_id": 23710, "query": "Why isn't the Settings API designed to work for plugins using custom admin menus?"}
63
+ {"query_id": 44516, "query": "Can someone please help me find a solution to my youtube embed problems?"}
64
+ {"query_id": 56206, "query": "Permalink: postname EXCEPT for blog"}
65
+ {"query_id": 4514, "query": "How do I customise the new user welcome email"}
66
+ {"query_id": 70979, "query": "Remove Meta-boxes (Yoast SEO plugin)"}
67
+ {"query_id": 116609, "query": "What is meant by __('page','twentytwelve')"}
68
+ {"query_id": 21742, "query": "jQuery plugin function is not a function"}
69
+ {"query_id": 90241, "query": "Dynamic content in a static page"}
70
+ {"query_id": 125200, "query": "How can I loop into two different DIVS without repeating the DIVs"}
71
+ {"query_id": 124354, "query": "Why wp_register_style() is important while I'm using a complete wp_enqueue_style()?"}
72
+ {"query_id": 43657, "query": "White-list file types for media upload"}
73
+ {"query_id": 145692, "query": "Sort posts by category priority"}
74
+ {"query_id": 11822, "query": "how to limit search to post titles?"}
75
+ {"query_id": 147867, "query": "Export my posts from WordPress blog, each to single PDF file, incl. images"}
76
+ {"query_id": 60831, "query": "Duplicate posts"}
77
+ {"query_id": 123135, "query": "Shortcode executing order wrongly"}
78
+ {"query_id": 78368, "query": "is_singular won't call my functions?"}
79
+ {"query_id": 114673, "query": "Articles show some of text"}
80
+ {"query_id": 124344, "query": "How do you make your theme Child Theme-able?"}
81
+ {"query_id": 112010, "query": "Strip shortcode from excerpt"}
82
+ {"query_id": 132260, "query": "query two meta values"}
83
+ {"query_id": 43643, "query": "Make a navigation menu in the same post"}
84
+ {"query_id": 158874, "query": "Is it possible to use meta_query with both AND and OR relations?"}
85
+ {"query_id": 102451, "query": "Export data as CSV in back end with proper HTTP headers"}
86
+ {"query_id": 116953, "query": "Show all post types in the same table of posts"}
87
+ {"query_id": 1395, "query": "Adding Custom Field to Taxonomy Input :Panel"}
88
+ {"query_id": 124341, "query": "Redirect to correct author template based on author role"}
89
+ {"query_id": 21634, "query": "What is your take: TimThumb vs. WordPress Thumbnails? The great debate"}
90
+ {"query_id": 99282, "query": "Code Only On Mobile"}
91
+ {"query_id": 99042, "query": "Pagination problem in custom post type used as front page"}
92
+ {"query_id": 56343, "query": "Template issues getting ajax search results"}
93
+ {"query_id": 78357, "query": "My wordpress site must be being affected by outside sources"}
94
+ {"query_id": 113211, "query": "Calling up a second Theme functions.php"}
95
+ {"query_id": 5742, "query": "Change the Author Slug from Username to Nickname"}
96
+ {"query_id": 70519, "query": "Shared Members between two different wordpress installations with different databases"}
97
+ {"query_id": 94705, "query": "Link to subpages on the same page"}
98
+ {"query_id": 69772, "query": "Execute function when post is published"}
99
+ {"query_id": 5748, "query": "How to replace the domain name in a Wordpress database?"}
100
+ {"query_id": 136756, "query": "Retrieve all posts within tag OR category?"}
101
+ {"query_id": 88062, "query": "Preset categories in wordpress by GET-paremters"}
102
+ {"query_id": 111254, "query": "What are the minimum database privileges to run WP?"}
103
+ {"query_id": 124573, "query": "Using a url variable, is there a way to display a draft post when not logged in"}
104
+ {"query_id": 126871, "query": "Without user loging inner page is disable wordpress"}
105
+ {"query_id": 31531, "query": "Automated adding of one tag to all the posts in a category"}
106
+ {"query_id": 57446, "query": "Custom Taxonomy Archives on Custom Post type Page"}
107
+ {"query_id": 123237, "query": "Pagination in get post of custom post type"}
108
+ {"query_id": 147885, "query": "$post->ID not working but the get_the_id() is"}
109
+ {"query_id": 121058, "query": "Permission of uploads folder"}
110
+ {"query_id": 56476, "query": "How not to display posts from a certain category?"}
111
+ {"query_id": 145589, "query": "Post label \"new!\" in wp_nav_menu using class?"}
112
+ {"query_id": 67480, "query": "Custom background for the index page only?"}
113
+ {"query_id": 131190, "query": "Transform php shortcode into a widget"}
114
+ {"query_id": 4789, "query": "Changing the 'wp-admin' URL to whatever I want"}
115
+ {"query_id": 859, "query": "Show a WP 3.0 Custom Menu in an HTML Select with Auto-Navigation?"}
116
+ {"query_id": 158432, "query": "How to increase menu size limit?"}
117
+ {"query_id": 11920, "query": "Submit post and upload image from front-end"}
118
+ {"query_id": 4307, "query": "How can I add an image upload field directly to a custom write panel?"}
119
+ {"query_id": 132282, "query": "Removing WordPress version number from included files"}
120
+ {"query_id": 22943, "query": "how do I get_sidebar into a varaible?"}
121
+ {"query_id": 42893, "query": "Wordpress Plugin function callback by URL"}
122
+ {"query_id": 135315, "query": "Change default gallery image size?"}
123
+ {"query_id": 92551, "query": "How to retrieve an image from a post and display it before excerpt of a post?"}
124
+ {"query_id": 94615, "query": "How to set up wordpress domain mapping on MAMP Pro"}
125
+ {"query_id": 105940, "query": "Passing a variable into Contact Form 7"}
126
+ {"query_id": 40353, "query": "Change custom post type to hierarchical after being registered"}
127
+ {"query_id": 42891, "query": "How to create live autofill search?"}
128
+ {"query_id": 29338, "query": "How to show 'login error' and 'lost password' on my template page?"}
129
+ {"query_id": 76072, "query": "$wpdb->prepare() warning in WordPress 3.5"}
130
+ {"query_id": 41207, "query": "How do I enqueue styles/scripts on certain /wp-admin pages?"}
131
+ {"query_id": 80454, "query": "How to know which one is the main query?"}
132
+ {"query_id": 124555, "query": "Filter username field on registration for profanity and unwanted words"}
133
+ {"query_id": 25099, "query": "Change login error messages"}
134
+ {"query_id": 59753, "query": "Wp_Insert_Post: Do not insert if the title exists"}
135
+ {"query_id": 104722, "query": "Media Library page super slow, loading up full quality images"}
136
+ {"query_id": 5422, "query": "How to move the wordpress site from test url to main url?"}
137
+ {"query_id": 115676, "query": "Change core metaboxes labels"}
138
+ {"query_id": 24652, "query": "subdomain archiving"}
139
+ {"query_id": 114225, "query": "Set default Screen Options on theme setup"}
140
+ {"query_id": 75565, "query": "How to use same email for multiple users"}
141
+ {"query_id": 73385, "query": "Make search result returned only from tags!"}
142
+ {"query_id": 123182, "query": "Custom admin column disappearing when using Quick Edit"}
143
+ {"query_id": 52330, "query": "How to remove \"login to reply\" from individual comments"}
144
+ {"query_id": 114350, "query": "how to saved the values \u200b\u200bof selected checkboxes in an array"}
145
+ {"query_id": 50033, "query": "featuring old articles without messing up with the archive"}
146
+ {"query_id": 125356, "query": "Get custom taxonomies from multiple posts"}
147
+ {"query_id": 24650, "query": "Hooks for Links Box"}
148
+ {"query_id": 51005, "query": "RSS Feed Custom Title?"}
149
+ {"query_id": 138329, "query": "Make WordPress search for only this tags or exclude certain tags from search"}
150
+ {"query_id": 101042, "query": "Changing upload directory for plugin uploads only"}
151
+ {"query_id": 105641, "query": "Help with Wordpress Walker Function"}
152
+ {"query_id": 127653, "query": "Sessions in word press"}
153
+ {"query_id": 116514, "query": "Setting up a virtual subdirectory to display identical content as root directory"}
154
+ {"query_id": 160595, "query": "Why I can't align an image center using Tiny MCE editor?"}
155
+ {"query_id": 73031, "query": "Where to put my code: plugin or functions.php?"}
156
+ {"query_id": 114581, "query": "Replace Paid Shipping Method With Free Shipping Method WooCommerce"}
157
+ {"query_id": 116880, "query": "Serve HTTPS requests from subdomain"}
158
+ {"query_id": 50044, "query": "how query string in wordpress receive the value other than post and page"}
159
+ {"query_id": 158284, "query": "Plugin update without overwriting the functionality"}
160
+ {"query_id": 21152, "query": "display all posts in wordpress admin"}
161
+ {"query_id": 112043, "query": "How can i list all user registered on my website and have pagination"}
162
+ {"query_id": 4336, "query": "Is There A Hook To Process The Content Of The Text Widget?"}
163
+ {"query_id": 12201, "query": "WordPress Multisite - global categories"}
164
+ {"query_id": 128979, "query": "How to return Javascript variable to wordpress"}
165
+ {"query_id": 104307, "query": "How does wordpress distinguish a plugin's main php file from other php files?"}
166
+ {"query_id": 46547, "query": "How to use logout function on custom menu link?"}
167
+ {"query_id": 21367, "query": "When you create a custom post type, does that also create capabilities for editing/deleting that post type automatically?"}
168
+ {"query_id": 113235, "query": "Add number new posts (post_status = pending) to administration menu"}
169
+ {"query_id": 62036, "query": "How to show Next/Previous within the same Category?"}
170
+ {"query_id": 6774, "query": "Restricting access to files within a specific folder"}
171
+ {"query_id": 98226, "query": "Admin Menus - Name Menu different from first Submenu"}
172
+ {"query_id": 35416, "query": "Re Order Editor to be after meta box"}
173
+ {"query_id": 115783, "query": "I'm not able to get access to $wpdb"}
174
+ {"query_id": 88549, "query": "How to reduce the database query-es"}
175
+ {"query_id": 12531, "query": "Is it possible to add a first and latest posts link?"}
176
+ {"query_id": 6645, "query": "Turn a URL into an Attachment / Post ID"}
177
+ {"query_id": 158194, "query": "Multi site - pass post between sites"}
178
+ {"query_id": 128969, "query": "Get_post_meta returns Array instead of actual value"}
179
+ {"query_id": 5331, "query": "append_content help"}
180
+ {"query_id": 44110, "query": "PageLines theme: how to change the background color of the main content vs. entire page?"}
181
+ {"query_id": 3396, "query": "Create custom page templates with plugins?"}
182
+ {"query_id": 131958, "query": "Queries gone haywire since update to 3.8.1"}
183
+ {"query_id": 37828, "query": "Is there a plugin that will override the \"Error establishing a database connection\" message?"}
184
+ {"query_id": 124358, "query": "paging is not working properly on news archives page"}
185
+ {"query_id": 52002, "query": "Add Page number to Meta Description in Wordpress SEO by Yoast"}
186
+ {"query_id": 52489, "query": "the_date() not working"}
187
+ {"query_id": 135083, "query": "WP_Query & posts_per_page"}
188
+ {"query_id": 56966, "query": "Custom $wpdb Query for Custom Post Type by Category"}
189
+ {"query_id": 58903, "query": "Mandatory fields in Custom Post Types"}
190
+ {"query_id": 13636, "query": "How to add pages to custom menus on the fly"}
191
+ {"query_id": 137307, "query": "transition_comment_status gets called when untrashing comments"}
192
+ {"query_id": 160568, "query": "How do I create a link that will always show the latest post?"}
193
+ {"query_id": 45437, "query": "Including jQuery and JavaScript files the correct way"}
194
+ {"query_id": 5220, "query": "Automatic Updates For Private And Commercial Themes?"}
195
+ {"query_id": 62054, "query": "Custom Walker: how to get ID in function start_lvl"}
196
+ {"query_id": 99338, "query": "Loaded JavaScript file not showing"}
197
+ {"query_id": 21341, "query": "Alternative to query_posts for main loop?"}
198
+ {"query_id": 65446, "query": "Load wp_editor via ajax"}
199
+ {"query_id": 3041, "query": "Make WordPress WYSIWYG not strip out iframe's"}
200
+ {"query_id": 51281, "query": "Add a Save Button to Custom Meta Box"}
201
+ {"query_id": 114271, "query": "Retrieve categories of a WooCommerce product in hierachical order"}
202
+ {"query_id": 78881, "query": "Wordpress 3.5 Media Manager - add a button"}
203
+ {"query_id": 32004, "query": "How to validate WordPress generated password in DB using PHP?"}
204
+ {"query_id": 57944, "query": "Why does wordpress keep asking for ftp login info when I go to install a plugin"}
205
+ {"query_id": 55522, "query": "How to prefix post permalinks with /blog/ - without affecting custom post types?"}
206
+ {"query_id": 87478, "query": "How do I position meta_box on post edit screen after the title?"}
207
+ {"query_id": 139850, "query": "How to reinit tinymce for wp_editor after ajax?"}
208
+ {"query_id": 43004, "query": "wp_enqueue has a resource but doesn't generate a script tag"}
209
+ {"query_id": 64001, "query": "Best way to customise wp_nav_menu"}
210
+ {"query_id": 63277, "query": "How to get the top most term (top ancestor) of a custom taxonomy child term?"}
211
+ {"query_id": 129512, "query": "get_template_part within plugin"}
212
+ {"query_id": 19031, "query": "WP plugin updates"}
213
+ {"query_id": 130926, "query": "How to move images from /uploads to the /uploads/Year/Month structure?"}
214
+ {"query_id": 74160, "query": "Showing A Menu When Only Users Are Logged In"}
215
+ {"query_id": 77661, "query": "Next_posts_link() works only with original $wp_query"}
216
+ {"query_id": 12889, "query": "Will WP work on a multi-server environment?"}
217
+ {"query_id": 78630, "query": "ID of images from wordpress galelry"}
218
+ {"query_id": 89409, "query": "Need oop for wordpress theme?"}
219
+ {"query_id": 76334, "query": "Prevent menu from loading in a page template"}
220
+ {"query_id": 77424, "query": "Show category list on attachment page"}
221
+ {"query_id": 118742, "query": "Auto-create/assign category from post title"}
222
+ {"query_id": 31143, "query": "How to remove attachments size attribute"}
223
+ {"query_id": 128535, "query": "post_date_gmt and post_date"}
224
+ {"query_id": 76216, "query": "How to add a filter based on custom field to admin user list"}
225
+ {"query_id": 10582, "query": "How to add Disqus comment count"}
226
+ {"query_id": 112088, "query": "Let admin users edit member profiles from front end"}
227
+ {"query_id": 4259, "query": "Limiting sessions to one IP at a time"}
228
+ {"query_id": 89886, "query": "How to create a custom search for custom post type?"}
229
+ {"query_id": 140966, "query": "How do I disable comments on a page?"}
230
+ {"query_id": 11798, "query": "Loading template files from a subfolder in my theme?"}
231
+ {"query_id": 159238, "query": "Custom register and login page for Wordpress"}
232
+ {"query_id": 63041, "query": "Removing the URL field from Comments"}
233
+ {"query_id": 129620, "query": "Reduce repetitive code filtering custom post type categories"}
234
+ {"query_id": 105772, "query": "Move Title and the Content WYSIWYG editor position"}
235
+ {"query_id": 129865, "query": "Is a conditional image creation with add_image_size possible and which would be the best hook?"}
236
+ {"query_id": 3068, "query": "How to detect WP plugins used on a site"}
237
+ {"query_id": 50092, "query": "Custom meta box shown when template is chosen"}
238
+ {"query_id": 32584, "query": "Localization: I want the backend: english and frontend in defined language"}
239
+ {"query_id": 76125, "query": "Change the default-view of Media Library in 3.5?"}
240
+ {"query_id": 78544, "query": "How to write an efficient metabox with repetitive fields"}
241
+ {"query_id": 53486, "query": "How to add or remove metabox each page separately?"}
242
+ {"query_id": 118731, "query": "WordPress keeps writing rewrite rules to .htaccess"}
243
+ {"query_id": 458, "query": "OpenID for WordPress 3.x?"}
244
+ {"query_id": 10310, "query": "authenticate user without password from email activation link"}
245
+ {"query_id": 103227, "query": "Exclude subcategories from the url"}
246
+ {"query_id": 128768, "query": "WordPress Updates 3.5.2 to 3.8 Any Problem?"}
247
+ {"query_id": 134062, "query": "How to get date using timezone saved in options?"}
248
+ {"query_id": 139638, "query": "Adding a photo to each WP user"}
249
+ {"query_id": 134069, "query": "Getting start_el() error"}
250
+ {"query_id": 64389, "query": "WordPress independent plugin upgrade notification system"}
251
+ {"query_id": 147385, "query": "Is it OK to remove theme credits from footer?"}
252
+ {"query_id": 96199, "query": "What does \"_x( \" and \"__(\" mean in Custom Post Type Arguments"}
253
+ {"query_id": 222, "query": "Do deactivated plugins slow down a WordPress site?"}
254
+ {"query_id": 55550, "query": "Short_title character problem"}
255
+ {"query_id": 106, "query": "Can I rename the wp-admin folder?"}
256
+ {"query_id": 63292, "query": "how to make custom posts sticky?"}
257
+ {"query_id": 74517, "query": "Must Log In to Visit Site"}
258
+ {"query_id": 130675, "query": "How to change posts page to use own template"}
259
+ {"query_id": 95576, "query": "Increase of failed login attempts, brute force attacks?"}
260
+ {"query_id": 156820, "query": "I need to run a AJAX Fuction from within a WP_Query but only works on first item"}
261
+ {"query_id": 71005, "query": "Theme development: Pre-activated widgets"}
262
+ {"query_id": 75723, "query": "Get user input from a form"}
263
+ {"query_id": 71000, "query": "paginate_links refers to \"Not Found\" page"}
264
+ {"query_id": 131405, "query": "Adding dashicon fonts to the admin of pre 3.8 installs"}
265
+ {"query_id": 25344, "query": "How do you make relational post types in Wordpress?"}
266
+ {"query_id": 131767, "query": "Overwriting a theme function with a plugin"}
267
+ {"query_id": 29822, "query": "Custom bulk_action"}
268
+ {"query_id": 73782, "query": "Showing shortcode of contact form instead of displaying form"}
269
+ {"query_id": 58391, "query": "Is moving wp-config outside the web root really beneficial?"}
270
+ {"query_id": 85416, "query": "Advanced custom field plugin not showing in admin sidebar"}
271
+ {"query_id": 477, "query": "How do I get the size of an attachment file?"}
272
+ {"query_id": 25461, "query": "How to determine the current widget's parent container (sidebar widget id)"}
273
+ {"query_id": 6106, "query": "Remove parent category from permalink? Basically only have the child category?"}
274
+ {"query_id": 106559, "query": "dbDelta using Foreign key not working on update"}
275
+ {"query_id": 152334, "query": "How to show file size of featured image?"}
276
+ {"query_id": 76943, "query": "Add New Footer Widget Area with Limited Options?"}
277
+ {"query_id": 152453, "query": "Wordpress metabox file upload in custom post"}
278
+ {"query_id": 106451, "query": "load plugin with ajax"}
279
+ {"query_id": 13, "query": "Updates for a private plugin?"}
280
+ {"query_id": 133953, "query": "How to add a box underneath the Post Box in Wordpress admin?"}
281
+ {"query_id": 131890, "query": "Apply comment to different post (not the current post)"}
282
+ {"query_id": 154873, "query": "How to make Next and Previous attached image navigation on the attachment page?"}
283
+ {"query_id": 46398, "query": "Check before publishing, if already exist post with current custom field value"}
284
+ {"query_id": 6247, "query": "Can I turn off write-in tags/taxonomies?"}
285
+ {"query_id": 61455, "query": "Cron job not run on activation"}
286
+ {"query_id": 119988, "query": "Loading post like facebook on scrool to bottom"}
287
+ {"query_id": 25118, "query": "Change comments form title on a page by page basis"}
288
+ {"query_id": 127252, "query": "page template within custom post type"}
289
+ {"query_id": 103181, "query": "Sorting: custom query with orderby meta_value_num THEN by title"}
290
+ {"query_id": 138051, "query": "How do I enqueue a js file in functions.php for a if lt IE 9 statement?"}
291
+ {"query_id": 36118, "query": "How to HIDE everything in PUBLISH metabox except Move to Trash & PUBLISH button"}
292
+ {"query_id": 145811, "query": "Menu items (all menus) being deleted randomly on their own"}
293
+ {"query_id": 83102, "query": "How do you change the theme location?"}
294
+ {"query_id": 115278, "query": "Admin Post - Keep Child Below Parent"}
295
+ {"query_id": 84314, "query": "Custom .php page that contains json for dynamically loaded content"}
296
+ {"query_id": 139269, "query": "WordPress taxonomy radio buttons"}
297
+ {"query_id": 72116, "query": "How can I display all Multisite blogs where this user is administrator?"}
298
+ {"query_id": 129425, "query": "Why I have this error when I try to install this old blog on my local webserver?"}
299
+ {"query_id": 96563, "query": "Call sidebar from a template"}
300
+ {"query_id": 125066, "query": "Image gallery thumbnails on product page"}
301
+ {"query_id": 127487, "query": "How to change location, charset in Wordpress query"}
302
+ {"query_id": 97895, "query": "Plugin works for default post types, but not for custom"}
303
+ {"query_id": 71381, "query": "How to disable `SQL_CALC_FOUND_ROWS`"}
304
+ {"query_id": 33072, "query": "How to remove feeds from WordPress totally?"}
305
+ {"query_id": 33193, "query": "How do you load WordPress from an external script when using MultiSite?"}
306
+ {"query_id": 41934, "query": "Plugin that would allow WordPress Authors to \"follow\" other Authors and query \"Activity Info\" from that"}
307
+ {"query_id": 142792, "query": "Monthly Archive page for custom post type"}
308
+ {"query_id": 115020, "query": "Listing pages which uses specific template"}
309
+ {"query_id": 115021, "query": "date function not correctly returning date"}
310
+ {"query_id": 35139, "query": "*box for images displayed as a post's [gallery]"}
311
+ {"query_id": 23263, "query": "Syntax highlighting for post/page editor"}
312
+ {"query_id": 33198, "query": "First item in each category list is not a link"}
313
+ {"query_id": 76720, "query": "How to use taxonomies on attachments with the new Media Library?"}
314
+ {"query_id": 14677, "query": "Automatically create pages in a post based on number of words"}
315
+ {"query_id": 60132, "query": "How can I add custom fields in a custom post type?"}
316
+ {"query_id": 140139, "query": "multisite: allow only specific users to update sites"}
317
+ {"query_id": 15764, "query": "\"Leave a comment\" link even when you can't"}
318
+ {"query_id": 17947, "query": "Expanding the allowed HTML tags in comments?"}
319
+ {"query_id": 151384, "query": "Help to cleanup this code"}
320
+ {"query_id": 104373, "query": "Custom template for a product in Woocommerce"}
321
+ {"query_id": 125050, "query": "How to Override \"Blog pages show at most\" in tag.php"}
322
+ {"query_id": 46136, "query": "Archive by Year"}
323
+ {"query_id": 47346, "query": "How can I display parent and child taxonomies in separate drop downs?"}
324
+ {"query_id": 128323, "query": "Wordpress Multisite - Change Permalinks On Subdomain Posts To Postname"}
325
+ {"query_id": 117546, "query": "is_active_sidebar() Always Returns False"}
326
+ {"query_id": 126266, "query": "Report/Flag post function?"}
327
+ {"query_id": 63418, "query": "Removing user fields"}
328
+ {"query_id": 140141, "query": "Random posts loop order"}
329
+ {"query_id": 120710, "query": "query multiple posts orderby two custom fields?"}
330
+ {"query_id": 141110, "query": "Why does wp add slashes to $_POST?"}
331
+ {"query_id": 52400, "query": "How to save a translation of a plugin in \"CodeStyling Localization\"?"}
332
+ {"query_id": 141117, "query": "CPT search using meta_query and meta key as array"}
333
+ {"query_id": 144627, "query": "How to remove a filter that has been added as a function"}
334
+ {"query_id": 17715, "query": "Plugin search sorting for admin section - Wordpress"}
335
+ {"query_id": 60383, "query": "Correct process for a new Page Template?"}
336
+ {"query_id": 113196, "query": "Send message to author without showing email address"}
337
+ {"query_id": 138076, "query": "Wordpress pie register custom registration"}
338
+ {"query_id": 62573, "query": "Remove the Yoast SEO Post Metabox"}
339
+ {"query_id": 149013, "query": "Display a list of subcategories a post belongs to"}
340
+ {"query_id": 63424, "query": "How To Modify The Loop in archives.php To Have 11 Posts Per Page and CSS Styling"}
341
+ {"query_id": 147194, "query": "I have a wp_media uploader question"}
342
+ {"query_id": 104061, "query": "Auto generate meta data value in post"}
343
+ {"query_id": 130519, "query": "Loading jQuery and jQuery plugin script files correctly"}
344
+ {"query_id": 160041, "query": "How to make this change without changing the core?"}
345
+ {"query_id": 117385, "query": "date_query seems to be ignored by wp_query"}
346
+ {"query_id": 27840, "query": "How to have a custom URL structure for a custom post type?"}
347
+ {"query_id": 100939, "query": "simple solution for restricting access to (some) uploads/downloads"}
348
+ {"query_id": 87514, "query": "Make Google index the entire post if it is separated into several pages"}
349
+ {"query_id": 53866, "query": "How to use a Must-Use plugin to hide a regular one and to hide itself?"}
350
+ {"query_id": 51444, "query": "Add extra parameters after permalink?"}
351
+ {"query_id": 14773, "query": "Retrieving a custom link on an attachment"}
352
+ {"query_id": 50478, "query": "Scan for first image in post and display it"}
353
+ {"query_id": 119560, "query": "How can I edit the content in index.php?"}
354
+ {"query_id": 6163, "query": "Commenting in user profile page?"}
355
+ {"query_id": 109646, "query": "Active Plugins for current blog in WP Multisite Network?"}
356
+ {"query_id": 12360, "query": "custom registration form"}
357
+ {"query_id": 66943, "query": "How to repeat a loop after 4 posts"}
358
+ {"query_id": 66944, "query": "Conditional Tag Based on Age of Post"}
359
+ {"query_id": 98995, "query": "Custom post type archive and single.php files not working"}
360
+ {"query_id": 106371, "query": "gallery - size is thumbnail by default change it to medium"}
361
+ {"query_id": 149263, "query": "Enqueue Stylesheets After Theme's \"rtl.css\""}
362
+ {"query_id": 40805, "query": "How to secure WordPress XMLRPC?"}
363
+ {"query_id": 87746, "query": "query_posts() vs get_posts() multiple loops"}
364
+ {"query_id": 116288, "query": "Getting the count of a shortcode that is nested"}
365
+ {"query_id": 120772, "query": "Updating existing table in wordpress plugin"}
366
+ {"query_id": 140444, "query": "How to edit the admin photo?"}
367
+ {"query_id": 9308, "query": "How to split a loop into multiple columns"}
368
+ {"query_id": 150122, "query": "Woothemes Canvas - Variable Excerpt Length"}
369
+ {"query_id": 14306, "query": "Using wp_query is it possible to orderby taxonomy?"}
370
+ {"query_id": 16727, "query": "Questions about WordPress.org theme review"}
371
+ {"query_id": 82051, "query": "Meta data posted in different table"}
372
+ {"query_id": 158089, "query": "Echo Insert Media in input"}
373
+ {"query_id": 9202, "query": "Thumbnail (featured image) of next and previous post is not being properly displayed!"}
374
+ {"query_id": 46469, "query": "Can I Prevent Enumeration of Usernames?"}
375
+ {"query_id": 20196, "query": "Transient / object cache maximum key length"}
376
+ {"query_id": 73367, "query": "How do I sort multiples pages?"}
377
+ {"query_id": 75665, "query": "Archive listing of posts by publish year (multiple years)"}
378
+ {"query_id": 22134, "query": "Add Plugins to Wordpress Theme"}
379
+ {"query_id": 27941, "query": "Getting 404.php instead of single-<post-type>.php"}
380
+ {"query_id": 96361, "query": "Categorising themes by folders in backend"}
381
+ {"query_id": 175, "query": "Marking future dated post as published"}
382
+ {"query_id": 90939, "query": "All-in-One Event Calendar: Custom Query - Getting each event Instance"}
383
+ {"query_id": 87779, "query": "Taxonomy view page doesn't show terms with parents"}
384
+ {"query_id": 20194, "query": "Super WordPress debugging toolkit and triage procedures?"}
385
+ {"query_id": 15840, "query": "How to rename default posts-type Posts"}
386
+ {"query_id": 53403, "query": "Wordpress Beginer to Guru"}
387
+ {"query_id": 79914, "query": "Limit the post for differents custom post type in the same wp_query"}
388
+ {"query_id": 143727, "query": "setting global and using as argument"}
389
+ {"query_id": 159089, "query": "Get \"wp_get_nav_menu_items\" to sort alphabetically"}
390
+ {"query_id": 109985, "query": "How to pass arguments to add_action()"}
391
+ {"query_id": 98899, "query": "Creating Theme Settings Page"}
392
+ {"query_id": 36772, "query": "Image Captions Have a 10px Extra Margin, And It's Not CSS?"}
393
+ {"query_id": 117349, "query": "What is the Best Way to Secure a Commercial Wordpress Plugin?"}
394
+ {"query_id": 131758, "query": "Migration from Squarespace to WordPress: Remove leading 0 from %monthnum% in permalinks"}
395
+ {"query_id": 24443, "query": "When is it appropriate to create a new table in the WordPress database?"}
396
+ {"query_id": 27832, "query": "WP_query 'orderby=none' Problem"}
397
+ {"query_id": 127277, "query": "How to use ajax_url in front end when using with theme?"}
398
+ {"query_id": 126186, "query": "How can I process $post->post_content before echoing it?"}
399
+ {"query_id": 66606, "query": "replace plugin .po without modifying plugin core?"}
400
+ {"query_id": 16709, "query": "meta_query with meta values as serialize arrays"}
401
+ {"query_id": 117353, "query": "How to add images to taxonomy terms?"}
402
+ {"query_id": 119899, "query": "How to increase excerpt length in wordpress?"}
403
+ {"query_id": 32297, "query": "Use template_include with custom post types"}
404
+ {"query_id": 84254, "query": "WP.org API: Accessing plugin downloads \"Today\" value?"}
405
+ {"query_id": 79903, "query": "Author Pages For Custom Post Types"}
406
+ {"query_id": 116260, "query": "Turn Custom Post Title into external link"}
407
+ {"query_id": 133665, "query": "Can variables be used to rewrite a Custom Post Type permalink?"}
408
+ {"query_id": 42882, "query": "current_shortcode() - detect currently used shortcode"}
409
+ {"query_id": 133545, "query": "Sort posts by title, sort array by largest number"}
410
+ {"query_id": 92103, "query": "Disable Wordpress URL auto complete"}
411
+ {"query_id": 96945, "query": "How do I just display the part of the array that I want to?"}
412
+ {"query_id": 130158, "query": "custom admin screen or setting screen for a custom post type"}
413
+ {"query_id": 114909, "query": "WordPress Image Scaling Quality"}
414
+ {"query_id": 109793, "query": "Delete Associated Media Upon Page Deletion"}
415
+ {"query_id": 194, "query": "How to show a single post on the front page but have normal paging?"}
416
+ {"query_id": 199, "query": "Steps to Optimize WordPress in Regard to Server Load?"}
417
+ {"query_id": 59767, "query": "Order by custom field date with ASC order"}
418
+ {"query_id": 56256, "query": "Custom Post Type Pagination Doesn't Work in Wordpress 3.4"}
419
+ {"query_id": 49154, "query": "Hide other users' posts in admin panel"}
420
+ {"query_id": 31512, "query": "Custom Post Type Slug / Page Slug Conflict - Prevent use of reserved slug on page save?"}
421
+ {"query_id": 21952, "query": "WP_Query with checkbox meta_query"}
422
+ {"query_id": 70203, "query": "Final Attempt - Adding default post content based on category?"}
423
+ {"query_id": 16004, "query": "Redirect user to original url after login?"}
424
+ {"query_id": 133674, "query": "How to show an error message after publishing a post?"}
425
+ {"query_id": 157865, "query": "Function in Child Theme not overriding Parent Theme function"}
426
+ {"query_id": 59891, "query": "trying to add custom landing page to Twenty Eleven- can't get rid of Twenty Eleven header/container?"}
427
+ {"query_id": 62820, "query": "Custom post type not displaying content from single-{custopm post type} page ctd"}
428
+ {"query_id": 9231, "query": "What's the preferred method of writing AJAX-enabled plugins?"}
429
+ {"query_id": 121540, "query": "How to access WP database inside ipn.php?"}
430
+ {"query_id": 10706, "query": "WP 3.1 - archive pages for custom content types possible now without a plugin?"}
431
+ {"query_id": 66180, "query": "Programmatically insert hierarchical terms & set terms for post causes glitch?"}
432
+ {"query_id": 120216, "query": "Include wp-load.php in custom PHP script"}
433
+ {"query_id": 1507, "query": "Steps to Take to Hide the Fact a Site is Using WordPress?"}
434
+ {"query_id": 120339, "query": "Difference between do_action and add_action"}
435
+ {"query_id": 49020, "query": "Handling jQuery Component Collision"}
436
+ {"query_id": 101834, "query": "CPT admin column auto order by date instead of title"}
437
+ {"query_id": 110766, "query": "Multidimensional array problem with update_post_meta"}
438
+ {"query_id": 38361, "query": "Advanced search form with filters for custom taxonomies and custom fields"}
439
+ {"query_id": 71304, "query": "Action hook for custom tax edit"}
440
+ {"query_id": 157779, "query": "Error opening in a admin panel"}
441
+ {"query_id": 78062, "query": "How can I fix this code"}
442
+ {"query_id": 110768, "query": "returning 404 page error on form submission"}
443
+ {"query_id": 80266, "query": "Performance and styles problem after changing permalink structure"}
444
+ {"query_id": 63917, "query": "Can a developer adopt a plugin marked as \"not updated in over 2 years\"?"}
445
+ {"query_id": 84986, "query": "How to add additional JavaScript code"}
446
+ {"query_id": 19607, "query": "Wordpress Copyright Dillema (i.e. Powered by)"}
447
+ {"query_id": 69460, "query": "Get multiple custom field values in a $wpdb query"}
448
+ {"query_id": 81591, "query": "Making epub, pdf, mobi formats available in a post?"}
449
+ {"query_id": 134661, "query": "WP Nonce with Ajax- is it always neccessary?"}
450
+ {"query_id": 83650, "query": "Adding admin-ajax.php to the frontend. Good or bad idea?"}
451
+ {"query_id": 154271, "query": "Why is my ajax live search not working when i use a shortcode to call it?"}
452
+ {"query_id": 33913, "query": "Exclude admin from the top commenters list"}
453
+ {"query_id": 100833, "query": "FB - Comment Moderation Tool bug or error in the code?"}
454
+ {"query_id": 15251, "query": "Moving a blog from Tumblr to Wordpress"}
455
+ {"query_id": 129497, "query": "Transferring WordPress Instances"}
456
+ {"query_id": 107249, "query": "Remove title attribute from tag cloud widget"}
457
+ {"query_id": 15376, "query": "How to set default screen options?"}
458
+ {"query_id": 88093, "query": "Settings API enable default settings on theme install?"}
459
+ {"query_id": 131399, "query": "Share login data/cookies between multiple installations"}
460
+ {"query_id": 36174, "query": "How to disable generation of default image sizes for some custom post types?"}
461
+ {"query_id": 113901, "query": "Don\u00b4t allow access wp-admin for non-admins but allow to upload files"}
462
+ {"query_id": 120675, "query": "add_submenu_page set for multiple roles"}
463
+ {"query_id": 61749, "query": "Adding meta values to permalink"}
464
+ {"query_id": 100726, "query": "Add custom attributes to menu items without plugin"}
465
+ {"query_id": 39446, "query": "Change The Title Of a Meta Box"}
466
+ {"query_id": 14169, "query": "Return $post_id when DOING_AUTOSAVE?"}
467
+ {"query_id": 121406, "query": "How to remove/hide elements from the admin menu?"}
468
+ {"query_id": 133985, "query": "Multiple WYSIWYG editors with settings teeny => true"}
469
+ {"query_id": 37256, "query": "Paged posts - how to use numbers and next/previous links?"}
470
+ {"query_id": 134839, "query": "Is it possible to install WordPress within WordPress installation?"}
471
+ {"query_id": 23089, "query": "Are get_bloginfo queries cached to start, or should they be cached?"}
472
+ {"query_id": 41634, "query": "How can you upload an image from within a settings page?"}
473
+ {"query_id": 8050, "query": "Definitive list of WordPress books"}
474
+ {"query_id": 110349, "query": "Template Hierarchy: confused with index.php, front-page.php, home.php"}
475
+ {"query_id": 94682, "query": "Issue after changing permalink structure"}
476
+ {"query_id": 124626, "query": "How to include taxonomy.php from wp-includes the proper way?"}
477
+ {"query_id": 2623, "query": "Include custom taxonomy term in search"}
478
+ {"query_id": 143540, "query": "Sort pre_get_posts by multiple Simple Fields meta values?"}
479
+ {"query_id": 24173, "query": "How should I best incorporate WordPress in my static website?"}
480
+ {"query_id": 143303, "query": "Child theme preview missing"}
481
+ {"query_id": 25385, "query": "How to autologin users after creating a new site (multisite)?"}
482
+ {"query_id": 26595, "query": "Listing Authors - URL Formats"}
483
+ {"query_id": 82343, "query": "How to display links in specific page"}
484
+ {"query_id": 26110, "query": "What methods to use to create small, editable pieces of text for static pages?"}
485
+ {"query_id": 143301, "query": "Default image (logo) for customizer"}
486
+ {"query_id": 83435, "query": "Wordpress video end function"}
487
+ {"query_id": 48145, "query": "\"Discussion\" checkboxes unchecked by default on pages?"}
488
+ {"query_id": 67065, "query": "Properly add an upload media button in a meta box field"}
489
+ {"query_id": 152253, "query": "Multisite: List all Blogs alphabetically"}
490
+ {"query_id": 98913, "query": "Add Parent to List of Subpages"}
491
+ {"query_id": 90199, "query": "How to declare WooCommerce support in your theme"}
492
+ {"query_id": 91166, "query": "How to disable WordPress from creating thumbnails?"}
493
+ {"query_id": 47049, "query": "What is the correct way to use wordpress functions outside wordpress files?"}
494
+ {"query_id": 39665, "query": "custom htaccess rewrite rule for page"}
495
+ {"query_id": 58481, "query": "List Custom Post Types by Date Archive"}
496
+ {"query_id": 120377, "query": "Declare plugin dependency"}
497
+ {"query_id": 3727, "query": "How can I install a plugin on a Wordpress.com hosted blog?"}
498
+ {"query_id": 141132, "query": "Automatically Share Posts Across Wordpress Multisite"}
499
+ {"query_id": 142221, "query": "rewrite url for a single custom post on a multisite"}
500
+ {"query_id": 121464, "query": "Can one display a specific page on the WordPress dashboard using the WordPress dashboard API?"}
501
+ {"query_id": 119271, "query": "Text Widget Automatically Adding Website Link"}
502
+ {"query_id": 141017, "query": "relation OR instead of AND - Filtered term ID's in loop"}
503
+ {"query_id": 68040, "query": "How to be notified when a YT video becomes unavailable on my website?"}
504
+ {"query_id": 100547, "query": "How to redirect all page requests to a single \"goodbye\" homepage?"}
505
+ {"query_id": 3725, "query": "WordPress frameworks and parent themes"}
506
+ {"query_id": 50649, "query": "How to scale up featured post thumbnail?"}
507
+ {"query_id": 49339, "query": "Notice that the wp_enqueue_style is not being called correctly!"}
508
+ {"query_id": 69388, "query": "How can I track active users of my plugin? and why doesn't WordPress.Org offer this?"}
509
+ {"query_id": 11085, "query": "Truncating custom fields"}
510
+ {"query_id": 131589, "query": "how to change the default login page of wordpress from wp-login.php to custom login page?"}
511
+ {"query_id": 109333, "query": "Twenty Eleven Theme"}
512
+ {"query_id": 74853, "query": "Apply custom role capabilities to administrator (without plugin)"}
513
+ {"query_id": 63840, "query": "Is it possible to have full category-parent/post-name with custom post types?"}
514
+ {"query_id": 95799, "query": "Is it possible to disable a function of a parent theme?"}
515
+ {"query_id": 96762, "query": "How to make a meta box field a requirement"}
516
+ {"query_id": 62999, "query": "Worthwhile to restrict direct access of theme files?"}
517
+ {"query_id": 120126, "query": "WP Query / Meta Query"}
518
+ {"query_id": 120247, "query": "How to add an image in the widget zone?"}
519
+ {"query_id": 64808, "query": "conditional shortcode not working"}
520
+ {"query_id": 36149, "query": "How to place random widgets in the Wordpress sidebar?"}
521
+ {"query_id": 120122, "query": "How to enqueue script or style in a theme's template file?"}
522
+ {"query_id": 50530, "query": "custom post types, wp_get_archives and add_rewrite_rule"}
523
+ {"query_id": 141149, "query": "Duplicate domain database to local - How?"}
524
+ {"query_id": 16414, "query": "Can't edit style.css in subdirectory of my theme?"}
525
+ {"query_id": 154470, "query": "Why this Wordpress page.php file contain the posts loop?"}
526
+ {"query_id": 69386, "query": "shortcodes output before content"}
527
+ {"query_id": 98939, "query": "Allow acces to wp-admin in wordpress"}
528
+ {"query_id": 125937, "query": "Lock my blog only for me"}
529
+ {"query_id": 121219, "query": "Words After Url Redirect to Matching Blog Posts"}
530
+ {"query_id": 124848, "query": "Security: How to disallow viewing/browsing by author?"}
531
+ {"query_id": 114914, "query": "rewrite script to use wp_remote_get instead of file_get_contents_curl"}
532
+ {"query_id": 154454, "query": "Remove Parent Image Size and Create Different Size"}
533
+ {"query_id": 36493, "query": "Get post thumbnail size"}
534
+ {"query_id": 154579, "query": "Most commented post should be the first post in the blog"}
535
+ {"query_id": 20923, "query": "How can I make add_image_size() crop from the top?"}
536
+ {"query_id": 40994, "query": "single-{$post_type}-{slug}.php for custom post types"}
537
+ {"query_id": 59590, "query": "how to style an individual page in a category"}
538
+ {"query_id": 121686, "query": "How to make category page as the home page?"}
539
+ {"query_id": 101619, "query": "adding parent link to submenu"}
540
+ {"query_id": 36017, "query": "custom slug for custom post type"}
541
+ {"query_id": 15699, "query": "Export whole wordpress blog to PDF or similar including images"}
dbpedia-entity.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "SemSearch_ES-65", "query": "orlando florida", "dataset": "dbpedia-entity"}
2
+ {"query_id": "SemSearch_ES-12", "query": "austin texas", "dataset": "dbpedia-entity"}
3
+ {"query_id": "INEX_XER-125", "query": "countries which have won the FIFA world cup", "dataset": "dbpedia-entity"}
4
+ {"query_id": "QALD2_tr-23", "query": "Which television shows were created by Walt Disney?", "dataset": "dbpedia-entity"}
5
+ {"query_id": "SemSearch_ES-141", "query": "ventura county court", "dataset": "dbpedia-entity"}
6
+ {"query_id": "SemSearch_ES-54", "query": "marc anthony", "dataset": "dbpedia-entity"}
7
+ {"query_id": "QALD2_te-19", "query": "Give me all people that were born in Vienna and died in Berlin.", "dataset": "dbpedia-entity"}
8
+ {"query_id": "INEX_LD-2009111", "query": "europe solar power facility", "dataset": "dbpedia-entity"}
9
+ {"query_id": "INEX_LD-20120432", "query": "bicycle benefits environment", "dataset": "dbpedia-entity"}
10
+ {"query_id": "QALD2_te-86", "query": "What is the largest city in Australia?", "dataset": "dbpedia-entity"}
dbpedia-entity.jsonl ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "QALD2_te-67", "query": "Who are the parents of the wife of Juan Carlos I?"}
2
+ {"query_id": "QALD2_te-60", "query": "Give me a list of all lakes in Denmark."}
3
+ {"query_id": "QALD2_te-63", "query": "Give me all Argentine films."}
4
+ {"query_id": "QALD2_te-64", "query": "Give me all launch pads operated by NASA."}
5
+ {"query_id": "QALD2_te-65", "query": "Which instruments did John Lennon play?"}
6
+ {"query_id": "QALD2_te-66", "query": "Which ships were called after Benjamin Franklin?"}
7
+ {"query_id": "SemSearch_LS-1", "query": "Apollo astronauts who walked on the Moon"}
8
+ {"query_id": "SemSearch_ES-97", "query": "PINK PANTHER 2"}
9
+ {"query_id": "SemSearch_LS-2", "query": "Arab states of the Persian Gulf"}
10
+ {"query_id": "SemSearch_ES-96", "query": "New England Coffee"}
11
+ {"query_id": "SemSearch_LS-3", "query": "astronauts who landed on the Moon"}
12
+ {"query_id": "SemSearch_LS-4", "query": "Axis powers of World War II"}
13
+ {"query_id": "SemSearch_ES-98", "query": "University of Texas at Austin"}
14
+ {"query_id": "SemSearch_LS-6", "query": "boroughs of New York City"}
15
+ {"query_id": "SemSearch_LS-7", "query": "Branches of the US military"}
16
+ {"query_id": "SemSearch_LS-8", "query": "continents in the world"}
17
+ {"query_id": "SemSearch_LS-9", "query": "degrees of Eastern Orthodox monasticism"}
18
+ {"query_id": "SemSearch_ES-91", "query": "westminster abbey"}
19
+ {"query_id": "SemSearch_ES-90", "query": "university of phoenix"}
20
+ {"query_id": "SemSearch_ES-95", "query": "MADRID"}
21
+ {"query_id": "QALD2_te-72", "query": "In which U.S. state is Area 51 located?"}
22
+ {"query_id": "QALD2_te-75", "query": "Which daughters of British earls died in the same place they were born in?"}
23
+ {"query_id": "QALD2_te-76", "query": "List the children of Margaret Thatcher."}
24
+ {"query_id": "QALD2_te-77", "query": "Who was called Scarface?"}
25
+ {"query_id": "QALD2_tr-15", "query": "Who created Goofy?"}
26
+ {"query_id": "QALD2_tr-16", "query": "Give me the capitals of all countries in Africa."}
27
+ {"query_id": "QALD2_tr-13", "query": "Which classis does the Millepede belong to?"}
28
+ {"query_id": "QALD2_tr-11", "query": "Which countries have places with more than two caves?"}
29
+ {"query_id": "QALD2_te-80", "query": "Give me all books by William Goldman with more than 300 pages."}
30
+ {"query_id": "QALD2_tr-10", "query": "In which country does the Nile start?"}
31
+ {"query_id": "SemSearch_ES-86", "query": "the morning call lehigh valley pa"}
32
+ {"query_id": "SemSearch_ES-85", "query": "the longest yard sale"}
33
+ {"query_id": "SemSearch_ES-88", "query": "thomas jefferson"}
34
+ {"query_id": "SemSearch_ES-89", "query": "university of north dakota"}
35
+ {"query_id": "QALD2_te-45", "query": "Which countries are connected by the Rhine?"}
36
+ {"query_id": "QALD2_te-46", "query": "Which professional surfers were born on the Philippines?"}
37
+ {"query_id": "QALD2_te-48", "query": "In which UK city are the headquarters of the MI6?"}
38
+ {"query_id": "QALD2_te-49", "query": "Which other weapons did the designer of the Uzi develop?"}
39
+ {"query_id": "QALD2_te-40", "query": "List all boardgames by GMT."}
40
+ {"query_id": "QALD2_te-42", "query": "Who is the husband of Amanda Palmer?"}
41
+ {"query_id": "QALD2_te-43", "query": "Give me all breeds of the German Shepherd dog."}
42
+ {"query_id": "QALD2_te-44", "query": "Which cities does the Weser flow through?"}
43
+ {"query_id": "QALD2_te-57", "query": "Give me the Apollo 14 astronauts."}
44
+ {"query_id": "QALD2_te-58", "query": "What is the time zone of Salt Lake City?"}
45
+ {"query_id": "QALD2_te-59", "query": "Which U.S. states are in the same timezone as Utah?"}
46
+ {"query_id": "QALD2_te-51", "query": "Give me all Frisian islands that belong to the Netherlands."}
47
+ {"query_id": "QALD2_te-53", "query": "What is the ruling party in Lisbon?"}
48
+ {"query_id": "QALD2_te-55", "query": "Which Greek goddesses dwelt on Mount Olympus?"}
49
+ {"query_id": "QALD2_te-24", "query": "Who was the father of Queen Elizabeth II?"}
50
+ {"query_id": "QALD2_te-25", "query": "Which U.S. state has been admitted latest?"}
51
+ {"query_id": "QALD2_te-27", "query": "Sean Parnell is the governor of which U.S. state?"}
52
+ {"query_id": "QALD2_te-28", "query": "Give me all movies directed by Francis Ford Coppola."}
53
+ {"query_id": "TREC_Entity-7", "query": "Airlines that currently use Boeing 747 planes."}
54
+ {"query_id": "TREC_Entity-9", "query": "Members of The Beaux Arts Trio."}
55
+ {"query_id": "QALD2_te-100", "query": "Who produces Orangina?"}
56
+ {"query_id": "QALD2_te-21", "query": "What is the capital of Canada?"}
57
+ {"query_id": "QALD2_te-22", "query": "Who is the governor of Texas?"}
58
+ {"query_id": "SemSearch_LS-46", "query": "where the British monarch is also head of state"}
59
+ {"query_id": "SemSearch_LS-49", "query": "who invented the python programming language"}
60
+ {"query_id": "SemSearch_LS-42", "query": "twelve tribes or sons of Israel"}
61
+ {"query_id": "SemSearch_LS-43", "query": "what books did paul of tarsus write?"}
62
+ {"query_id": "SemSearch_LS-44", "query": "what languages do they speak in afghanistan"}
63
+ {"query_id": "TREC_Entity-4", "query": "Professional sports teams in Philadelphia."}
64
+ {"query_id": "TREC_Entity-6", "query": "Organizations that award Nobel prizes."}
65
+ {"query_id": "SemSearch_LS-41", "query": "the four of the companions of the prophet"}
66
+ {"query_id": "TREC_Entity-5", "query": "Products of Medimmune, Inc."}
67
+ {"query_id": "TREC_Entity-2", "query": "Winners of the ACM Athena award."}
68
+ {"query_id": "TREC_Entity-1", "query": "Carriers that Blackberry makes phones for."}
69
+ {"query_id": "QALD2_te-35", "query": "Who developed Skype?"}
70
+ {"query_id": "QALD2_te-39", "query": "Give me all companies in Munich."}
71
+ {"query_id": "QALD2_te-31", "query": "Give me all current Methodist national leaders."}
72
+ {"query_id": "QALD2_te-33", "query": "Give me all Australian nonprofit organizations."}
73
+ {"query_id": "SemSearch_LS-50", "query": "wonders of the ancient world"}
74
+ {"query_id": "INEX_LD-20120521", "query": "electronic music genres"}
75
+ {"query_id": "INEX_LD-20120522", "query": "digital music notation formats"}
76
+ {"query_id": "QALD2_te-12", "query": "Give me all world heritage sites designated within the past five years."}
77
+ {"query_id": "QALD2_te-13", "query": "Who is the youngest player in the Premier League?"}
78
+ {"query_id": "QALD2_te-14", "query": "Give me all members of Prodigy."}
79
+ {"query_id": "QALD2_te-17", "query": "Give me all cars that are produced in Germany."}
80
+ {"query_id": "INEX_LD-20120512", "query": "south korean girl groups"}
81
+ {"query_id": "INEX_LD-20120511", "query": "female rock singers"}
82
+ {"query_id": "QALD2_te-11", "query": "Who is the Formula 1 race driver with the most races?"}
83
+ {"query_id": "SemSearch_ES-17", "query": "butte montana"}
84
+ {"query_id": "SemSearch_ES-16", "query": "brooklyn bridge"}
85
+ {"query_id": "SemSearch_ES-19", "query": "carl lewis"}
86
+ {"query_id": "SemSearch_ES-18", "query": "canasta cards"}
87
+ {"query_id": "QALD2_tr-89", "query": "Give me all soccer clubs in the Premier League."}
88
+ {"query_id": "QALD2_tr-87", "query": "Who wrote the book The pillars of the Earth?"}
89
+ {"query_id": "QALD2_tr-84", "query": "Give me all movies with Tom Cruise."}
90
+ {"query_id": "QALD2_tr-85", "query": "In which films did Julia Roberts as well as Richard Gere play?"}
91
+ {"query_id": "QALD2_tr-82", "query": "In which programming language is GIMP written?"}
92
+ {"query_id": "SemSearch_ES-11", "query": "austin powers"}
93
+ {"query_id": "QALD2_tr-83", "query": "Who produced films starring Natalie Portman?"}
94
+ {"query_id": "SemSearch_ES-10", "query": "asheville north carolina"}
95
+ {"query_id": "QALD2_tr-80", "query": "Give me all Canadian Grunge record labels."}
96
+ {"query_id": "SemSearch_ES-13", "query": "banana paper making"}
97
+ {"query_id": "QALD2_tr-81", "query": "Which country has the most official languages?"}
98
+ {"query_id": "SemSearch_ES-15", "query": "bradley center"}
99
+ {"query_id": "SemSearch_ES-14", "query": "ben franklin"}
100
+ {"query_id": "SemSearch_LS-18", "query": "john lennon, parents"}
101
+ {"query_id": "SemSearch_LS-13", "query": "five great epics of Tamil literature"}
102
+ {"query_id": "SemSearch_LS-14", "query": "gods who dwelt on Mount Olympus"}
103
+ {"query_id": "SemSearch_LS-16", "query": "hijackers in the September 11 attacks"}
104
+ {"query_id": "SemSearch_LS-10", "query": "did nicole kidman have any siblings"}
105
+ {"query_id": "SemSearch_LS-11", "query": "dioceses of the church of ireland"}
106
+ {"query_id": "SemSearch_LS-12", "query": "first targets of the atomic bomb"}
107
+ {"query_id": "QALD2_tr-91", "query": "Which organizations were founded in 1950?"}
108
+ {"query_id": "SemSearch_ES-139", "query": "the big texan steak house"}
109
+ {"query_id": "SemSearch_LS-29", "query": "nations where Portuguese is an official language"}
110
+ {"query_id": "SemSearch_ES-135", "query": "spring shoes canada"}
111
+ {"query_id": "SemSearch_ES-136", "query": "sri lanka government gazette"}
112
+ {"query_id": "SemSearch_ES-39", "query": "james caldwell high school"}
113
+ {"query_id": "SemSearch_LS-24", "query": "matt berry tv series"}
114
+ {"query_id": "SemSearch_ES-38", "query": "jack the ripper"}
115
+ {"query_id": "SemSearch_LS-25", "query": "members of u2?"}
116
+ {"query_id": "QALD2_tr-68", "query": "Which actors were born in Germany?"}
117
+ {"query_id": "SemSearch_LS-26", "query": "movies starring erykah badu"}
118
+ {"query_id": "QALD2_tr-69", "query": "Which caves have more than 3 entrances?"}
119
+ {"query_id": "SemSearch_ES-132", "query": "sealy mattress co"}
120
+ {"query_id": "SemSearch_LS-20", "query": "kublai khan siblings"}
121
+ {"query_id": "SemSearch_ES-130", "query": "plymouth police department"}
122
+ {"query_id": "SemSearch_LS-21", "query": "lilly allen parents"}
123
+ {"query_id": "QALD2_tr-64", "query": "Which software has been developed by organizations founded in California?"}
124
+ {"query_id": "SemSearch_LS-22", "query": "major leagues in the united states"}
125
+ {"query_id": "QALD2_tr-65", "query": "Which companies work in the aerospace industry as well as on nuclear reactor technology?"}
126
+ {"query_id": "QALD2_tr-62", "query": "Who created Wikipedia?"}
127
+ {"query_id": "SemSearch_ES-30", "query": "eloan line of credit"}
128
+ {"query_id": "SemSearch_ES-33", "query": "harry potter"}
129
+ {"query_id": "QALD2_tr-61", "query": "Which mountains are higher than the Nanga Parbat?"}
130
+ {"query_id": "SemSearch_ES-32", "query": "fitzgerald auto mall chambersburg pa"}
131
+ {"query_id": "SemSearch_ES-36", "query": "imdb batman returns"}
132
+ {"query_id": "SemSearch_ES-128", "query": "philadelphia neufchatel cheese"}
133
+ {"query_id": "SemSearch_ES-129", "query": "pizza populous detroit mi"}
134
+ {"query_id": "SemSearch_LS-39", "query": "ten ancient Greek city-kingdoms of Cyprus"}
135
+ {"query_id": "SemSearch_ES-127", "query": "palm tungsten e2 handheld"}
136
+ {"query_id": "SemSearch_ES-124", "query": "motorola bluetooth hs850"}
137
+ {"query_id": "SemSearch_ES-125", "query": "nokia e73"}
138
+ {"query_id": "SemSearch_LS-35", "query": "republics of the former Yugoslavia"}
139
+ {"query_id": "SemSearch_ES-123", "query": "michael zimmerman"}
140
+ {"query_id": "SemSearch_LS-36", "query": "revolutionaries of 1959 in Cuba"}
141
+ {"query_id": "QALD2_tr-79", "query": "Which airports are located in California, USA?"}
142
+ {"query_id": "SemSearch_ES-120", "query": "lawrence general hospital"}
143
+ {"query_id": "SemSearch_LS-37", "query": "standard axioms of set theory"}
144
+ {"query_id": "SemSearch_ES-29", "query": "ellis college"}
145
+ {"query_id": "SemSearch_LS-38", "query": "states that border oklahoma"}
146
+ {"query_id": "QALD2_tr-77", "query": "Which music albums contain the song Last Christmas?"}
147
+ {"query_id": "SemSearch_LS-31", "query": "permanent members of the UN Security Council"}
148
+ {"query_id": "QALD2_tr-78", "query": "Give me all books written by Danielle Steel."}
149
+ {"query_id": "SemSearch_LS-32", "query": "presidents depicted on mount rushmore who died of shooting"}
150
+ {"query_id": "QALD2_tr-1", "query": "Give me all female Russian astronauts."}
151
+ {"query_id": "QALD2_tr-75", "query": "Who has been the 5th president of the United States of America?"}
152
+ {"query_id": "SemSearch_LS-33", "query": "provinces and territories of Canada"}
153
+ {"query_id": "SemSearch_LS-34", "query": "ratt albums"}
154
+ {"query_id": "QALD2_tr-3", "query": "Who is the daughter of Bill Clinton married to?"}
155
+ {"query_id": "SemSearch_ES-20", "query": "carolina"}
156
+ {"query_id": "QALD2_tr-74", "query": "Which capitals in Europe were host cities of the summer olympic games?"}
157
+ {"query_id": "QALD2_tr-71", "query": "Give me all video games published by Mean Hamster Software."}
158
+ {"query_id": "QALD2_tr-4", "query": "Which river does the Brooklyn Bridge cross?"}
159
+ {"query_id": "SemSearch_ES-21", "query": "charles darwin"}
160
+ {"query_id": "SemSearch_LS-30", "query": "orders (or 'choirs') of angels"}
161
+ {"query_id": "SemSearch_ES-24", "query": "coastal carolina"}
162
+ {"query_id": "QALD2_tr-6", "query": "Where did Abraham Lincoln die?"}
163
+ {"query_id": "QALD2_tr-70", "query": "Give me all films produced by Hal Roach."}
164
+ {"query_id": "SemSearch_ES-23", "query": "city of virginia beach"}
165
+ {"query_id": "QALD2_tr-9", "query": "Which U.S. states possess gold minerals?"}
166
+ {"query_id": "SemSearch_ES-26", "query": "disney orlando"}
167
+ {"query_id": "QALD2_tr-8", "query": "Which states of Germany are governed by the Social Democratic Party?"}
168
+ {"query_id": "SemSearch_ES-25", "query": "david suchet"}
169
+ {"query_id": "SemSearch_ES-60", "query": "michael douglas"}
170
+ {"query_id": "SemSearch_ES-61", "query": "mr rourke fantasy island"}
171
+ {"query_id": "SemSearch_ES-119", "query": "john elliott"}
172
+ {"query_id": "SemSearch_ES-118", "query": "iowa energy"}
173
+ {"query_id": "SemSearch_ES-115", "query": "goodwill of michigan"}
174
+ {"query_id": "SemSearch_ES-114", "query": "glenn frey"}
175
+ {"query_id": "SemSearch_ES-111", "query": "eagle rock, ca"}
176
+ {"query_id": "QALD2_tr-49", "query": "Give me all companies in the advertising industry."}
177
+ {"query_id": "QALD2_tr-47", "query": "What is the highest place of Karakoram?"}
178
+ {"query_id": "QALD2_tr-45", "query": "Which telecommunications organizations are located in Belgium?"}
179
+ {"query_id": "QALD2_tr-42", "query": "What are the official languages of the Philippines?"}
180
+ {"query_id": "QALD2_tr-43", "query": "Who is the mayor of New York City?"}
181
+ {"query_id": "QALD2_tr-40", "query": "What is the highest mountain in Australia?"}
182
+ {"query_id": "QALD2_tr-41", "query": "Give me all soccer clubs in Spain."}
183
+ {"query_id": "SemSearch_ES-52", "query": "lincoln park"}
184
+ {"query_id": "SemSearch_ES-56", "query": "mario bros"}
185
+ {"query_id": "SemSearch_ES-59", "query": "mercy hospital in des moines, ia"}
186
+ {"query_id": "SemSearch_ES-58", "query": "mason ohio"}
187
+ {"query_id": "SemSearch_ES-2", "query": "B. F. Skinner"}
188
+ {"query_id": "SemSearch_ES-1", "query": "44 magnum hunting"}
189
+ {"query_id": "SemSearch_ES-50", "query": "laura steele bob and tom"}
190
+ {"query_id": "SemSearch_ES-108", "query": "danielia cotton"}
191
+ {"query_id": "SemSearch_ES-106", "query": "chase masterson"}
192
+ {"query_id": "SemSearch_ES-107", "query": "concord steel"}
193
+ {"query_id": "SemSearch_ES-104", "query": "bourbonnais il"}
194
+ {"query_id": "SemSearch_ES-102", "query": "beach flowers"}
195
+ {"query_id": "QALD2_tr-59", "query": "Give me all people with first name Jimmy."}
196
+ {"query_id": "SemSearch_ES-100", "query": "YMCA Tampa"}
197
+ {"query_id": "SemSearch_ES-101", "query": "ashley wagner"}
198
+ {"query_id": "SemSearch_ES-49", "query": "laura bush"}
199
+ {"query_id": "QALD2_tr-57", "query": "List all episodes of the first season of the HBO television series The Sopranos!"}
200
+ {"query_id": "QALD2_tr-58", "query": "Who produced the most films?"}
201
+ {"query_id": "QALD2_tr-55", "query": "Who developed the video game World of Warcraft?"}
202
+ {"query_id": "QALD2_tr-53", "query": "Give me all presidents of the United States."}
203
+ {"query_id": "QALD2_tr-54", "query": "Who was the wife of U.S. president Lincoln?"}
204
+ {"query_id": "QALD2_tr-51", "query": "Give me all school types."}
205
+ {"query_id": "QALD2_tr-52", "query": "Which presidents were born in 1945?"}
206
+ {"query_id": "SemSearch_ES-41", "query": "joan of arc"}
207
+ {"query_id": "SemSearch_ES-7", "query": "airsoft glock"}
208
+ {"query_id": "QALD2_tr-50", "query": "What did Bruce Carver die from?"}
209
+ {"query_id": "SemSearch_ES-9", "query": "american embassy nairobi"}
210
+ {"query_id": "SemSearch_ES-4", "query": "NAACP Image Awards"}
211
+ {"query_id": "SemSearch_ES-3", "query": "Bookwork"}
212
+ {"query_id": "SemSearch_ES-45", "query": "keith urban"}
213
+ {"query_id": "SemSearch_ES-6", "query": "air wisconsin"}
214
+ {"query_id": "SemSearch_ES-47", "query": "king arthur"}
215
+ {"query_id": "SemSearch_ES-5", "query": "Scott County"}
216
+ {"query_id": "QALD2_te-89", "query": "In which city was the former Dutch queen Juliana buried?"}
217
+ {"query_id": "SemSearch_ES-80", "query": "sonny and cher"}
218
+ {"query_id": "SemSearch_ES-82", "query": "st lucia"}
219
+ {"query_id": "SemSearch_ES-84", "query": "the dish danielle fishel"}
220
+ {"query_id": "SemSearch_ES-83", "query": "st paul saints"}
221
+ {"query_id": "QALD2_te-81", "query": "Which books by Kerouac were published by Viking Press?"}
222
+ {"query_id": "QALD2_te-82", "query": "Give me a list of all American inventions."}
223
+ {"query_id": "QALD2_te-84", "query": "Who created the comic Captain America?"}
224
+ {"query_id": "QALD2_tr-17", "query": "Give me all cities in New Jersey with more than 100000 inhabitants."}
225
+ {"query_id": "QALD2_te-88", "query": "Which films starring Clint Eastwood did he direct himself?"}
226
+ {"query_id": "QALD2_tr-18", "query": "Which museum exhibits The Scream by Munch?"}
227
+ {"query_id": "QALD2_tr-26", "query": "Which bridges are of the same type as the Manhattan Bridge?"}
228
+ {"query_id": "QALD2_tr-24", "query": "Which mountain is the highest after the Annapurna?"}
229
+ {"query_id": "QALD2_tr-25", "query": "In which films directed by Garry Marshall was Julia Roberts starring?"}
230
+ {"query_id": "QALD2_te-90", "query": "Where is the residence of the prime minister of Spain?"}
231
+ {"query_id": "QALD2_te-91", "query": "Which U.S. State has the abbreviation MN?"}
232
+ {"query_id": "QALD2_tr-21", "query": "Which states border Illinois?"}
233
+ {"query_id": "SemSearch_ES-75", "query": "sagemont church houston tx"}
234
+ {"query_id": "SemSearch_ES-74", "query": "sacred heart u"}
235
+ {"query_id": "SemSearch_ES-77", "query": "savannah tech"}
236
+ {"query_id": "SemSearch_ES-76", "query": "san antonio"}
237
+ {"query_id": "SemSearch_ES-78", "query": "sharp pc"}
238
+ {"query_id": "SemSearch_ES-71", "query": "richmond virginia"}
239
+ {"query_id": "SemSearch_ES-72", "query": "rock 103 memphis"}
240
+ {"query_id": "QALD2_te-92", "query": "Show me all songs from Bruce Springsteen released between 1980 and 1990."}
241
+ {"query_id": "QALD2_te-93", "query": "Which movies did Sam Raimi direct after Army of Darkness?"}
242
+ {"query_id": "QALD2_te-95", "query": "Who wrote the lyrics for the Polish national anthem?"}
243
+ {"query_id": "QALD2_te-97", "query": "Who painted The Storm on the Sea of Galilee?"}
244
+ {"query_id": "QALD2_te-98", "query": "Which country does the creator of Miffy come from?"}
245
+ {"query_id": "QALD2_tr-28", "query": "Which European countries have a constitutional monarchy?"}
246
+ {"query_id": "QALD2_te-99", "query": "For which label did Elvis record his first album?"}
247
+ {"query_id": "QALD2_tr-29", "query": "Which awards did WikiLeaks win?"}
248
+ {"query_id": "QALD2_tr-38", "query": "Which monarchs of the United Kingdom were married to a German?"}
249
+ {"query_id": "QALD2_tr-35", "query": "Who is the owner of Universal Studios?"}
250
+ {"query_id": "QALD2_tr-36", "query": "Through which countries does the Yenisei river flow?"}
251
+ {"query_id": "QALD2_tr-34", "query": "Which countries have more than two official languages?"}
252
+ {"query_id": "QALD2_tr-31", "query": "What is the currency of the Czech Republic?"}
253
+ {"query_id": "QALD2_tr-32", "query": "Which countries in the European Union adopted the Euro?"}
254
+ {"query_id": "QALD2_tr-30", "query": "Which state of the USA has the highest population density?"}
255
+ {"query_id": "INEX_XER-110", "query": "Nobel Prize in Literature winners who were also poets"}
256
+ {"query_id": "INEX_XER-116", "query": "Italian nobel prize winners"}
257
+ {"query_id": "INEX_XER-115", "query": "Formula One World Constructors' Champions"}
258
+ {"query_id": "INEX_XER-114", "query": "Formula one races in Europe"}
259
+ {"query_id": "INEX_XER-113", "query": "Formula 1 drivers that won the Monaco Grand Prix"}
260
+ {"query_id": "INEX_XER-119", "query": "Swiss cantons where they speak German"}
261
+ {"query_id": "INEX_XER-118", "query": "French car models in 1960's"}
262
+ {"query_id": "INEX_XER-117", "query": "Musicians who appeared in the Blues Brothers movies"}
263
+ {"query_id": "QALD2_te-2", "query": "Who was the successor of John F. Kennedy?"}
264
+ {"query_id": "QALD2_te-1", "query": "Which German cities have more than 250000 inhabitants?"}
265
+ {"query_id": "QALD2_te-3", "query": "Who is the mayor of Berlin?"}
266
+ {"query_id": "QALD2_te-6", "query": "Give me all professional skateboarders from Sweden."}
267
+ {"query_id": "QALD2_te-5", "query": "What is the second highest mountain on Earth?"}
268
+ {"query_id": "QALD2_te-8", "query": "To which countries does the Himalayan mountain system extend?"}
269
+ {"query_id": "INEX_LD-2010106", "query": "organic food advantages disadvantages"}
270
+ {"query_id": "INEX_LD-2009115", "query": "virtual museums"}
271
+ {"query_id": "QALD2_te-9", "query": "Give me a list of all trumpet players that were bandleaders."}
272
+ {"query_id": "INEX_LD-20120131", "query": "vietnam travel national park"}
273
+ {"query_id": "INEX_XER-109", "query": "National capitals situated on islands"}
274
+ {"query_id": "INEX_XER-108", "query": "State capitals of the United States of America"}
275
+ {"query_id": "INEX_LD-2010100", "query": "house concrete wood"}
276
+ {"query_id": "INEX_XER-106", "query": "Noble english person from the Hundred Years' War"}
277
+ {"query_id": "INEX_XER-141", "query": "Universities in Catalunya"}
278
+ {"query_id": "INEX_XER-140", "query": "Airports in Germany"}
279
+ {"query_id": "INEX_XER-134", "query": "record-breaking sprinters in male 100-meter sprints"}
280
+ {"query_id": "INEX_XER-133", "query": "EU countries"}
281
+ {"query_id": "INEX_XER-132", "query": "living nordic classical composers"}
282
+ {"query_id": "INEX_XER-138", "query": "National Parks East Coast Canada US"}
283
+ {"query_id": "INEX_XER-136", "query": "Japanese players in Major League Baseball"}
284
+ {"query_id": "INEX_XER-135", "query": "professional baseball team in Japan"}
285
+ {"query_id": "INEX_XER-139", "query": "Films directed by Akira Kurosawa"}
286
+ {"query_id": "INEX_LD-2009022", "query": "Szechwan dish food cuisine"}
287
+ {"query_id": "INEX_XER-130", "query": "Star Trek Captains"}
288
+ {"query_id": "INEX_XER-123", "query": "FIFA world cup national team winners since 1974"}
289
+ {"query_id": "INEX_LD-2012309", "query": "residents small island city-state Malay Peninsula Chinese"}
290
+ {"query_id": "INEX_XER-122", "query": "Movies with eight or more Academy Awards"}
291
+ {"query_id": "INEX_XER-121", "query": "US presidents since 1960"}
292
+ {"query_id": "INEX_LD-2010004", "query": "Indian food"}
293
+ {"query_id": "INEX_XER-127", "query": "german female politicians"}
294
+ {"query_id": "INEX_LD-2012305", "query": "North Dakota's lowest river of another colour"}
295
+ {"query_id": "INEX_LD-2012303", "query": "Valley fever fungal infection San Joaquin"}
296
+ {"query_id": "INEX_XER-124", "query": "Novels that won the Booker Prize"}
297
+ {"query_id": "INEX_LD-2012301", "query": "Niagara falls origin lake"}
298
+ {"query_id": "INEX_XER-129", "query": "Science fiction book written in the 1980"}
299
+ {"query_id": "INEX_XER-128", "query": "Bond girls"}
300
+ {"query_id": "INEX_XER-96", "query": "Pure object-oriented programing languages"}
301
+ {"query_id": "INEX_XER-99", "query": "Computer systems that have a recursive acronym for the name"}
302
+ {"query_id": "INEX_XER-98", "query": "Makers of lawn tennis rackets"}
303
+ {"query_id": "INEX_XER-95", "query": "Tom Hanks movies where he plays a leading role."}
304
+ {"query_id": "INEX_XER-94", "query": "Hybrid cars sold in Europe"}
305
+ {"query_id": "INEX_XER-91", "query": "Paul Auster novels"}
306
+ {"query_id": "INEX_XER-86", "query": "List of countries in World War Two"}
307
+ {"query_id": "INEX_XER-88", "query": "Nordic authors who are known for children's literature"}
308
+ {"query_id": "INEX_XER-87", "query": "Axis powers of World War II"}
309
+ {"query_id": "INEX_XER-81", "query": "Movies about English hooligans"}
310
+ {"query_id": "INEX_XER-79", "query": "Works by Charles Rennie Mackintosh"}
311
+ {"query_id": "INEX_XER-74", "query": "circus mammals"}
312
+ {"query_id": "INEX_XER-72", "query": "films shot in Venice"}
313
+ {"query_id": "INEX_XER-67", "query": "Ferris and observation wheels"}
314
+ {"query_id": "INEX_XER-64", "query": "Alan Moore graphic novels adapted to film"}
315
+ {"query_id": "INEX_XER-63", "query": "Hugo awarded best novels"}
316
+ {"query_id": "INEX_XER-65", "query": "Pacific navigators Australia explorers"}
317
+ {"query_id": "INEX_XER-60", "query": "olympic classes dinghy sailing"}
318
+ {"query_id": "INEX_XER-62", "query": "Neil Gaiman novels"}
319
+ {"query_id": "INEX_LD-20120422", "query": "bicycle holiday nature"}
320
+ {"query_id": "INEX_LD-20120421", "query": "bicycle holiday towns"}
321
+ {"query_id": "INEX_LD-2009074", "query": "web ranking scoring algorithm"}
322
+ {"query_id": "INEX_LD-2012359", "query": "Bob Ricker Executive Director the latest front group for the anti-gun movement"}
323
+ {"query_id": "INEX_LD-2012357", "query": "prima ballerina Bolshoi Theatre 1960"}
324
+ {"query_id": "INEX_LD-2012355", "query": "England football player highest paid"}
325
+ {"query_id": "INEX_LD-2010057", "query": "Einstein Relativity theory"}
326
+ {"query_id": "INEX_LD-2012353", "query": "country German language"}
327
+ {"query_id": "INEX_LD-2012354", "query": "greatest guitarist"}
328
+ {"query_id": "INEX_LD-20120411", "query": "bicycle sport races"}
329
+ {"query_id": "INEX_LD-20120532", "query": "intellectual property rights lobby"}
330
+ {"query_id": "INEX_LD-20120531", "query": "music conferences"}
331
+ {"query_id": "INEX_LD-20120412", "query": "bicycle sport disciplines"}
332
+ {"query_id": "INEX_LD-2010069", "query": "summer flowers"}
333
+ {"query_id": "INEX_LD-2012369", "query": "most famous civic-military airports"}
334
+ {"query_id": "INEX_LD-2012367", "query": "invented telescope"}
335
+ {"query_id": "INEX_LD-2012365", "query": "mathematician computer scientist MIT's six inaugural MacVicar Faculty Fellows"}
336
+ {"query_id": "INEX_LD-2012361", "query": "most famous award winning actor singer"}
337
+ {"query_id": "TREC_Entity-12", "query": "Airlines that Air Canada has code share flights with."}
338
+ {"query_id": "INEX_LD-2012381", "query": "movie directors directed a block buster"}
339
+ {"query_id": "TREC_Entity-14", "query": "Authors awarded an Anthony Award at Bouchercon in 2007."}
340
+ {"query_id": "TREC_Entity-15", "query": "Universities that are members of the SEC conference for football."}
341
+ {"query_id": "TREC_Entity-16", "query": "Sponsors of the Mancuso quilt festivals."}
342
+ {"query_id": "TREC_Entity-18", "query": "Members of the band Jefferson Airplane."}
343
+ {"query_id": "TREC_Entity-19", "query": "Companies that John Hennessey serves on the board of."}
344
+ {"query_id": "TREC_Entity-10", "query": "Campuses of Indiana University."}
345
+ {"query_id": "TREC_Entity-11", "query": "Donors to the Home Depot Foundation."}
346
+ {"query_id": "INEX_LD-20120321", "query": "tango music composers"}
347
+ {"query_id": "INEX_LD-2012377", "query": "allegedly caused World War I"}
348
+ {"query_id": "INEX_LD-2012373", "query": "birds cannot fly"}
349
+ {"query_id": "INEX_LD-2012371", "query": "most beautiful railway stations world cities located"}
350
+ {"query_id": "INEX_LD-2012372", "query": "famous historical battlefields opponents fought"}
351
+ {"query_id": "INEX_LD-2012390", "query": "baseball player most homeruns national league"}
352
+ {"query_id": "INEX_LD-20120312", "query": "tango culture countries"}
353
+ {"query_id": "INEX_LD-20120311", "query": "tango culture movies"}
354
+ {"query_id": "TREC_Entity-20", "query": "Scotch whisky distilleries on the island of Islay."}
355
+ {"query_id": "INEX_LD-20120431", "query": "bicycle benefits health"}
356
+ {"query_id": "INEX_LD-2012389", "query": "frequently visited sharks gulf Indian Ocean"}
357
+ {"query_id": "INEX_LD-2012387", "query": "famous river confluence dam constructed"}
358
+ {"query_id": "INEX_LD-2012385", "query": "famous politicians vegetarians"}
359
+ {"query_id": "INEX_LD-2012383", "query": "famous computer scientists disappeared at sea"}
360
+ {"query_id": "INEX_LD-2010019", "query": "gallo roman architecture in paris"}
361
+ {"query_id": "INEX_LD-2012319", "query": "1994 short story collection Alice Munro is Open"}
362
+ {"query_id": "INEX_LD-2012317", "query": "daggeroso inclined to use a dagger novel Sons and Lovers"}
363
+ {"query_id": "INEX_LD-2012318", "query": "Directed Bela Glen Glenda Bride Monster Plan 9 Outer Space"}
364
+ {"query_id": "INEX_LD-2012315", "query": "Baguio Quezon City Manila official independence 1945"}
365
+ {"query_id": "INEX_LD-2010014", "query": "composer museum"}
366
+ {"query_id": "INEX_LD-2012313", "query": "John Turturro 1991 Coen Brothers film"}
367
+ {"query_id": "INEX_LD-20120221", "query": "guitar classical flamenco"}
368
+ {"query_id": "INEX_LD-2012311", "query": "John Lennon Yoko Ono album Starting Over"}
369
+ {"query_id": "INEX_XER-144", "query": "chess world champions"}
370
+ {"query_id": "INEX_LD-2009039", "query": "roman architecture"}
371
+ {"query_id": "INEX_XER-143", "query": "Hanseatic league in Germany in the Netherlands Circle"}
372
+ {"query_id": "INEX_LD-2012329", "query": "Sweden Iceland currency"}
373
+ {"query_id": "INEX_LD-2012327", "query": "Beloved author African-American Nobel Prize Literature"}
374
+ {"query_id": "INEX_LD-20120211", "query": "guitar chord tuning"}
375
+ {"query_id": "INEX_LD-20120332", "query": "tango dance history"}
376
+ {"query_id": "INEX_XER-147", "query": "Chemical elements that are named after people"}
377
+ {"query_id": "INEX_LD-20120331", "query": "tango dance styles"}
378
+ {"query_id": "INEX_LD-2012325", "query": "successor James G. Blaine studied law"}
379
+ {"query_id": "INEX_LD-2012323", "query": "Large glaciers island nation Langjokull Hofsjokull Vatnajokull"}
380
+ {"query_id": "INEX_LD-2012321", "query": "Asian port state-city Sir Stamford Raffles"}
381
+ {"query_id": "INEX_LD-2010020", "query": "electricity source in France"}
382
+ {"query_id": "INEX_LD-2009053", "query": "finland car industry manufacturer saab sisu"}
383
+ {"query_id": "INEX_LD-2012339", "query": "Nelson Mandela John Dube"}
384
+ {"query_id": "INEX_LD-2010037", "query": "social network API"}
385
+ {"query_id": "INEX_LD-20120121", "query": "vietnam food recipes"}
386
+ {"query_id": "INEX_LD-2012337", "query": "Texas city Baylor University tornado 1953"}
387
+ {"query_id": "INEX_LD-2012335", "query": "U.S. president authorise nuclear weapons against Japan"}
388
+ {"query_id": "INEX_LD-20120122", "query": "vietnamese food blog"}
389
+ {"query_id": "INEX_LD-2012333", "query": "Prime minister Canada nicknamed Silver-Tongued Laurier longest unbroken term"}
390
+ {"query_id": "INEX_LD-2012331", "query": "Seoul Korea river name ethnic group China"}
391
+ {"query_id": "INEX_LD-2009062", "query": "social network group selection"}
392
+ {"query_id": "INEX_LD-2009061", "query": "france second world war normandy"}
393
+ {"query_id": "INEX_LD-2009063", "query": "D-Day normandy invasion"}
394
+ {"query_id": "INEX_LD-20120231", "query": "guitar origin Russia"}
395
+ {"query_id": "INEX_LD-2012349", "query": "Alexander Nevsky Cathedral Bulgarian city liberation Turks"}
396
+ {"query_id": "INEX_LD-20120111", "query": "vietnam war movie"}
397
+ {"query_id": "INEX_LD-20120232", "query": "guitar origin blues"}
398
+ {"query_id": "INEX_LD-2010043", "query": "List of films from the surrealist category"}
399
+ {"query_id": "INEX_LD-2012345", "query": "Kennedy assassination governor of Texas seriously injured"}
400
+ {"query_id": "INEX_LD-2012341", "query": "1997 Houston airport president"}
fever.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "155807", "query": "Chile is not a stable nation.", "dataset": "fever"}
2
+ {"query_id": "175725", "query": "The Cry of the Owl is a thriller film.", "dataset": "fever"}
3
+ {"query_id": "199732", "query": "Tijuana is part of the San Diego -- Tijuana metropolitan area.", "dataset": "fever"}
4
+ {"query_id": "116668", "query": "A Milli is a song by Lil Wayne.", "dataset": "fever"}
5
+ {"query_id": "6414", "query": "The Godfather Part II is a political party.", "dataset": "fever"}
6
+ {"query_id": "70460", "query": "David Packouz is unqualified to be an American citizen.", "dataset": "fever"}
7
+ {"query_id": "157183", "query": "Juventus F.C. has long worn a black-and-white-striped home uniform.", "dataset": "fever"}
8
+ {"query_id": "173118", "query": "Anne Sullivan is known for being Helen Keller's teacher.", "dataset": "fever"}
9
+ {"query_id": "64373", "query": "Liverpool is in the United States.", "dataset": "fever"}
10
+ {"query_id": "205731", "query": "First Motion Picture Unit produced films.", "dataset": "fever"}
fever.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
fiqa.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "7998", "query": "logistical details of interest and dividend payments on assets traded on the secondary market?", "dataset": "fiqa"}
2
+ {"query_id": "5589", "query": "Why do moving average acts as support and resistance?", "dataset": "fiqa"}
3
+ {"query_id": "2409", "query": "250k USD in savings. What's next?", "dataset": "fiqa"}
4
+ {"query_id": "7824", "query": "At what point is the contents of a trust considered to be the property of the beneficiary?", "dataset": "fiqa"}
5
+ {"query_id": "3176", "query": "Where can I trade FX spot options, other than saxobank.com?", "dataset": "fiqa"}
6
+ {"query_id": "1417", "query": "Market Cap lower than Shares Outstanding x Share Price?", "dataset": "fiqa"}
7
+ {"query_id": "1568", "query": "If a company in China says it accepts Visa, does it accept all Visas?", "dataset": "fiqa"}
8
+ {"query_id": "3212", "query": "Legality of facilitating currency exchange between private accounts", "dataset": "fiqa"}
9
+ {"query_id": "3894", "query": "Real Estate: Please review my recent investment (with numbers from recent purchase)", "dataset": "fiqa"}
10
+ {"query_id": "6351", "query": "What evidence exists for claiming that you cannot beat the market?", "dataset": "fiqa"}
fiqa.jsonl ADDED
@@ -0,0 +1,648 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 9188, "query": "Selling mutual fund and buying equivalent ETF: Can I 1031 exchange?"}
2
+ {"query_id": 2551, "query": "How to find cheaper alternatives to a traditional home telephone line?"}
3
+ {"query_id": 2790, "query": "Should I pay more than 20% down on a home?"}
4
+ {"query_id": 9060, "query": "Buying puts without owning underlying"}
5
+ {"query_id": 2306, "query": "To whom should I report fraud on both of my credit cards?"}
6
+ {"query_id": 3759, "query": "Simplifying money management"}
7
+ {"query_id": 10414, "query": "What is considered high or low when talking about volume?"}
8
+ {"query_id": 6907, "query": "Nominal value of shares"}
9
+ {"query_id": 2423, "query": "At what age should I start or stop saving money?"}
10
+ {"query_id": 3512, "query": "As an employee, when is it inappropriate to request to see your young/startup company's financial statements?"}
11
+ {"query_id": 6909, "query": "Why do stocks priced above $2.00 on the ASX sometimes move in $0.005 increments?"}
12
+ {"query_id": 4962, "query": "Net Cash Flows from Selling the Bond and Investing"}
13
+ {"query_id": 3995, "query": "I have more than $250,000 in a US Bank account\u2026 mistake?"}
14
+ {"query_id": 4600, "query": "Why government bonds fluctuate so much, even though interest rates don't change that often?"}
15
+ {"query_id": 3875, "query": "Does freedom to provide services allow me contracting in Germany without paying taxes there (but in my home EU country)?"}
16
+ {"query_id": 4844, "query": "How to read bond yield quotes? What do the time, coupon, price, yield, and time mean?"}
17
+ {"query_id": 4845, "query": "What is the difference between fund and portfolio?"}
18
+ {"query_id": 6901, "query": "Rules for Broker Behavior with Covered Calls"}
19
+ {"query_id": 4846, "query": "Is there anything comparable to/resembling CNN's Fear and Greed Index?"}
20
+ {"query_id": 2549, "query": "How to graph the market year over year? for example Dow Jones Index"}
21
+ {"query_id": 4605, "query": "If the U.S. defaults on its debt, what will happen to my bank money?"}
22
+ {"query_id": 4968, "query": "Reasons behind a large price movement of a penny stock without any recent news releases?"}
23
+ {"query_id": 3771, "query": "Best way to buy Japanese yen for travel?"}
24
+ {"query_id": 4981, "query": "Where can I find open source portfolio management software?"}
25
+ {"query_id": 3530, "query": "How to exclude stock from mutual fund"}
26
+ {"query_id": 1230, "query": "How does Walmart account their expired food"}
27
+ {"query_id": 10547, "query": "How much do brokerages pay exchanges per trade?"}
28
+ {"query_id": 1469, "query": "Why do some companies report how well their EBITDA performed even if their overall net profit did equally well?"}
29
+ {"query_id": 2316, "query": "What exchange rate does El Al use when converting final payment amount to shekels?"}
30
+ {"query_id": 3405, "query": "Non Resident aliens - Question of standard vs itemized"}
31
+ {"query_id": 3404, "query": "In US, is it a good idea to hire a tax consultant for doing taxes?"}
32
+ {"query_id": 2676, "query": "Tax question about selling a car"}
33
+ {"query_id": 5940, "query": "How does investment into a private company work?"}
34
+ {"query_id": 8, "query": "How to deposit a cheque issued to an associate in my business into my business account?"}
35
+ {"query_id": 3767, "query": "What should I be doing to protect myself from identity theft?"}
36
+ {"query_id": 3888, "query": "Why I can't view my debit card pre-authorized amounts?"}
37
+ {"query_id": 4615, "query": "Are solar cell panels and wind mills worth the money?"}
38
+ {"query_id": 2318, "query": "F1 student and eBay selling tax"}
39
+ {"query_id": 3528, "query": "In the US, does getting a loan with a cosigner, help your credit rating?"}
40
+ {"query_id": 928, "query": "How can I determine if a FHA loan refinance offer is from a reputable lender"}
41
+ {"query_id": 929, "query": "Freelancer: Should I start a second bank account?"}
42
+ {"query_id": 3781, "query": "What is the rough estimate of salary value for a taxpayer to pay AMT?"}
43
+ {"query_id": 2330, "query": "How can I determine if a debt consolidation offer is real or a scam?"}
44
+ {"query_id": 9088, "query": "Brokerage account for charity"}
45
+ {"query_id": 6807, "query": "How to incorporate dividends while calculating annual return of a Stock"}
46
+ {"query_id": 2568, "query": "How to pay with cash when car shopping?"}
47
+ {"query_id": 2204, "query": "What's an economic explanation for why greeting cards are so expensive?"}
48
+ {"query_id": 10639, "query": "Short term parking of a large inheritance?"}
49
+ {"query_id": 2445, "query": "How do I notify the IRS of a new member to an LLC?"}
50
+ {"query_id": 3534, "query": "Why do dishonour fees exist?"}
51
+ {"query_id": 2443, "query": "What are some way to transfer money from Hong Kong to India on a monthly basis?"}
52
+ {"query_id": 2685, "query": "What ways are there for us to earn a little extra side money?"}
53
+ {"query_id": 810, "query": "Can I open a bank account in the US remotely? Will I pay taxes for the money on it?"}
54
+ {"query_id": 5951, "query": "Why can't house prices be out of tune with salaries"}
55
+ {"query_id": 932, "query": "Is freelance income earned by a U.S. citizen while living abroad subject to state income tax?"}
56
+ {"query_id": 4500, "query": "What to ask Warren Buffet at the Berkshire Hathaway shareholder meeting?"}
57
+ {"query_id": 4863, "query": "How to calculate new price for bond if yield increases"}
58
+ {"query_id": 5710, "query": "Bucketing investments to track individual growths"}
59
+ {"query_id": 813, "query": "Income Tax and Investments"}
60
+ {"query_id": 4865, "query": "Why are historical prices of stocks different on different websites? Which one should I believe?"}
61
+ {"query_id": 6800, "query": "I don't live in America. How can I buy IPO stock of newly listed companies in the United States?"}
62
+ {"query_id": 10994, "query": "Net loss not distributed by mutual funds to their shareholders?"}
63
+ {"query_id": 6803, "query": "What are the common moving averages used in a \u201cGolden Cross\u201d stock evaluation?"}
64
+ {"query_id": 4504, "query": "what is the best way of investment which gives returns forever?"}
65
+ {"query_id": 939, "query": "How to correct a tax return filed electronically and already approved?"}
66
+ {"query_id": 3791, "query": "\"When people say 'Interest rates are at all time low!\"\" \u2026 Which interest rate are they actually referring to?\""}
67
+ {"query_id": 5970, "query": "How to calculate ownership for property with a partner"}
68
+ {"query_id": 4640, "query": "What can my relatives do to minimize their out of pocket expenses on their fathers estate"}
69
+ {"query_id": 4641, "query": "Where should I park my rainy-day / emergency fund?"}
70
+ {"query_id": 2460, "query": "What are the consequences of not respecting a notice period when leaving a job?"}
71
+ {"query_id": 2580, "query": "Stock market vs. baseball card trading analogy"}
72
+ {"query_id": 10645, "query": "Explain the details and benefits of rebalancing a retirement portfolio?"}
73
+ {"query_id": 2579, "query": "What to do when a job offer is made but with a salary less than what was asked for?"}
74
+ {"query_id": 10526, "query": "What extra information might be obtained from the next highest bids in an order book?"}
75
+ {"query_id": 2334, "query": "How do you determine \u201cexcess cash\u201d for Enterprise Value calculations from a balance sheet?"}
76
+ {"query_id": 2695, "query": "Buy a parking spot and rent it out, or invest savings in an interest-bearing account?"}
77
+ {"query_id": 701, "query": "What are the ins/outs of writing-off part of one's rent for working at home?"}
78
+ {"query_id": 945, "query": "Paid by an American company but working from France: where should I pay taxes?"}
79
+ {"query_id": 4514, "query": "What intrinsic, non-monetary value does gold have as a commodity?"}
80
+ {"query_id": 4756, "query": "What is the formula for the Tesla Finance calculation?"}
81
+ {"query_id": 6814, "query": "Selling Stock - All or Nothing?"}
82
+ {"query_id": 3789, "query": "How to work around the Owner Occupancy Affidavit to buy another home in less than a year?"}
83
+ {"query_id": 4999, "query": "Looking for a good source for Financial Statements"}
84
+ {"query_id": 3682, "query": "Short selling - lender's motivation"}
85
+ {"query_id": 5981, "query": "Is it a good investment for a foreigner to purchase a flat/apartment in China?"}
86
+ {"query_id": 3683, "query": "Can I trust the Motley Fool?"}
87
+ {"query_id": 5620, "query": "What's the fuss about identity theft?"}
88
+ {"query_id": 5741, "query": "Learning investing and the stock market"}
89
+ {"query_id": 5862, "query": "Can I get a discount on merchandise by paying with cash instead of credit?"}
90
+ {"query_id": 2472, "query": "How do I deal with a mistaken attempt to collect a debt from me that is owed by someone else?"}
91
+ {"query_id": 2593, "query": "Am I \u201ccheating the system\u201d by opening up a tiny account with a credit union and then immediately applying for a huge loan?"}
92
+ {"query_id": 2590, "query": "Are non-residents or foreigners permitted to buy or own shares of UK companies?"}
93
+ {"query_id": 10734, "query": "How do you translate a per year salary into a part-time per hour job?"}
94
+ {"query_id": 2108, "query": "Can I pay taxes using bill pay from my on-line checking account?"}
95
+ {"query_id": 10975, "query": "How to contribute to Roth IRA when income is at the maximum limit & you have employer-sponsored 401k plans?"}
96
+ {"query_id": 4409, "query": "My friend wants to put my name down for a house he's buying. What risks would I be taking?"}
97
+ {"query_id": 2348, "query": "Why can't you just have someone invest for you and split the profits (and losses) with him?"}
98
+ {"query_id": 2589, "query": "How can I detect potential fraud in a company before investing in them?"}
99
+ {"query_id": 10979, "query": "Closing a futures position"}
100
+ {"query_id": 2587, "query": "Typically how many digits are in a cheque number?"}
101
+ {"query_id": 2465, "query": "Can capital expenses for volunteer purposes be deducted from income?"}
102
+ {"query_id": 5853, "query": "Paying Off Principal of Home vs. Investing In Mutual Fund"}
103
+ {"query_id": 4523, "query": "What should I do with my $25k to invest as a 20 years old?"}
104
+ {"query_id": 715, "query": "what would you do with $100K saving?"}
105
+ {"query_id": 7911, "query": "What is the difference between a 'trader' and a 'stockbroker'?"}
106
+ {"query_id": 957, "query": "How can I withdraw money from my LLC?"}
107
+ {"query_id": 4767, "query": "New car: buy with cash or 0% financing"}
108
+ {"query_id": 5616, "query": "How and where do companies publish financial reports?"}
109
+ {"query_id": 3694, "query": "Has anyone created a documentary about folks who fail to save enough for retirement?"}
110
+ {"query_id": 5993, "query": "Why would anyone want to pay off their debts in a way other than \u201chighest interest\u201d first?"}
111
+ {"query_id": 3453, "query": "How does spot-futures arbitrage work in the gold market?"}
112
+ {"query_id": 3451, "query": "Should you keep your stocks if you are too late to sell?"}
113
+ {"query_id": 1393, "query": "Which is better when working as a contractor, 1099 or incorporating?"}
114
+ {"query_id": 1150, "query": "How are the best way to make and save money at 22 years old"}
115
+ {"query_id": 1391, "query": "How is taxation for youtube/twitch etc monetization handled in the UK?"}
116
+ {"query_id": 2118, "query": "What happened in Argentina in 2001 bank sector? did the banks closed? all or some?"}
117
+ {"query_id": 7928, "query": "If I believe a stock is going to fall, what options do I have to invest on this?"}
118
+ {"query_id": 3569, "query": "Funds in closed bank account have gone to the government"}
119
+ {"query_id": 10628, "query": "What happens with the \u201clong\u201d buyer of a stock when somebody else's short fails (that is, unlimited loss bankrupts short seller)"}
120
+ {"query_id": 3446, "query": "What's the difference between Term and Whole Life insurance?"}
121
+ {"query_id": 2598, "query": "Is it possible for US retail forex traders to trade exotic currencies?"}
122
+ {"query_id": 3566, "query": "Where can I buy stocks if I only want to invest a little bit at a time, and not really be involved in trading?"}
123
+ {"query_id": 721, "query": "What are \u201cupstream investments\u201d and \u201cdownstream investments\u201d in this context?"}
124
+ {"query_id": 4411, "query": "How does the importance of a cash emergency fund change when you live in a country with nationalized healthcare?"}
125
+ {"query_id": 6832, "query": "incorrect printed information on check stock"}
126
+ {"query_id": 4775, "query": "Should I finance a car to build credit for a mortgage next year?"}
127
+ {"query_id": 603, "query": "Will one\u2019s education loan application be rejected if one doesn't have a payslip providing collateral?"}
128
+ {"query_id": 604, "query": "Is there a dollar amount that, when adding Massachusetts Sales Tax, precisely equals $200?"}
129
+ {"query_id": 6713, "query": "Will my father still be eligible for SNAP if I claim him as my dependent?"}
130
+ {"query_id": 4414, "query": "Do high interest rates lead to higher bond yields or lower?"}
131
+ {"query_id": 4777, "query": "How to finance necessary repairs to our home in order to sell it?"}
132
+ {"query_id": 5503, "query": "Tax considerations for selling a property below appraised value to family?"}
133
+ {"query_id": 7801, "query": "What are some well known or well regarded arguments against investing?"}
134
+ {"query_id": 4415, "query": "How much is inflation?"}
135
+ {"query_id": 6715, "query": "What does it mean if \u201cIPOs - normally are sold with an `underwriting discount` (a built in commission)\u201d"}
136
+ {"query_id": 7925, "query": "Can I sell a stock immediately?"}
137
+ {"query_id": 5505, "query": "Can I deduct interest and fees on a loan for qualified medical expenses?"}
138
+ {"query_id": 6835, "query": "Are bond ETF capital gains taxed similar to stock or stock funds if held for more than 1 year?"}
139
+ {"query_id": 7803, "query": "Can the Delta be used to calculate the option premium given a certain target?"}
140
+ {"query_id": 849, "query": "Accounting for reimbursements that exceed actual expenses"}
141
+ {"query_id": 6959, "query": "What is the term for the quantity (high price minus low price) for a stock?"}
142
+ {"query_id": 4539, "query": "How should I save money if the real interest rate (after inflation) is negative?"}
143
+ {"query_id": 5763, "query": "What is the best way to get a \u201crough\u201d home appraisal prior to starting the refinance process?"}
144
+ {"query_id": 1284, "query": "Tax consequences when foreign currency changes in value"}
145
+ {"query_id": 2010, "query": "Paypal website donations without being a charity"}
146
+ {"query_id": 1281, "query": "How FTB and IRS find mistakes in amended tax returns? Are their processes reliable?"}
147
+ {"query_id": 1159, "query": "what is the best way to do a freelancing job over the summer for a student"}
148
+ {"query_id": 1157, "query": "Personal taxes for Shopify / Paypal shop?"}
149
+ {"query_id": 852, "query": "Dalbar: How can the average investor lose money?"}
150
+ {"query_id": 853, "query": "What will my taxes be as self employed?"}
151
+ {"query_id": 2486, "query": "Is working on a W2 basis, with benefits paid to me, a good idea?"}
152
+ {"query_id": 4785, "query": "What is the difference between a structured collar and a normal collar in finance?"}
153
+ {"query_id": 5511, "query": "Pay off car loan entirely or leave $1 until the end of the loan period?"}
154
+ {"query_id": 858, "query": "Is it bad practice to invest in stocks that fluctuate by single points throughout the day?"}
155
+ {"query_id": 7936, "query": "Why naked call writing is risky compare to Covered call?"}
156
+ {"query_id": 859, "query": "Any reason to keep around my account with my old, 'big' bank?"}
157
+ {"query_id": 4306, "query": "How do currency markets work? What factors are behind why currencies go up or down?"}
158
+ {"query_id": 10710, "query": "Probablity of touching In the money vs expiring in the money for an american option"}
159
+ {"query_id": 6849, "query": "What do the points in a stock market index epresent?"}
160
+ {"query_id": 4681, "query": "How to fix Finance::Quote to pull quotes in GnuCash"}
161
+ {"query_id": 5410, "query": "Dealership made me the secondary owner to my own car"}
162
+ {"query_id": 5653, "query": "Steps and timing of the SEIS investment (in the UK)"}
163
+ {"query_id": 6862, "query": "Canada discount stock brokers: Interactive Brokers vs. Questrade?"}
164
+ {"query_id": 1297, "query": "Why aren't there solutions for electronic itemized receipt for retail in-store purchases?"}
165
+ {"query_id": 2264, "query": "Personal Tax Return software for Linux?"}
166
+ {"query_id": 2385, "query": "As director, can I invoice my self-owned company?"}
167
+ {"query_id": 2384, "query": "Tax: 1099 paper form"}
168
+ {"query_id": 3594, "query": "If I were to get into a life situation where I would not be able to make regular payments, do lenders typically provide options other than default?"}
169
+ {"query_id": 2383, "query": "Should I Purchase Health Insurance Through My S-Corp"}
170
+ {"query_id": 10601, "query": "Bitcoin Cost Basis Purchases"}
171
+ {"query_id": 10845, "query": "Rationale behind using 12, 26 and 9 to calculate MACD"}
172
+ {"query_id": 620, "query": "Is it wise to have plenty of current accounts in different banks?"}
173
+ {"query_id": 2498, "query": "How do I calculate tax liability on the turnover of a small vendor?"}
174
+ {"query_id": 3103, "query": "AVS Address Verification System of BOTH Credit and Debit Cards - WHERE, HOW?"}
175
+ {"query_id": 622, "query": "Accidentally opened a year term CD account, then realized I need the money sooner. What to do?"}
176
+ {"query_id": 864, "query": "Why use accounting software like Quickbooks instead of Excel spreadsheets?"}
177
+ {"query_id": 2376, "query": "Why do gas stations charge different amounts in the same local area?"}
178
+ {"query_id": 744, "query": "What options are available for a home loan with poor credit but a good rental history?"}
179
+ {"query_id": 4312, "query": "Is it true that 90% of investors lose their money?"}
180
+ {"query_id": 4433, "query": "When should you use an actively managed mutual fund in a 401k?"}
181
+ {"query_id": 503, "query": "Privacy preferences on creditworthiness data"}
182
+ {"query_id": 6612, "query": "If I have a lot of debt and the housing market is rising, should I rent and slowly pay off my debt or buy and roll the debt into a mortgage?"}
183
+ {"query_id": 504, "query": "Have plenty of cash flow but bad credit"}
184
+ {"query_id": 5402, "query": "Is it impossible to get a home loan with a poor credit history after a divorce?"}
185
+ {"query_id": 6611, "query": "How does Vanguard determine the optimal asset allocation for their Target Retirement Funds?"}
186
+ {"query_id": 7700, "query": "Should I re-allocate my portfolio now or let it balance out over time?"}
187
+ {"query_id": 988, "query": "Where should I invest my savings?"}
188
+ {"query_id": 4678, "query": "Finance, Cash or Lease?"}
189
+ {"query_id": 5646, "query": "Do I need multiple credit monitoring services?"}
190
+ {"query_id": 5888, "query": "Interest charges on balance transfer when purchases are involved"}
191
+ {"query_id": 7702, "query": "Bond ETFs vs actual bonds"}
192
+ {"query_id": 7823, "query": "Retirement Funds: Betterment vs Vanguard Life strategy vs Target Retirement"}
193
+ {"query_id": 7705, "query": "Why would I pick a specific ETF over an equivalent Mutual Fund?"}
194
+ {"query_id": 4571, "query": "HSBC Hong Kong's \u201cDeposit Plus\u201d Product: What is it, and what strategies to employ?"}
195
+ {"query_id": 5782, "query": "Pay off credit cards in one lump sum, or spread over a few months?"}
196
+ {"query_id": 5422, "query": "What are some good books for learning stocks, bonds, derivatives e.t.c for beginner with a math background?"}
197
+ {"query_id": 2154, "query": "What tax software automatically determines the best filing status, etc?"}
198
+ {"query_id": 2395, "query": "Freelance site with lowest commission fees?"}
199
+ {"query_id": 3480, "query": "Why is OkPay not allowed in the United States?"}
200
+ {"query_id": 750, "query": "Paid part of my state refund back last year; now must declare the initial amount as income?"}
201
+ {"query_id": 3115, "query": "How can I live outside of the rat race of American life with 300k?"}
202
+ {"query_id": 3357, "query": "Why big clients want the contractor to be incorporated before giving them work"}
203
+ {"query_id": 753, "query": "Taxes due for hobbyist Group Buy"}
204
+ {"query_id": 2388, "query": "Do financial advisors get better deals on mortgages?"}
205
+ {"query_id": 515, "query": "financial institution wants share member break down for single member LLC"}
206
+ {"query_id": 5534, "query": "How does \u201ctaking over payments\u201d work?"}
207
+ {"query_id": 6985, "query": "Bed and Breakfast, Same Day Capital Gains UK"}
208
+ {"query_id": 10497, "query": "Why would you elect to apply a refund to next year's tax bill?"}
209
+ {"query_id": 6625, "query": "What does a high theta mean for an option position?"}
210
+ {"query_id": 6746, "query": "What happens if stock purchased on margin plummets below what I have in the brokerage?"}
211
+ {"query_id": 6867, "query": "Will there always be somebody selling/buying in every stock?"}
212
+ {"query_id": 879, "query": "Capital improvement and depreciation in restaurant LLC"}
213
+ {"query_id": 4205, "query": "How and why does the exchange rate of a currency change almost everyday?"}
214
+ {"query_id": 4447, "query": "Should I always hold short term bonds till maturity?"}
215
+ {"query_id": 10136, "query": "How to minimise the risk of a reduction in purchase power in case of Brexit for money held in a bank account?"}
216
+ {"query_id": 6629, "query": "Tax treatment of a boxed trade?"}
217
+ {"query_id": 10137, "query": "F-1 student investing in foreign markets"}
218
+ {"query_id": 5790, "query": "FX losses on non-UK mortgage for UK property - tax deductable?"}
219
+ {"query_id": 4464, "query": "Are Australian mutual fund fees large compared to US?"}
220
+ {"query_id": 4102, "query": "How can I determine if my rate of return is \u201cgood\u201d for the market I am in?"}
221
+ {"query_id": 4465, "query": "How to donate to charity that will make a difference?"}
222
+ {"query_id": 1198, "query": "What are the consequences of IRS \u201creclassification\u201d on both employer and employee?"}
223
+ {"query_id": 3254, "query": "Why do people buy US dollars on the black market?"}
224
+ {"query_id": 1074, "query": "How common is \u201cpass-through\u201d health insurance?"}
225
+ {"query_id": 3490, "query": "Tax Witholding for Stock Sale"}
226
+ {"query_id": 3008, "query": "What are my chances at getting a mortgage with Terrible credit but High income"}
227
+ {"query_id": 3006, "query": "Strategies for putting away money for a child's future (college, etc.)?"}
228
+ {"query_id": 3369, "query": "Why should one only contribute up to the employer's match in a 401(k)?"}
229
+ {"query_id": 885, "query": "How long do credit cards keep working after you disappear?"}
230
+ {"query_id": 2399, "query": "Where do web sites get foreign exchange currency rate / quote information?"}
231
+ {"query_id": 3125, "query": "Claiming mileage allowances, what are the rules/guidelines?"}
232
+ {"query_id": 2398, "query": "Frustrated Landlord"}
233
+ {"query_id": 766, "query": "Will the ex-homeowner still owe money after a foreclosure?"}
234
+ {"query_id": 8934, "query": "Dividend yield for multiple years?"}
235
+ {"query_id": 4335, "query": "What is the US Fair Tax?"}
236
+ {"query_id": 6875, "query": "Where to find free Thailand stock recommendations and research?"}
237
+ {"query_id": 6635, "query": "Why don't share prices of a company rise every other Friday when the company buys shares for its own employees?"}
238
+ {"query_id": 529, "query": "Sole proprietorship or LLC?"}
239
+ {"query_id": 5427, "query": "How do auto-loan payments factor into taxes for cars that are solely used by dependent(s)?"}
240
+ {"query_id": 10267, "query": "How should I prepare for the next financial crisis?"}
241
+ {"query_id": 4339, "query": "What could happen to Detroit Municipal bonds because of Detroit's filing for bankruptcy?"}
242
+ {"query_id": 5549, "query": "Pros / cons of being more involved with IRA investments [duplicate]"}
243
+ {"query_id": 8937, "query": "\u201cIn-the-Money\u201d vs \u201cOut-of-the-Money\u201d Call Options"}
244
+ {"query_id": 6890, "query": "Where does the money go when I buy stocks?"}
245
+ {"query_id": 6891, "query": "What is the theory behind Rick Van Ness's risk calculation in the video about diversification?"}
246
+ {"query_id": 5683, "query": "What is the PEG ratio? How is the PEG ratio calculated? How is the PEG ratio useful for stock investing?"}
247
+ {"query_id": 6410, "query": "Will an ETF immediately reflect a reconstitution of underlying index"}
248
+ {"query_id": 8832, "query": "Is it possible to buy commodity ETFs (e.g. silver) through Questrade?"}
249
+ {"query_id": 4233, "query": "Are personal finance / money management classes taught in high school, anywhere?"}
250
+ {"query_id": 6896, "query": "Selling high, pay capital gains, re-purchase later"}
251
+ {"query_id": 7622, "query": "Best way to pay off debt?"}
252
+ {"query_id": 2296, "query": "How does a bank make money on an interest free secured loan?"}
253
+ {"query_id": 3264, "query": "Pros and Cons of Interest Only Loans"}
254
+ {"query_id": 1085, "query": "How do disputed debts work on credit reports?"}
255
+ {"query_id": 2051, "query": "Where to find the 5 or 10 year returns for a mutual fund?"}
256
+ {"query_id": 895, "query": "California tells me I didn't file documents for an LLC that isn't mine. What do I do?"}
257
+ {"query_id": 776, "query": "Can saving/investing 15% of your income starting age 25, likely make you a millionaire?"}
258
+ {"query_id": 3014, "query": "What investments are positively related to the housing market decline?"}
259
+ {"query_id": 4103, "query": "What causes US Treasury I bond fixed interest to increase?"}
260
+ {"query_id": 7734, "query": "Can PE ratio of stocks be compared to other investments?"}
261
+ {"query_id": 6644, "query": "How to know precisely when a SWIFT is issued by a bank?"}
262
+ {"query_id": 10596, "query": "Does a market maker sell (buy) at a bid or ask price?"}
263
+ {"query_id": 4105, "query": "As an investor what are side effects of Quantitative Easing in US and in EU?"}
264
+ {"query_id": 659, "query": "Buying from an aggressive salesperson"}
265
+ {"query_id": 6647, "query": "What is meant by \u201cpriced in\u201d?"}
266
+ {"query_id": 6525, "query": "Does it make sense to trade my GOOGL shares for GOOG and pocket the difference?"}
267
+ {"query_id": 8702, "query": "Why is early exercise generally not recommended for an in-the-money option?"}
268
+ {"query_id": 8947, "query": "Can a Roth IRA be used as a savings account?"}
269
+ {"query_id": 1090, "query": "Need a formula to determine monthly payments received at time t if I'm reinvesting my returns"}
270
+ {"query_id": 7992, "query": "What type of pension should I get?"}
271
+ {"query_id": 4484, "query": "Has the likelihood of getting a lower interest rate by calling & asking been reduced by recent credit card regulations?"}
272
+ {"query_id": 5331, "query": "Exercises of employee share options"}
273
+ {"query_id": 6420, "query": "Does the bid/ask concept exist in dealer markets?"}
274
+ {"query_id": 10482, "query": "Rollover into bond fund to do dollar cost averaging [duplicate]"}
275
+ {"query_id": 7512, "query": "understanding the process/payment of short sale dividends"}
276
+ {"query_id": 7633, "query": "Can a trade happen \u201cin between\u201d the bid and ask price?"}
277
+ {"query_id": 7754, "query": "Inverse Relationship between Volatility and Beta"}
278
+ {"query_id": 3033, "query": "Tax consequences of changing state residency?"}
279
+ {"query_id": 3394, "query": "What is the easiest way to back-test index funds and ETFs?"}
280
+ {"query_id": 2183, "query": "Why are there many small banks and more banks in the U.S.?"}
281
+ {"query_id": 2181, "query": "What are the risks & rewards of being a self-employed independent contractor / consultant vs. being a permanent employee?"}
282
+ {"query_id": 3149, "query": "Tips for insurance coverage for one-man-teams"}
283
+ {"query_id": 3148, "query": "Can a car company refuse to give me a copy of my contract or balance details?"}
284
+ {"query_id": 547, "query": "What percentage of my company should I have if I only put money?"}
285
+ {"query_id": 9925, "query": "What does Chapter 11 Bankruptcy mean to an investor holding shares of a Chapter 11 Company?"}
286
+ {"query_id": 4116, "query": "Would the effects of an anticipated default by a nation be mostly symbolic?"}
287
+ {"query_id": 549, "query": "Where to request ACH Direct DEBIT of funds from MY OWN personal bank account?"}
288
+ {"query_id": 7747, "query": "What happens to bonds values when interest rates rise? [duplicate]"}
289
+ {"query_id": 10122, "query": "Why diversify stocks/investments?"}
290
+ {"query_id": 5206, "query": "Is it a good idea to get an unsecured loan to pay off a credit card that won't lower a high rate?"}
291
+ {"query_id": 8834, "query": "Pros/Cons of Buying Discounted Company Stock"}
292
+ {"query_id": 10246, "query": "Understanding the T + 3 settlement days rule"}
293
+ {"query_id": 9808, "query": "Selling To Close"}
294
+ {"query_id": 9929, "query": "Investing in commodities, pros and cons?"}
295
+ {"query_id": 7509, "query": "Investment Portfolio Setup for beginner"}
296
+ {"query_id": 8959, "query": "How is the opening-day price of a stock decided?"}
297
+ {"query_id": 2070, "query": "Advantage of credit union or local community bank over larger nationwide banks such as BOA, Chase, etc.?"}
298
+ {"query_id": 7880, "query": "Are there index tracking funds that avoid the \u201cbuy high - sell low\u201d problem?"}
299
+ {"query_id": 8970, "query": "What's the difference, if any, between stock appreciation and compound interest?"}
300
+ {"query_id": 5460, "query": "Paying off a loan with a loan to get a better interest rate"}
301
+ {"query_id": 6792, "query": "Where to find the full book of outstanding bids/asks for a stock?"}
302
+ {"query_id": 4011, "query": "How can I deal with a spouse who compulsively spends?"}
303
+ {"query_id": 8974, "query": "As a 22-year-old, how risky should I be with my 401(k) investments?"}
304
+ {"query_id": 5343, "query": "\u201cInternational credit report\u201d for French nationals?"}
305
+ {"query_id": 5464, "query": "Resources on Buying Rental Properties"}
306
+ {"query_id": 5585, "query": "Is there any site you can find out about the 'bonus features' of credit cards?"}
307
+ {"query_id": 9701, "query": "How to bet against the London housing market?"}
308
+ {"query_id": 6554, "query": "Mutual fund value went down, shares went up, no action taken by me"}
309
+ {"query_id": 2076, "query": "Can vet / veterinary bills be considered deductions (tax-deductible) for Income Tax purposes [Canada]?"}
310
+ {"query_id": 2075, "query": "Are stories of turning a few thousands into millions by trading stocks real?"}
311
+ {"query_id": 672, "query": "Credit and Debit"}
312
+ {"query_id": 3039, "query": "Can increasing my tax withholding from my full-time job cover FICA taxes for my freelance work?"}
313
+ {"query_id": 4125, "query": "Alternative means of salary for my employees"}
314
+ {"query_id": 559, "query": "Challenged an apparently bogus credit card charge, what happens now?"}
315
+ {"query_id": 6787, "query": "Would it make sense to sell a stock, then repurchase it for tax purposes?"}
316
+ {"query_id": 7513, "query": "Where are Bogleheadian World ETFs or Index funds?"}
317
+ {"query_id": 7876, "query": "Why do stocks split?"}
318
+ {"query_id": 7758, "query": "Bid/ask spreads for index funds"}
319
+ {"query_id": 7879, "query": "Any Tips on How to Get the Highest Returns Within 4 Months by Investing in Stocks?"}
320
+ {"query_id": 4007, "query": "What is a reasonable salary for the owner and sole member of a small S-Corp?"}
321
+ {"query_id": 6668, "query": "Approximate IT company valuation (to proximate stock options value)"}
322
+ {"query_id": 10213, "query": "Looking for good investment vehicle for seasonal work and savings"}
323
+ {"query_id": 5592, "query": "Are \u201chard money loans\u201d meant only for real estate?"}
324
+ {"query_id": 8982, "query": "Are Exchange-Traded Funds (ETFs) less safe than regular mutual funds?"}
325
+ {"query_id": 6441, "query": "Trading with Settled / Unsettled Funds (T+3)"}
326
+ {"query_id": 6562, "query": "Cheapest way to \u201cwire\u201d money in an Australian bank account to a person in England, while I'm in Laos?"}
327
+ {"query_id": 6683, "query": "Who are the sellers for the new public stocks?"}
328
+ {"query_id": 4142, "query": "Relation between inflation rates and interest rates"}
329
+ {"query_id": 5231, "query": "Where to find CSV or JSON data for publicly traded companies listed with their IPO date?"}
330
+ {"query_id": 4265, "query": "Does it make any sense to directly contribute to reducing the US national debt?"}
331
+ {"query_id": 7534, "query": "Can you explain why it's better to invest now rather than waiting for the market to dip?"}
332
+ {"query_id": 5356, "query": "Historical stock prices: Where to find free / low cost data for offline analysis?"}
333
+ {"query_id": 7533, "query": "Investing tax (savings)"}
334
+ {"query_id": 2088, "query": "How would I go about selling the stock of a privately held company?"}
335
+ {"query_id": 3177, "query": "Vanguard ETF vs mutual fund"}
336
+ {"query_id": 3051, "query": "What items are exempt from the VAT? [U.K.]"}
337
+ {"query_id": 10109, "query": "Why does Charles Schwab have a Mandatory Settlement Period after selling stocks?"}
338
+ {"query_id": 684, "query": "Beyond RRSP deductions, how does a high income earner save on taxes?"}
339
+ {"query_id": 3049, "query": "How to calculate my estimated taxes. 1099 MISC + Self Employment"}
340
+ {"query_id": 687, "query": "Online tool to connect to my bank account and tell me what I spend in different categories?"}
341
+ {"query_id": 689, "query": "Receive credit card payment sending my customer details to a credit card processing company?"}
342
+ {"query_id": 10462, "query": "Is it okay to be married, 30 years old and have no retirement?"}
343
+ {"query_id": 4499, "query": "Is investing exlusively in a small-cap index fund a wise investment?"}
344
+ {"query_id": 5347, "query": "car loan life insurance"}
345
+ {"query_id": 8855, "query": "How do i get into investing stocks [duplicate]"}
346
+ {"query_id": 5228, "query": "How does the bank/IRS know whether a bank transfer over $14k is a gift or loan repayment?"}
347
+ {"query_id": 6679, "query": "Specifically when do options expire?"}
348
+ {"query_id": 9824, "query": "Where can end-of-day data be downloaded for corporate bonds?"}
349
+ {"query_id": 4019, "query": "How and Should I Invest (As a college 18 year old with minimal living expenses)?"}
350
+ {"query_id": 7529, "query": "Does the expense ratio of a fund-of-funds include the expense ratios of its holdings?"}
351
+ {"query_id": 9961, "query": "Employer rollover from 403b to 401k?"}
352
+ {"query_id": 4031, "query": "28 years old and just inherited large amount of money and real estate - unsure what to do with it"}
353
+ {"query_id": 4394, "query": "Transfer $50k to another person's account (in California, USA)"}
354
+ {"query_id": 5241, "query": "Mortgage vs. Cash for U.S. home buy now"}
355
+ {"query_id": 4153, "query": "How do I invest in emerging markets"}
356
+ {"query_id": 8512, "query": "Is it possible to transfer stock I already own into my Roth IRA without having to sell the stock?"}
357
+ {"query_id": 8513, "query": "Buy on dip when earnings fail?"}
358
+ {"query_id": 5125, "query": "Regarding Australian CBS takeover of TEN"}
359
+ {"query_id": 8632, "query": "Is it best to exercise options shares when they vest, or wait"}
360
+ {"query_id": 8874, "query": "When can you adjust for (and re-allow) a disallowed year-end (December) wash-sale loss?"}
361
+ {"query_id": 3189, "query": "Diversify my retirement investments with a Roth IRA"}
362
+ {"query_id": 3067, "query": "Should I make extra payments to my under water mortgage or increase my savings?"}
363
+ {"query_id": 3186, "query": "United States Treasury Not Endorsing Checks"}
364
+ {"query_id": 570, "query": "Employer options when setting up 401k for employees"}
365
+ {"query_id": 691, "query": "How to categorize credit card payments?"}
366
+ {"query_id": 10558, "query": "Investment strategy for 401k when rolling over soon"}
367
+ {"query_id": 699, "query": "Prepaid Rent (Accrual Based Accounting)"}
368
+ {"query_id": 3179, "query": "Calculation, timing, and taxes related to profit distribution of an S-corp?"}
369
+ {"query_id": 10792, "query": "How can I calculate a \u201crunning\u201d return using XIRR in a spreadsheet?"}
370
+ {"query_id": 10674, "query": "How to sell a stock in a crashing market?"}
371
+ {"query_id": 8507, "query": "When to sell a stock?"}
372
+ {"query_id": 6221, "query": "To pay off a student loan, should I save up a lump sum payoff payment or pay extra each month?"}
373
+ {"query_id": 7431, "query": "Pay off mortgage or invest in high value saving account"}
374
+ {"query_id": 5374, "query": "What were the main causes of the spike and drop of DRYS's stock price?"}
375
+ {"query_id": 4286, "query": "Given advice \u201cbuy term insurance and invest the rest\u201d, how should one \u201cinvest the rest\u201d?"}
376
+ {"query_id": 5254, "query": "How do I calculate the quarterly returns of a stock index?"}
377
+ {"query_id": 9733, "query": "Due Diligence - Dilution?"}
378
+ {"query_id": 5134, "query": "Why does Yahoo Finance's data for a Vanguard fund's dividend per share not match the info from Vanguard?"}
379
+ {"query_id": 5255, "query": "Thrift Saving Plan (TSP) Share Price Charts"}
380
+ {"query_id": 7311, "query": "Finance, Social Capital IPOA.U"}
381
+ {"query_id": 7674, "query": "Choosing the limit when making a limit order?"}
382
+ {"query_id": 6467, "query": "Advice on strategy for when to sell"}
383
+ {"query_id": 4047, "query": "Does doing your \u201cresearch\u201d/\u201chomework\u201d on stocks make any sense?"}
384
+ {"query_id": 4289, "query": "Does the currency exchange rate contain any additional information at all?"}
385
+ {"query_id": 10447, "query": "Is there an advantage to a traditional but non-deductable IRA over a taxable account? [duplicate]"}
386
+ {"query_id": 585, "query": "Following an investment guru a good idea?"}
387
+ {"query_id": 104, "query": "Investing/business with other people's money: How does it work?"}
388
+ {"query_id": 588, "query": "Is there a reason to buy a 0% yield bond?"}
389
+ {"query_id": 106, "query": "What approaches are there for pricing a small business?"}
390
+ {"query_id": 4037, "query": "How separate individual expenses from family expenses in Gnucash?"}
391
+ {"query_id": 5369, "query": "Paying for things on credit and immediately paying them off: any help for credit rating?"}
392
+ {"query_id": 109, "query": "How to account for money earned and spent prior to establishing business bank accounts?"}
393
+ {"query_id": 8635, "query": "Is there any flaw in this investment scheme?"}
394
+ {"query_id": 6219, "query": "Are there Investable Real Estate Indices which track Geographical Locations?"}
395
+ {"query_id": 5021, "query": "Is there a more flexible stock chart service, e.g. permitting choice of colours when comparing multiple stocks?"}
396
+ {"query_id": 5264, "query": "Does a company's stock price give any indication to or affect their revenue?"}
397
+ {"query_id": 6110, "query": "Why does short selling require borrowing?"}
398
+ {"query_id": 7441, "query": "Since many brokers disallow investors from shorting sub-$5 stocks, why don't all companies split their stock until it is sub-$5"}
399
+ {"query_id": 8532, "query": "What do these options trading terms mean?"}
400
+ {"query_id": 4179, "query": "Why could the serious financial woes of some EU member states lead to the end of the Euro?"}
401
+ {"query_id": 7445, "query": "IS it the wrong time to get into the equity market immediately after large gains?"}
402
+ {"query_id": 3085, "query": "How long can I convert 401(k) to Roth 401(k)?"}
403
+ {"query_id": 5380, "query": "Can somebody explain \u201cleveraged debt investment positions\u201d and \u201cexposures\u201d in this context for me, please?"}
404
+ {"query_id": 594, "query": "Should a retail trader bother about reading SEC filings"}
405
+ {"query_id": 475, "query": "Do I need a new EIN since I am hiring employees for my LLC?"}
406
+ {"query_id": 9737, "query": "Long(100%)-Short(-100%) investment explanation"}
407
+ {"query_id": 9979, "query": "What is the best way to invest in gold as a hedge against inflation without having to hold physical gold?"}
408
+ {"query_id": 6468, "query": "Why deep in the money options have very low liquidity"}
409
+ {"query_id": 9617, "query": "What differentiates index funds and ETFs?"}
410
+ {"query_id": 9735, "query": "What are \u201cequity assets\u201d?"}
411
+ {"query_id": 5030, "query": "Why pay for end-of-day historical prices?"}
412
+ {"query_id": 3091, "query": "Am I considered in debt if I pay a mortgage?"}
413
+ {"query_id": 6122, "query": "Better to rent condo to daughter or put her on title?"}
414
+ {"query_id": 6121, "query": "What are my best options if I don't have a lot of credit lines for housing loans?"}
415
+ {"query_id": 9871, "query": "What should I do with the 50k I have sitting in a European bank?"}
416
+ {"query_id": 15, "query": "Can I send a money order from USPS as a business?"}
417
+ {"query_id": 5155, "query": "For insurance, why should you refuse $4,000/year for only 10 years and prefer $500/year indefinitely?"}
418
+ {"query_id": 4188, "query": "Why is the stock market rising after Trump's attack on the TPP?"}
419
+ {"query_id": 6002, "query": "15 year mortgage vs 30 year paid off in 15"}
420
+ {"query_id": 6005, "query": "Why might it be advisable to keep student debt vs. paying it off quickly?"}
421
+ {"query_id": 18, "query": "1 EIN doing business under multiple business names"}
422
+ {"query_id": 6004, "query": "Put-Call parity - what is the difference between the two representations?"}
423
+ {"query_id": 7456, "query": "What is market order's relation to bid ask spread?"}
424
+ {"query_id": 8544, "query": "Strategies to recover from a bad short-term call options purchase where the underlying dropped instead?"}
425
+ {"query_id": 9633, "query": "Video recommendation for stock market education"}
426
+ {"query_id": 5150, "query": "What credit card information are offline US merchants allowed to collect for purposes other than the transaction?"}
427
+ {"query_id": 5271, "query": "Why are auto leases stubbornly strict about visa status and how to work around that?"}
428
+ {"query_id": 7206, "query": "Who Bought A Large Number Of Shares?"}
429
+ {"query_id": 7448, "query": "If an index goes up because an underlying company issues more shares, what happens to the ETF"}
430
+ {"query_id": 6479, "query": "Trading on exchanges or via brokerage companies?"}
431
+ {"query_id": 7205, "query": "Is it possible to see option prices from the past?"}
432
+ {"query_id": 7326, "query": "Do brokers execute every trade on the exchange?"}
433
+ {"query_id": 8539, "query": "Can the risk of investing in an asset be different for different investors?"}
434
+ {"query_id": 7329, "query": "Does Implied Volatilty factor in all known future events?"}
435
+ {"query_id": 8537, "query": "What is an \u201cOptions Account\u201d?"}
436
+ {"query_id": 8779, "query": "How does a defined contribution plan work"}
437
+ {"query_id": 6131, "query": "Is it ever a good idea to close credit cards?"}
438
+ {"query_id": 6252, "query": "Is this mortgage advice good, or is it hooey?"}
439
+ {"query_id": 8795, "query": "Stock exchanges using open outcry"}
440
+ {"query_id": 6133, "query": "What happens to all of the options when they expire?"}
441
+ {"query_id": 7221, "query": "How Technical Analysts react to non-market hours effects"}
442
+ {"query_id": 7463, "query": "Pros/cons of borrowing money using a mortgage loan and investing it in a low-fee index fund?"}
443
+ {"query_id": 9882, "query": "Money-market or cash-type ETFs for foreigners with U.S brokerage account"}
444
+ {"query_id": 26, "query": "Applying for and receiving business credit"}
445
+ {"query_id": 5045, "query": "Why are we taxed on revenue and companies on profit?"}
446
+ {"query_id": 7345, "query": "What do these numbers mean? (futures)"}
447
+ {"query_id": 9403, "query": "Abundance of Cash - What should I do?"}
448
+ {"query_id": 7344, "query": "How is the Dow divisor calculated?"}
449
+ {"query_id": 9646, "query": "Do common stocks and preferred stocks have any differences in terms of percentage of the company per unit they represent?"}
450
+ {"query_id": 7105, "query": "What is the difference between fixed-income duration and equity duration?"}
451
+ {"query_id": 9643, "query": "Is there any public data available to determine an ETF's holdings?"}
452
+ {"query_id": 7467, "query": "Stocks are traded on secondary markets?"}
453
+ {"query_id": 9644, "query": "If early exercise is a bad idea, why American option is more expensive than European [duplicate]"}
454
+ {"query_id": 4071, "query": "If our economy crashes, and cash is worthless, should i buy gold or silver"}
455
+ {"query_id": 6009, "query": "Why can low volume move a stock price drastically?"}
456
+ {"query_id": 8789, "query": "What does \u201cprofits to the shareholders jumped to 15 cents a share\u201d mean?"}
457
+ {"query_id": 1915, "query": "Should I pay a company who failed to collect VAT from me over 6 months ago?"}
458
+ {"query_id": 7218, "query": "What margin is required to initiate and maintain a short sale"}
459
+ {"query_id": 4084, "query": "What industries soar when oil prices go up?"}
460
+ {"query_id": 6142, "query": "How does stabilization work during an IPO?"}
461
+ {"query_id": 7594, "query": "Converting annual interbank rates into monthly rates"}
462
+ {"query_id": 34, "query": "401k Transfer After Business Closure"}
463
+ {"query_id": 6262, "query": "Help required on estimating SSA benefit amounts"}
464
+ {"query_id": 5054, "query": "How to stress test an investment plan?"}
465
+ {"query_id": 9771, "query": "Is there any emprical research done on 'adding to a loser'"}
466
+ {"query_id": 6146, "query": "Lost credit card replaced with new card and new numbers. Credit score affected?"}
467
+ {"query_id": 5178, "query": "Formula that predicts whether one is better off investing or paying down debt"}
468
+ {"query_id": 11054, "query": "Short Term Capital Gains tax vs. IRA Withdrawal Tax w/o Quarterly Est. Taxes"}
469
+ {"query_id": 8202, "query": "What accounted for DXJR's huge drop in stock price?"}
470
+ {"query_id": 7590, "query": "Why are US target retirement funds weighted so heavily towards US stocks?"}
471
+ {"query_id": 7592, "query": "few question about debit credit and liabilities"}
472
+ {"query_id": 5172, "query": "does interest payment on loan stay the same if I pay early"}
473
+ {"query_id": 1920, "query": "Clarification on student expenses - To file the tax for the next year"}
474
+ {"query_id": 7109, "query": "How do I analyse moving averages?"}
475
+ {"query_id": 42, "query": "What are the ins/outs of writing equipment purchases off as business expenses in a home based business?"}
476
+ {"query_id": 6395, "query": "Option settlement for calendar spreads"}
477
+ {"query_id": 7484, "query": "Why sometimes payable date is BEFORE the ex-dividend date?"}
478
+ {"query_id": 8332, "query": "Why do put option prices go higher when the underlying stock tanks (drops)?"}
479
+ {"query_id": 5064, "query": "How much should a graduate student attempt to save?"}
480
+ {"query_id": 5185, "query": "Invest in low cost small cap index funds when saving towards retirement?"}
481
+ {"query_id": 5067, "query": "LLC: Where should the funds for initial startup costs come from?"}
482
+ {"query_id": 6278, "query": "What is the best way to help my dad consolidate his credit card debt at a lower rate?"}
483
+ {"query_id": 7124, "query": "How come we can find stocks with a Price-to-Book ratio less than 1?"}
484
+ {"query_id": 9668, "query": "Do stock option prices predicate the underlying stock's movement?"}
485
+ {"query_id": 8456, "query": "What typically happens to unvested stock during an acquisition?"}
486
+ {"query_id": 5061, "query": "What fiscal scrutiny can be expected from IRS in early retirement?"}
487
+ {"query_id": 1819, "query": "Found an old un-cashed paycheck. How long is it good for? What to do if it's expired?"}
488
+ {"query_id": 1815, "query": "Rules for SEP contributions in an LLC?"}
489
+ {"query_id": 2903, "query": "How should I file my taxes as a contractor?"}
490
+ {"query_id": 1812, "query": "splitting a joint mortgage - one owner in home"}
491
+ {"query_id": 1933, "query": "UK sole trader who often buys products/services on behalf of clients \u2013 do I deduct from declared income or claim as allowable expenses?"}
492
+ {"query_id": 5196, "query": "I might use a credit card convenience check. What should I consider?"}
493
+ {"query_id": 56, "query": "Can a entrepreneur hire a self-employed business owner?"}
494
+ {"query_id": 8102, "query": "When do I sell a stock that I hold as a long-term position?"}
495
+ {"query_id": 10183, "query": "How are various types of income taxed differently in the USA?"}
496
+ {"query_id": 7377, "query": "What type of returns Vanguard is quoting?"}
497
+ {"query_id": 7017, "query": "Basic Algorithmic Trading Strategy"}
498
+ {"query_id": 9556, "query": "How does pre-market trading work?"}
499
+ {"query_id": 6041, "query": "Most effective Fundamental Analysis indicators for market entry"}
500
+ {"query_id": 9548, "query": "How do I research, analyze, and choose the right mutual fund for a roth ira?"}
501
+ {"query_id": 1948, "query": "Which colors can one use to fill out a check in the US?"}
502
+ {"query_id": 1826, "query": "Is the contribution towards Employment Insurance (EI) wasted if I never get fired, or are my premiums refunded?"}
503
+ {"query_id": 1824, "query": "Is there a way to open a U.S. bank account for my LLC remotely?"}
504
+ {"query_id": 11039, "query": "Pay off credit card debt or earn employer 401(k) match?"}
505
+ {"query_id": 5085, "query": "What is vested stock and yearly dividends?"}
506
+ {"query_id": 8475, "query": "Why I cannot find a \u201cPure Cash\u201d option in 401k investments?"}
507
+ {"query_id": 5086, "query": "Mortgage loan implications when tearing down existing house and building new one?"}
508
+ {"query_id": 9565, "query": "What are the tax benefits of dividends vs selling stock"}
509
+ {"query_id": 68, "query": "Intentions of Deductible Amount for Small Business"}
510
+ {"query_id": 7145, "query": "Are there \u201cbuy and hold\u201d passively managed funds?"}
511
+ {"query_id": 8116, "query": "A-B-C Class Shares: What's the difference?"}
512
+ {"query_id": 10152, "query": "What does a high operating margin but a small but positive ROE imply about a company?"}
513
+ {"query_id": 7269, "query": "How do I track investment performance in Quicken across rollovers?"}
514
+ {"query_id": 5080, "query": "Is there a standard or best practice way to handle money from an expiring UTMA account?"}
515
+ {"query_id": 8592, "query": "Tax implications of exercising ISOs and using proceeds to exercise more ISOs"}
516
+ {"query_id": 8230, "query": "Why would this kind of penny stock increase so much in value?"}
517
+ {"query_id": 8351, "query": "What happens when a calendar spread is assigned in a non-margin account?"}
518
+ {"query_id": 5083, "query": "Co-signer deceased"}
519
+ {"query_id": 7141, "query": "Do investors go long option contracts when they cannot cover the exercise of the options?"}
520
+ {"query_id": 2801, "query": "If I deposit money as cash does it count as direct deposit?"}
521
+ {"query_id": 1832, "query": "Warren Buffett and Charles Munger advice for small investors?"}
522
+ {"query_id": 10034, "query": "Tax implications of holding EWU (or other such UK ETFs) as a US citizen?"}
523
+ {"query_id": 10039, "query": "Do individual investors use Google to obtain stock quotes?"}
524
+ {"query_id": 2923, "query": "Should I give to charity by check or credit card?"}
525
+ {"query_id": 8002, "query": "What is the tax treatment of scrip dividends in the UK?"}
526
+ {"query_id": 8121, "query": "Can I calculate stock value with Williams%R if I know the last set?"}
527
+ {"query_id": 9332, "query": "What can I do with a physical stock certificate for a now-mutual company?"}
528
+ {"query_id": 7279, "query": "If I invest in securities denominated in a foreign currency, should I hedge my currency risk?"}
529
+ {"query_id": 8005, "query": "Difference between Vanguard sp500 UCITS and Vanguard sp500"}
530
+ {"query_id": 8247, "query": "Tax on Stocks or ETF's"}
531
+ {"query_id": 5090, "query": "Should I take a student loan to pursue my undergraduate studies in France?"}
532
+ {"query_id": 3909, "query": "How to rescue my money from negative interest?"}
533
+ {"query_id": 9329, "query": "Interactive Brokers: IOPTS and list of structured products"}
534
+ {"query_id": 8013, "query": "Frequency of investments to maximise returns (and minimise fees)"}
535
+ {"query_id": 89, "query": "How can I deposit a check made out to my business into my personal account?"}
536
+ {"query_id": 6199, "query": "How can all these countries owe so much money? Why & where did they borrow it from?"}
537
+ {"query_id": 8017, "query": "Purchasing ETFs when (pretty much) everything else is maxed out"}
538
+ {"query_id": 8378, "query": "Should I wait a few days to sell ESPP Stock?"}
539
+ {"query_id": 10808, "query": "What are a few sites that make it easy to invest in high interest rate mutual funds?"}
540
+ {"query_id": 10809, "query": "Definitions of leverage and of leverage factor"}
541
+ {"query_id": 10932, "query": "Transferring money from 403B to 401K?"}
542
+ {"query_id": 10812, "query": "Is is possible to dispute IRS underpayment penalties?"}
543
+ {"query_id": 90, "query": "Filing personal with 1099s versus business s-corp?"}
544
+ {"query_id": 94, "query": "Using credit card points to pay for tax deductible business expenses"}
545
+ {"query_id": 1736, "query": "How can people have such high credit card debts?"}
546
+ {"query_id": 98, "query": "How can I make $250,000.00 from trading/investing/business within 5 years?"}
547
+ {"query_id": 9598, "query": "How do index funds actually work?"}
548
+ {"query_id": 7178, "query": "Should an ADR that is being delisted be sold off?"}
549
+ {"query_id": 9115, "query": "Why does the calculation for percentage profit vary based on whether a position is short vs. long?"}
550
+ {"query_id": 6080, "query": "Is ScholarShare a legitimate entity for a 529 plan in California?"}
551
+ {"query_id": 7295, "query": "Selling non-dividend for dividend stocks"}
552
+ {"query_id": 2713, "query": "Physical Checks - Mailing"}
553
+ {"query_id": 10827, "query": "How much should I be contributing to my 401k given my employer's contribution?"}
554
+ {"query_id": 9108, "query": "Starting an investment portfolio with Rs 5,000/-"}
555
+ {"query_id": 1748, "query": "How high should I set my KickStarter funding goal in order to have $35,000 left over?"}
556
+ {"query_id": 3801, "query": "Can a bunch of wealthy people force Facebook to go public?"}
557
+ {"query_id": 9245, "query": "Stock Options for a company bought out in cash and stock"}
558
+ {"query_id": 9487, "query": "Is a public company allowed to issue new shares below market price without consulting shareholders?"}
559
+ {"query_id": 7068, "query": "Making money through CFD"}
560
+ {"query_id": 8275, "query": "Buy/Selling prices at the stock exchange represent someone Selling/Buying at that price?"}
561
+ {"query_id": 7188, "query": "What explains the enormous increase in gold price in the early 21st century?"}
562
+ {"query_id": 8034, "query": "What is the average cost of a portfolio on a trading site?"}
563
+ {"query_id": 9126, "query": "Short an option - random assignment?"}
564
+ {"query_id": 8271, "query": "Income in zero-interest environment"}
565
+ {"query_id": 9481, "query": "What are reasonable administrative fees for an IRA?"}
566
+ {"query_id": 1877, "query": "As a Sole Proprietor, will \u201cemployer\u201d Solo 401k contributions count towards gross income?"}
567
+ {"query_id": 2724, "query": "How do you determine the dividend payout date for Mutual Funds?"}
568
+ {"query_id": 10912, "query": "Forex independent investments"}
569
+ {"query_id": 2964, "query": "Unmarried Couple Splitting up with Joint Ownership of Home"}
570
+ {"query_id": 1994, "query": "Does the IRS reprieve those who have to commute for work?"}
571
+ {"query_id": 1871, "query": "Is there any US bank that does not charge for incoming wire transfers?"}
572
+ {"query_id": 3932, "query": "How do historically low interest rates affect real estate prices?"}
573
+ {"query_id": 2968, "query": "Should I prioritize retirement savings inside of my HSA?"}
574
+ {"query_id": 3934, "query": "Should market based health insurance premiums be factored into 6 months emergency fund savings?"}
575
+ {"query_id": 7071, "query": "ESPP strategy - Sell right away or hold?"}
576
+ {"query_id": 8040, "query": "Best way to make most of savings with ISA and Offset mortgage"}
577
+ {"query_id": 2856, "query": "How can I cash out a check internationally?"}
578
+ {"query_id": 3829, "query": "Are all VISA cards connected with bank accounts?"}
579
+ {"query_id": 3822, "query": "How to change a large quantity of U.S. dollars into Euros?"}
580
+ {"query_id": 2737, "query": "What to do with an old building to get money"}
581
+ {"query_id": 1889, "query": "Reporting financial gains from my online store"}
582
+ {"query_id": 2857, "query": "I have around 60K $. Thinking about investing in Oil, how to proceed?"}
583
+ {"query_id": 7080, "query": "Wash sale rule with dividend reinvestment"}
584
+ {"query_id": 9381, "query": "Trade? Buy and hold? Or both?"}
585
+ {"query_id": 8296, "query": "Can the beta of a stock be used as a lagging indicator for the stock w.r.t the market"}
586
+ {"query_id": 9385, "query": "Meaning of reinvestment"}
587
+ {"query_id": 1415, "query": "I am not VAT registered. Do I need to buy from my supplier with excl VAT prices or incl VAT?"}
588
+ {"query_id": 4804, "query": "How do financial services aimed at women differ from conventional services?"}
589
+ {"query_id": 3837, "query": "Opening a Roth IRA account, what is the fee structure for Vanguard, Scottrade and TIAA-CREF"}
590
+ {"query_id": 1530, "query": "What is the proper way to report additional income for taxes (specifically, Android development)?"}
591
+ {"query_id": 3830, "query": "US citizen transferring money to Indian fiance to buy property"}
592
+ {"query_id": 4920, "query": "Does financing a portfolio on margin affect the variance of a portfolio?"}
593
+ {"query_id": 2749, "query": "Is it possible to create a self-managed superannuation fund to act as a mortage offset? (Australia)"}
594
+ {"query_id": 1416, "query": "US resident with Canadian income via T4A-NR"}
595
+ {"query_id": 2747, "query": "What evidence do I need to declare tutoring income on my income tax?"}
596
+ {"query_id": 7098, "query": "Can another tax loss be used to offset capital gains taxes? How does it work?"}
597
+ {"query_id": 9391, "query": "Should I replace bonds in a passive investment strategy"}
598
+ {"query_id": 1670, "query": "Investing in hemp producers in advance of possible legalization in Canada?"}
599
+ {"query_id": 2880, "query": "Can I transfer my investment property into a SMSF?"}
600
+ {"query_id": 9275, "query": "Do I have to pay a capital gains tax if I rebuy the same stock within 30 days?"}
601
+ {"query_id": 7096, "query": "What's the formula for profits and losses when I delta hedge?"}
602
+ {"query_id": 2513, "query": "How does revenue shared with someone else go into my tax return in Canada?"}
603
+ {"query_id": 5906, "query": "0% APR first 12 months on new credit card. Can I exceed that 30% rule of thumb and not hurt my credit score?"}
604
+ {"query_id": 2994, "query": "Work on the side for my wife's company"}
605
+ {"query_id": 1783, "query": "Freelancing Tax implication"}
606
+ {"query_id": 1309, "query": "Why does FlagStar Bank harass you about payments within grace period?"}
607
+ {"query_id": 3724, "query": "Should you always max out contributions to your 401k?"}
608
+ {"query_id": 4813, "query": "Dealer Financing Fell Through on vehicle purchase: Scam?"}
609
+ {"query_id": 1306, "query": "I made an investment with a company that contacted me, was it safe?"}
610
+ {"query_id": 2516, "query": "Which banks have cash-deposit machines in Germany?"}
611
+ {"query_id": 5903, "query": "Fees aside, what factors could account for performance differences between U.S. large-cap index ETFs?"}
612
+ {"query_id": 8079, "query": "Growth rate plus dividend yieid total?"}
613
+ {"query_id": 2891, "query": "May I claim money earned but not received in 2012"}
614
+ {"query_id": 8072, "query": "What does it mean \u201csell on ask\u201d , \u201csell on bid\u201d in stocks?"}
615
+ {"query_id": 9164, "query": "Bonds vs equities: crash theory"}
616
+ {"query_id": 3615, "query": "My previous and current employers both use Fidelity for 401(k). Does it make sense to rollover?"}
617
+ {"query_id": 3859, "query": "Buying an investment property in Australia - what are the advantages and disadvantages of building a house vs buying an existing one?"}
618
+ {"query_id": 4827, "query": "Are all financial advisors compensated in the same way?"}
619
+ {"query_id": 1676, "query": "W2 vs 1099 Employee status"}
620
+ {"query_id": 3612, "query": "How can I buy and sell the same stock on the same day?"}
621
+ {"query_id": 2885, "query": "Merits of buying apartment houses and renting them"}
622
+ {"query_id": 2400, "query": "Will I be paid dividends if I own shares?"}
623
+ {"query_id": 1310, "query": "Is is possible to take a mortgage using Bitcoin as collateral?"}
624
+ {"query_id": 11088, "query": "Am I required to have a lawyer create / oversee creation of my will?"}
625
+ {"query_id": 4700, "query": "Better to get loan from finance company or bank considering the drop of credit score?"}
626
+ {"query_id": 4942, "query": "find stock composition of a publicly traded fund"}
627
+ {"query_id": 4823, "query": "Close to retirement & we may move within 7 years. Should we re-finance our mortgage, or not?"}
628
+ {"query_id": 2407, "query": "How long to wait after getting a mortgage to increase my credit limit?"}
629
+ {"query_id": 3735, "query": "Shorting Stocks And Margin Account Minimum"}
630
+ {"query_id": 2648, "query": "How does unemployment insurance work?"}
631
+ {"query_id": 4946, "query": "Something looks off about Mitsubishi financial data"}
632
+ {"query_id": 1451, "query": "How do you find an ethical, honest independent insurance broker in Canada?"}
633
+ {"query_id": 9291, "query": "Are there any consequences for investing in Vanguard's Admiral Shares funds instead of ETF's in a Roth IRA?"}
634
+ {"query_id": 9296, "query": "Why would Two ETFs tracking Identical Indexes Produce different Returns?"}
635
+ {"query_id": 9174, "query": "Which U.S. online discount broker is the best value for money?"}
636
+ {"query_id": 2416, "query": "Why should a company go public?"}
637
+ {"query_id": 4837, "query": "When applying for a mortgage, can it also cover outstanding debts?"}
638
+ {"query_id": 3625, "query": "What should I do with my paper financial documents?"}
639
+ {"query_id": 3503, "query": "Is there any instance where less leverage will get you a better return on a rental property?"}
640
+ {"query_id": 5808, "query": "How do you calculate return on investment for a share of stock?"}
641
+ {"query_id": 1322, "query": "Is this follow-up after a car crash a potential scam?"}
642
+ {"query_id": 2895, "query": "Where should a young student put their money?"}
643
+ {"query_id": 3500, "query": "Why invest in becoming a landlord?"}
644
+ {"query_id": 1321, "query": "Are social media accounts (e.g. YouTube, Twitter, Instagram, etc.) considered assets?"}
645
+ {"query_id": 1441, "query": "What's the difference between Market Cap and NAV?"}
646
+ {"query_id": 4955, "query": "How to calculate the value of a bond that is priced to yield X%"}
647
+ {"query_id": 904, "query": "How do I set up Quickbooks for a small property rental company that holds its properties in separate LLC's?"}
648
+ {"query_id": 4714, "query": "Personal finance app where I can mark transactions as \u201creviewed\u201d?"}
hotpotqa.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "5a8e3dde554299068b959e7f", "query": "What country of origin does Michael Platt Jr. and Marsha Blackburn have in common?", "dataset": "hotpotqa"}
2
+ {"query_id": "5ab5527e554299494045ef80", "query": "Who directed the 1998 movie that had a supporting role played by Kim Flowers?", "dataset": "hotpotqa"}
3
+ {"query_id": "5a714a4f5542994082a3e77c", "query": "Which dog breed nearly went extinct in the 20th century, the Sloughi or the Saint-Usuge Spaniel?", "dataset": "hotpotqa"}
4
+ {"query_id": "5a77518255429972597f14f9", "query": "Which dog is the national dog breed of Israel, Cimarr\u00f3n Uruguayo or Canaan Dog?", "dataset": "hotpotqa"}
5
+ {"query_id": "5a7aafb555429931da12c95b", "query": "Between Richard C. Sarafian and Terry O. Morse, who held more diverse job titles?", "dataset": "hotpotqa"}
6
+ {"query_id": "5a9087a355429916514e74eb", "query": "Sherwood Stewart and Natasha Zvereva, have which occupation?", "dataset": "hotpotqa"}
7
+ {"query_id": "5a901f3e55429933b8a2047e", "query": "Who was denied French Citizenship, Susan Straight or Ir\u00e8ne N\u00e9mirovsky?", "dataset": "hotpotqa"}
8
+ {"query_id": "5a8082755542992bc0c4a73f", "query": "Revenge is the debut single from what album released on August 25, 2017?", "dataset": "hotpotqa"}
9
+ {"query_id": "5ae608c155429929b0807a8d", "query": "Emma Approved was based on which novel by Jane Austen about youthful hubris?", "dataset": "hotpotqa"}
10
+ {"query_id": "5a8c47dd5542995e66a47591", "query": "In which city was the band whose members wrote \"Only the Young\" formed?", "dataset": "hotpotqa"}
hotpotqa.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
msmarco.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66475058082621f60851da2ebefc1719542cb73b4ae006d9d16df516e437e498
3
+ size 40420611
nfcorpus.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "PLAIN-633", "query": "avocado oil", "dataset": "nfcorpus"}
2
+ {"query_id": "PLAIN-132", "query": "Can We Fight the Blues With Greens?", "dataset": "nfcorpus"}
3
+ {"query_id": "PLAIN-1536", "query": "lovastatin", "dataset": "nfcorpus"}
4
+ {"query_id": "PLAIN-1373", "query": "hormesis", "dataset": "nfcorpus"}
5
+ {"query_id": "PLAIN-1245", "query": "gastric emptying", "dataset": "nfcorpus"}
6
+ {"query_id": "PLAIN-781", "query": "burritos", "dataset": "nfcorpus"}
7
+ {"query_id": "PLAIN-582", "query": "antihistamines", "dataset": "nfcorpus"}
8
+ {"query_id": "PLAIN-3000", "query": "Chicken Dioxins, Viruses, or Antibiotics?", "dataset": "nfcorpus"}
9
+ {"query_id": "PLAIN-498", "query": "African Americans", "dataset": "nfcorpus"}
10
+ {"query_id": "PLAIN-3260", "query": "Update on Juice Plus+\u00ae", "dataset": "nfcorpus"}
nfcorpus.jsonl ADDED
@@ -0,0 +1,323 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "PLAIN-1374", "query": "hormonal dysfunction"}
2
+ {"query_id": "PLAIN-2343", "query": "vitamin K"}
3
+ {"query_id": "PLAIN-3432", "query": "Healthy Chocolate Milkshakes"}
4
+ {"query_id": "PLAIN-1496", "query": "leeks"}
5
+ {"query_id": "PLAIN-1130", "query": "ergothioneine"}
6
+ {"query_id": "PLAIN-2220", "query": "tempeh"}
7
+ {"query_id": "PLAIN-2102", "query": "smoking"}
8
+ {"query_id": "PLAIN-3312", "query": "Sexually Transmitted Fish Toxin"}
9
+ {"query_id": "PLAIN-2900", "query": "Boosting Good Bacteria in the Colon Without Probiotics"}
10
+ {"query_id": "PLAIN-371", "query": "Any update on the scary in vitro avocado data?"}
11
+ {"query_id": "PLAIN-1018", "query": "DHA"}
12
+ {"query_id": "PLAIN-133", "query": "Starving Tumors of Their Blood Supply"}
13
+ {"query_id": "PLAIN-68", "query": "What is Actually in Chicken Nuggets?"}
14
+ {"query_id": "PLAIN-259", "query": "Optimal Phytosterol Dose and Source"}
15
+ {"query_id": "PLAIN-1817", "query": "peanut butter"}
16
+ {"query_id": "PLAIN-499", "query": "African-American"}
17
+ {"query_id": "PLAIN-934", "query": "coffee"}
18
+ {"query_id": "PLAIN-817", "query": "canker sores"}
19
+ {"query_id": "PLAIN-2470", "query": "Is Milk Good for Our Bones?"}
20
+ {"query_id": "PLAIN-2590", "query": "Do Vegetarians Get Enough Protein?"}
21
+ {"query_id": "PLAIN-2354", "query": "walnut oil"}
22
+ {"query_id": "PLAIN-3201", "query": "Acne & Cancer Connection"}
23
+ {"query_id": "PLAIN-3322", "query": "Veggies vs. Cancer"}
24
+ {"query_id": "PLAIN-3442", "query": "The Healthiest Vegetables"}
25
+ {"query_id": "PLAIN-1141", "query": "Evidence-based medicine"}
26
+ {"query_id": "PLAIN-1262", "query": "Global Burden of Disease Study"}
27
+ {"query_id": "PLAIN-2230", "query": "thiamine"}
28
+ {"query_id": "PLAIN-1940", "query": "prolactin"}
29
+ {"query_id": "PLAIN-1387", "query": "hyperactivity"}
30
+ {"query_id": "PLAIN-2113", "query": "soil health"}
31
+ {"query_id": "PLAIN-1028", "query": "dietary scoring"}
32
+ {"query_id": "PLAIN-2910", "query": "Optimal Phytosterol Dose"}
33
+ {"query_id": "PLAIN-1700", "query": "Native Americans"}
34
+ {"query_id": "PLAIN-123", "query": "How Citrus Might Help Keep Your Hands Warm"}
35
+ {"query_id": "PLAIN-1827", "query": "Peoria"}
36
+ {"query_id": "PLAIN-78", "query": "What Do Meat Purge and Cola Have in Common?"}
37
+ {"query_id": "PLAIN-248", "query": "Treating an Enlarged Prostate With Diet"}
38
+ {"query_id": "PLAIN-488", "query": "adenovirus 36"}
39
+ {"query_id": "PLAIN-806", "query": "caloric restriction"}
40
+ {"query_id": "PLAIN-924", "query": "cocaine"}
41
+ {"query_id": "PLAIN-2240", "query": "titanium dioxide"}
42
+ {"query_id": "PLAIN-1151", "query": "factory farming practices"}
43
+ {"query_id": "PLAIN-2480", "query": "Preventing Ulcerative Colitis with Diet"}
44
+ {"query_id": "PLAIN-1473", "query": "kohlrabi"}
45
+ {"query_id": "PLAIN-2321", "query": "veggie chicken"}
46
+ {"query_id": "PLAIN-1353", "query": "hernia"}
47
+ {"query_id": "PLAIN-2440", "query": "More Than an Apple a Day: Combating Common Diseases"}
48
+ {"query_id": "PLAIN-2560", "query": "Childhood Constipation and Cow\u2019s Milk"}
49
+ {"query_id": "PLAIN-1236", "query": "galactosemia"}
50
+ {"query_id": "PLAIN-3412", "query": "Plant vs. Cow Calcium"}
51
+ {"query_id": "PLAIN-44", "query": "Who Should be Careful About Curcumin?"}
52
+ {"query_id": "PLAIN-1119", "query": "energy drinks"}
53
+ {"query_id": "PLAIN-270", "query": "Is Caffeinated Tea Really Dehydrating?"}
54
+ {"query_id": "PLAIN-153", "query": "How Should I Take Probiotics?"}
55
+ {"query_id": "PLAIN-2209", "query": "taro"}
56
+ {"query_id": "PLAIN-395", "query": "What about pepper plus turmeric in V8 juice?"}
57
+ {"query_id": "PLAIN-1919", "query": "poultry workers"}
58
+ {"query_id": "PLAIN-956", "query": "cooking methods"}
59
+ {"query_id": "PLAIN-711", "query": "blood clots"}
60
+ {"query_id": "PLAIN-838", "query": "carrageenan"}
61
+ {"query_id": "PLAIN-2570", "query": "Diabetics Should Take Their Pulses"}
62
+ {"query_id": "PLAIN-2690", "query": "Chronic Headaches and Pork Tapeworms"}
63
+ {"query_id": "PLAIN-1363", "query": "Hiroshima"}
64
+ {"query_id": "PLAIN-2332", "query": "viral infections"}
65
+ {"query_id": "PLAIN-1485", "query": "lard"}
66
+ {"query_id": "PLAIN-2450", "query": "Are Organic Foods Safer?"}
67
+ {"query_id": "PLAIN-3302", "query": "Fish Fog"}
68
+ {"query_id": "PLAIN-3422", "query": "Vitamin Supplements Worth Taking"}
69
+ {"query_id": "PLAIN-1008", "query": "deafness"}
70
+ {"query_id": "PLAIN-383", "query": "What do you think of Dr. Jenkins' take on paleolithic diets?"}
71
+ {"query_id": "PLAIN-1249", "query": "genetic manipulation"}
72
+ {"query_id": "PLAIN-1805", "query": "Parkinson's disease"}
73
+ {"query_id": "PLAIN-143", "query": "Are Dental X-Rays Safe?"}
74
+ {"query_id": "PLAIN-56", "query": "Foods for Glaucoma"}
75
+ {"query_id": "PLAIN-1929", "query": "prenatal vitamins"}
76
+ {"query_id": "PLAIN-701", "query": "black raspberries"}
77
+ {"query_id": "PLAIN-827", "query": "carcinogens"}
78
+ {"query_id": "PLAIN-946", "query": "coma"}
79
+ {"query_id": "PLAIN-2460", "query": "Diabetes as a Disease of Fat Toxicity"}
80
+ {"query_id": "PLAIN-2580", "query": "Academy of Nutrition and Dietetics Conflicts of Interest"}
81
+ {"query_id": "PLAIN-1331", "query": "hearing"}
82
+ {"query_id": "PLAIN-2540", "query": "Does Cholesterol Size Matter?"}
83
+ {"query_id": "PLAIN-2660", "query": "How Long to Detox From Fish Before Pregnancy?"}
84
+ {"query_id": "PLAIN-2780", "query": "Do Fruit & Nut Bars Cause Weight Gain?"}
85
+ {"query_id": "PLAIN-1214", "query": "Fosamax"}
86
+ {"query_id": "PLAIN-1453", "query": "junk food"}
87
+ {"query_id": "PLAIN-2301", "query": "uterine health"}
88
+ {"query_id": "PLAIN-691", "query": "bioavailability"}
89
+ {"query_id": "PLAIN-1579", "query": "mastitis"}
90
+ {"query_id": "PLAIN-332", "query": "Can antioxidant-rich spices counteract the effects of a high-fat meal?"}
91
+ {"query_id": "PLAIN-23", "query": "How to Reduce Exposure to Alkylphenols Through Your Diet"}
92
+ {"query_id": "PLAIN-571", "query": "anisakis"}
93
+ {"query_id": "PLAIN-457", "query": "How can you believe in any scientific study?"}
94
+ {"query_id": "PLAIN-217", "query": "Plant-Based Diets for Psoriasis"}
95
+ {"query_id": "PLAIN-2790", "query": "Titanium Dioxide & Inflammatory Bowel Disease"}
96
+ {"query_id": "PLAIN-3085", "query": "The Difficulty of Arriving at a Vitamin D Recommendation"}
97
+ {"query_id": "PLAIN-1342", "query": "heme iron"}
98
+ {"query_id": "PLAIN-1463", "query": "kidney beans"}
99
+ {"query_id": "PLAIN-2430", "query": "Preventing Brain Loss with B Vitamins?"}
100
+ {"query_id": "PLAIN-2550", "query": "Barriers to Heart Disease Prevention"}
101
+ {"query_id": "PLAIN-2670", "query": "Is Caramel Color Carcinogenic?"}
102
+ {"query_id": "PLAIN-1225", "query": "fructose"}
103
+ {"query_id": "PLAIN-3402", "query": "Antioxidant Content of 300 Foods"}
104
+ {"query_id": "PLAIN-2311", "query": "veal"}
105
+ {"query_id": "PLAIN-33", "query": "What\u2019s Driving America\u2019s Obesity Problem?"}
106
+ {"query_id": "PLAIN-320", "query": "Breast Cancer and Diet"}
107
+ {"query_id": "PLAIN-441", "query": "Is apple cider vinegar good for you?"}
108
+ {"query_id": "PLAIN-1109", "query": "endocrine disruptors"}
109
+ {"query_id": "PLAIN-561", "query": "aneurysm"}
110
+ {"query_id": "PLAIN-681", "query": "betel nuts"}
111
+ {"query_id": "PLAIN-207", "query": "Avoiding Cooked Meat Carcinogens"}
112
+ {"query_id": "PLAIN-1909", "query": "pork"}
113
+ {"query_id": "PLAIN-1590", "query": "medical ethics"}
114
+ {"query_id": "PLAIN-2680", "query": "Counteracting the Effects of Dioxins Through Diet"}
115
+ {"query_id": "PLAIN-3097", "query": "Amyloid and Apple Juice"}
116
+ {"query_id": "PLAIN-2640", "query": "Chicken Salmonella Thanks to Meat Industry Lawsuit"}
117
+ {"query_id": "PLAIN-2760", "query": "Eating Healthy on a Budget"}
118
+ {"query_id": "PLAIN-2880", "query": "The Answer to the Pritikin Puzzle"}
119
+ {"query_id": "PLAIN-1794", "query": "Panama"}
120
+ {"query_id": "PLAIN-2520", "query": "Caloric Restriction vs. Plant-Based Diets"}
121
+ {"query_id": "PLAIN-1679", "query": "myelopathy"}
122
+ {"query_id": "PLAIN-1557", "query": "magnesium"}
123
+ {"query_id": "PLAIN-112", "query": "Food Dyes and ADHD"}
124
+ {"query_id": "PLAIN-2408", "query": "Zoloft"}
125
+ {"query_id": "PLAIN-593", "query": "apnea"}
126
+ {"query_id": "PLAIN-358", "query": "Didn't another study show carnitine was good for the heart?"}
127
+ {"query_id": "PLAIN-478", "query": "accidents"}
128
+ {"query_id": "PLAIN-238", "query": "How Chemically Contaminated Are We?"}
129
+ {"query_id": "PLAIN-2092", "query": "sirtuins"}
130
+ {"query_id": "PLAIN-3181", "query": "Is Dragon Fruit Good For You?"}
131
+ {"query_id": "PLAIN-913", "query": "cinnamon"}
132
+ {"query_id": "PLAIN-3063", "query": "Better Than Goji Berries"}
133
+ {"query_id": "PLAIN-2530", "query": "Infectobesity: Adenovirus 36 and Childhood Obesity"}
134
+ {"query_id": "PLAIN-1320", "query": "Harvard Physicians\u2019 Study II"}
135
+ {"query_id": "PLAIN-1441", "query": "Japan"}
136
+ {"query_id": "PLAIN-2650", "query": "Turmeric Curcumin and Osteoarthritis"}
137
+ {"query_id": "PLAIN-2770", "query": "Flaxseeds & Breast Cancer Survival: Clinical Evidence"}
138
+ {"query_id": "PLAIN-2890", "query": "To Snack or Not to Snack?"}
139
+ {"query_id": "PLAIN-1203", "query": "folic acid"}
140
+ {"query_id": "PLAIN-1568", "query": "maple syrup"}
141
+ {"query_id": "PLAIN-583", "query": "antinutrients"}
142
+ {"query_id": "PLAIN-12", "query": "Exploiting Autophagy to Live Longer"}
143
+ {"query_id": "PLAIN-468", "query": "Is vitamin D3 (cholecalciferol) preferable to D2 (ergocalciferol)?"}
144
+ {"query_id": "PLAIN-102", "query": "Stopping Heart Disease in Childhood"}
145
+ {"query_id": "PLAIN-344", "query": "Dioxins Stored in Our Own Fat May Increase Diabetes Risk"}
146
+ {"query_id": "PLAIN-227", "query": "Increasing Muscle Strength with Fenugreek"}
147
+ {"query_id": "PLAIN-3191", "query": "Is Distilled Fish Oil Toxin-Free?"}
148
+ {"query_id": "PLAIN-902", "query": "chlorophyll"}
149
+ {"query_id": "PLAIN-1690", "query": "National Academy of Sciences"}
150
+ {"query_id": "PLAIN-3074", "query": "How to Help Prevent Abdominal Aortic Aneurysms"}
151
+ {"query_id": "PLAIN-2860", "query": "BPA Plastic and Male Sexual Dysfunction"}
152
+ {"query_id": "PLAIN-2981", "query": "Cheese Mites and Maggots"}
153
+ {"query_id": "PLAIN-2187", "query": "suppositories"}
154
+ {"query_id": "PLAIN-1098", "query": "eggnog"}
155
+ {"query_id": "PLAIN-2500", "query": "The Saturated Fat Studies: Buttering Up the Public"}
156
+ {"query_id": "PLAIN-1772", "query": "organotins"}
157
+ {"query_id": "PLAIN-2620", "query": "Phytates for the Treatment of Cancer"}
158
+ {"query_id": "PLAIN-2740", "query": "Cancer Risk From CT Scan Radiation"}
159
+ {"query_id": "PLAIN-3037", "query": "Out of the Lab Onto the Track"}
160
+ {"query_id": "PLAIN-1537", "query": "low-carb diets"}
161
+ {"query_id": "PLAIN-1897", "query": "polypropylene plastic"}
162
+ {"query_id": "PLAIN-1656", "query": "mouth cancer"}
163
+ {"query_id": "PLAIN-1419", "query": "insects"}
164
+ {"query_id": "PLAIN-771", "query": "bronchiolitis obliterans"}
165
+ {"query_id": "PLAIN-892", "query": "chickpeas"}
166
+ {"query_id": "PLAIN-531", "query": "alternative medicine"}
167
+ {"query_id": "PLAIN-2071", "query": "serotonin"}
168
+ {"query_id": "PLAIN-3281", "query": "Aluminum in Vaccines vs. Food"}
169
+ {"query_id": "PLAIN-418", "query": "Fresh fruit versus frozen--which is better?"}
170
+ {"query_id": "PLAIN-3161", "query": "Is Milk and Mucus a Myth?"}
171
+ {"query_id": "PLAIN-2750", "query": "Preventing the Common Cold with Probiotics?"}
172
+ {"query_id": "PLAIN-2870", "query": "Filled Full of Lead"}
173
+ {"query_id": "PLAIN-2991", "query": "Cholesterol and Lower Back Pain"}
174
+ {"query_id": "PLAIN-2197", "query": "sweeteners"}
175
+ {"query_id": "PLAIN-2510", "query": "Coffee and Artery Function"}
176
+ {"query_id": "PLAIN-1784", "query": "oxen meat"}
177
+ {"query_id": "PLAIN-2630", "query": "Alkylphenol Endocrine Disruptors and Allergies"}
178
+ {"query_id": "PLAIN-1547", "query": "lyme disease"}
179
+ {"query_id": "PLAIN-1667", "query": "muscle health"}
180
+ {"query_id": "PLAIN-1309", "query": "halibut"}
181
+ {"query_id": "PLAIN-761", "query": "breast pain"}
182
+ {"query_id": "PLAIN-882", "query": "Chernobyl"}
183
+ {"query_id": "PLAIN-1429", "query": "Iowa Women\u2019s Health Study"}
184
+ {"query_id": "PLAIN-520", "query": "Alli"}
185
+ {"query_id": "PLAIN-645", "query": "bagels"}
186
+ {"query_id": "PLAIN-3171", "query": "Convergence of Evidence"}
187
+ {"query_id": "PLAIN-3292", "query": "Are Multivitamins Good For You?"}
188
+ {"query_id": "PLAIN-2081", "query": "shelf life"}
189
+ {"query_id": "PLAIN-407", "query": "Is annatto food coloring safe?"}
190
+ {"query_id": "PLAIN-3053", "query": "Dragon's Blood"}
191
+ {"query_id": "PLAIN-2167", "query": "subsidies"}
192
+ {"query_id": "PLAIN-3014", "query": "Sometimes the Enzyme Myth Is True"}
193
+ {"query_id": "PLAIN-1752", "query": "okra"}
194
+ {"query_id": "PLAIN-2600", "query": "Eggs and Arterial Function"}
195
+ {"query_id": "PLAIN-1995", "query": "red tea"}
196
+ {"query_id": "PLAIN-2720", "query": "Keeping Your Hands Warm With Citrus"}
197
+ {"query_id": "PLAIN-2840", "query": "Benefits of Fenugreek Seeds"}
198
+ {"query_id": "PLAIN-2960", "query": "Pharmacists Versus Health Food Store Employees: Who Gives Better Advice?"}
199
+ {"query_id": "PLAIN-1635", "query": "milk"}
200
+ {"query_id": "PLAIN-1877", "query": "plant-based diet"}
201
+ {"query_id": "PLAIN-430", "query": "Are krill oil supplements better than fish oil capsules?"}
202
+ {"query_id": "PLAIN-551", "query": "amnesia"}
203
+ {"query_id": "PLAIN-1516", "query": "Lindane"}
204
+ {"query_id": "PLAIN-671", "query": "benzene"}
205
+ {"query_id": "PLAIN-792", "query": "cadaverine"}
206
+ {"query_id": "PLAIN-2291", "query": "ultra-processed foods"}
207
+ {"query_id": "PLAIN-3141", "query": "Relieving Yourself of Excess Estrogen"}
208
+ {"query_id": "PLAIN-2051", "query": "saturated fat"}
209
+ {"query_id": "PLAIN-3261", "query": "Update on Herbalife\u00ae"}
210
+ {"query_id": "PLAIN-3382", "query": "Are Artificial Colors Bad for You?"}
211
+ {"query_id": "PLAIN-1088", "query": "ECMO"}
212
+ {"query_id": "PLAIN-2970", "query": "Preventing Cataracts with Diet"}
213
+ {"query_id": "PLAIN-2177", "query": "sulfur"}
214
+ {"query_id": "PLAIN-2610", "query": "Treating Asthma With Plants vs. Supplements?"}
215
+ {"query_id": "PLAIN-2730", "query": "Anti-Angiogenesis: Cutting Off Tumor Supply Lines"}
216
+ {"query_id": "PLAIN-1762", "query": "oral intraepithelial neoplasia"}
217
+ {"query_id": "PLAIN-2850", "query": "More Antibiotics In White Meat or Dark Meat?"}
218
+ {"query_id": "PLAIN-3026", "query": "Vitamin C-Enriched Bacon"}
219
+ {"query_id": "PLAIN-1645", "query": "molasses"}
220
+ {"query_id": "PLAIN-1887", "query": "poisonous plants"}
221
+ {"query_id": "PLAIN-541", "query": "American Dental Association"}
222
+ {"query_id": "PLAIN-1409", "query": "industrial toxins"}
223
+ {"query_id": "PLAIN-782", "query": "Bush administration"}
224
+ {"query_id": "PLAIN-1527", "query": "liver disease"}
225
+ {"query_id": "PLAIN-660", "query": "beans"}
226
+ {"query_id": "PLAIN-307", "query": "Vitamin D: Shedding some light on the new recommendations"}
227
+ {"query_id": "PLAIN-3151", "query": "Too Much Iodine Can Be as Bad as Too Little"}
228
+ {"query_id": "PLAIN-2061", "query": "seafood"}
229
+ {"query_id": "PLAIN-3271", "query": "Saturated Fat & Cancer Progression"}
230
+ {"query_id": "PLAIN-3392", "query": "Healthiest Airplane Beverage"}
231
+ {"query_id": "PLAIN-2145", "query": "St. John's wort"}
232
+ {"query_id": "PLAIN-2386", "query": "worms"}
233
+ {"query_id": "PLAIN-3231", "query": "Meat & Multiple Myeloma"}
234
+ {"query_id": "PLAIN-3352", "query": "Boosting Heart Nerve Control"}
235
+ {"query_id": "PLAIN-1972", "query": "quinine"}
236
+ {"query_id": "PLAIN-2820", "query": "Preventing Strokes with Diet"}
237
+ {"query_id": "PLAIN-291", "query": "Stool Size and Breast Cancer Risk"}
238
+ {"query_id": "PLAIN-1731", "query": "norovirus"}
239
+ {"query_id": "PLAIN-2940", "query": "Dietary Treatment of Crohn's Disease"}
240
+ {"query_id": "PLAIN-3116", "query": "Dietary Guidelines: From Dairies to Berries"}
241
+ {"query_id": "PLAIN-1299", "query": "growth promoters"}
242
+ {"query_id": "PLAIN-1611", "query": "mesquite"}
243
+ {"query_id": "PLAIN-2700", "query": "Heart Disease Starts in Childhood"}
244
+ {"query_id": "PLAIN-1857", "query": "phytic acid"}
245
+ {"query_id": "PLAIN-175", "query": "Diet and Cellulite"}
246
+ {"query_id": "PLAIN-731", "query": "bone fractures"}
247
+ {"query_id": "PLAIN-850", "query": "cauliflower"}
248
+ {"query_id": "PLAIN-977", "query": "crib death"}
249
+ {"query_id": "PLAIN-2", "query": "Do Cholesterol Statin Drugs Cause Breast Cancer?"}
250
+ {"query_id": "PLAIN-613", "query": "ascorbic acid"}
251
+ {"query_id": "PLAIN-1183", "query": "Finland"}
252
+ {"query_id": "PLAIN-3241", "query": "Apthous Ulcer Mystery Solved"}
253
+ {"query_id": "PLAIN-3362", "query": "Kuna Indian Secret"}
254
+ {"query_id": "PLAIN-2030", "query": "Rutin"}
255
+ {"query_id": "PLAIN-2271", "query": "Tufts"}
256
+ {"query_id": "PLAIN-1066", "query": "Dr. Walter Willett"}
257
+ {"query_id": "PLAIN-2156", "query": "stevia"}
258
+ {"query_id": "PLAIN-2396", "query": "Yale"}
259
+ {"query_id": "PLAIN-3001", "query": "EPIC Findings on Lymphoma"}
260
+ {"query_id": "PLAIN-1741", "query": "nuts"}
261
+ {"query_id": "PLAIN-1983", "query": "rapamycin"}
262
+ {"query_id": "PLAIN-2710", "query": "Artificial Food Colors and ADHD"}
263
+ {"query_id": "PLAIN-280", "query": "Mercury Testing Recommended Before Pregnancy"}
264
+ {"query_id": "PLAIN-1621", "query": "Mevacor"}
265
+ {"query_id": "PLAIN-2830", "query": "Neurobiology of Artificial Sweeteners"}
266
+ {"query_id": "PLAIN-2950", "query": "Unsafe at Any Feed"}
267
+ {"query_id": "PLAIN-1867", "query": "pineapples"}
268
+ {"query_id": "PLAIN-165", "query": "Breast Cancer & Alcohol: How Much is Safe?"}
269
+ {"query_id": "PLAIN-1506", "query": "leucine"}
270
+ {"query_id": "PLAIN-721", "query": "BMAA"}
271
+ {"query_id": "PLAIN-603", "query": "Arkansas"}
272
+ {"query_id": "PLAIN-966", "query": "cortisol"}
273
+ {"query_id": "PLAIN-3131", "query": "Are Avocados Good for You?"}
274
+ {"query_id": "PLAIN-3251", "query": "EPIC Study"}
275
+ {"query_id": "PLAIN-3372", "query": "The Healthiest Sweetener"}
276
+ {"query_id": "PLAIN-2040", "query": "salmon"}
277
+ {"query_id": "PLAIN-1193", "query": "flax oil"}
278
+ {"query_id": "PLAIN-2281", "query": "turnips"}
279
+ {"query_id": "PLAIN-1275", "query": "goji berries"}
280
+ {"query_id": "PLAIN-2364", "query": "weight gain"}
281
+ {"query_id": "PLAIN-3211", "query": "Overdosing on Greens"}
282
+ {"query_id": "PLAIN-3332", "query": "Alcohol Risks vs. Benefits"}
283
+ {"query_id": "PLAIN-3452", "query": "Bowel Movement Frequency"}
284
+ {"query_id": "PLAIN-1950", "query": "prunes"}
285
+ {"query_id": "PLAIN-1398", "query": "IGF-1"}
286
+ {"query_id": "PLAIN-2124", "query": "spearmint"}
287
+ {"query_id": "PLAIN-196", "query": "Should We Avoid Titanium Dioxide?"}
288
+ {"query_id": "PLAIN-2009", "query": "rhabdomyolysis"}
289
+ {"query_id": "PLAIN-1039", "query": "domoic acid"}
290
+ {"query_id": "PLAIN-1710", "query": "neurocysticercosis"}
291
+ {"query_id": "PLAIN-2800", "query": "Prolonged Liver Function Enhancement From Broccoli"}
292
+ {"query_id": "PLAIN-2920", "query": "Human Neurotransmitters in Plants"}
293
+ {"query_id": "PLAIN-1837", "query": "pesticides"}
294
+ {"query_id": "PLAIN-91", "query": "Chronic Headaches and Pork Parasites"}
295
+ {"query_id": "PLAIN-510", "query": "airport scanners"}
296
+ {"query_id": "PLAIN-751", "query": "BRCA genes"}
297
+ {"query_id": "PLAIN-872", "query": "chanterelle mushrooms"}
298
+ {"query_id": "PLAIN-634", "query": "avocados"}
299
+ {"query_id": "PLAIN-997", "query": "Czechoslovakia"}
300
+ {"query_id": "PLAIN-1161", "query": "fava beans"}
301
+ {"query_id": "PLAIN-2250", "query": "tongue worm"}
302
+ {"query_id": "PLAIN-2490", "query": "The Actual Benefit of Diet vs. Drugs"}
303
+ {"query_id": "PLAIN-2134", "query": "Splenda"}
304
+ {"query_id": "PLAIN-2375", "query": "whiting"}
305
+ {"query_id": "PLAIN-3221", "query": "Dietary Theory of Alzheimer's"}
306
+ {"query_id": "PLAIN-3342", "query": "Is Coconut Milk Good For You?"}
307
+ {"query_id": "PLAIN-3462", "query": "Olive Oil and Artery Function"}
308
+ {"query_id": "PLAIN-2930", "query": "Kiwifruit for Irritable Bowel Syndrome"}
309
+ {"query_id": "PLAIN-1962", "query": "pumpkin"}
310
+ {"query_id": "PLAIN-1288", "query": "grapes"}
311
+ {"query_id": "PLAIN-1721", "query": "NIH-AARP study"}
312
+ {"query_id": "PLAIN-2019", "query": "rickets"}
313
+ {"query_id": "PLAIN-1601", "query": "memory"}
314
+ {"query_id": "PLAIN-2810", "query": "Apple Juice May Be Worse Than Sugar Water"}
315
+ {"query_id": "PLAIN-1847", "query": "philippines"}
316
+ {"query_id": "PLAIN-186", "query": "Best Treatment for Constipation"}
317
+ {"query_id": "PLAIN-741", "query": "BPH"}
318
+ {"query_id": "PLAIN-987", "query": "cumin"}
319
+ {"query_id": "PLAIN-623", "query": "Atkins diet"}
320
+ {"query_id": "PLAIN-1172", "query": "fenugreek"}
321
+ {"query_id": "PLAIN-3472", "query": "How Doctors Responded to Being Named a Leading Killer"}
322
+ {"query_id": "PLAIN-2261", "query": "trans fats"}
323
+ {"query_id": "PLAIN-1050", "query": "Dr. Dean Ornish"}
nq.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "1519", "query": "who played cowboy curtis on pee wee herman", "dataset": "nq"}
2
+ {"query_id": "4896", "query": "when was what does the fox say released", "dataset": "nq"}
3
+ {"query_id": "709", "query": "when did mcdonald 's start the monopoly game", "dataset": "nq"}
4
+ {"query_id": "3073", "query": "who dies at the end of dear john", "dataset": "nq"}
5
+ {"query_id": "782", "query": "who released an album in 1999 called brand new day", "dataset": "nq"}
6
+ {"query_id": "428", "query": "who does the voice for optimus prime in transformers", "dataset": "nq"}
7
+ {"query_id": "2552", "query": "during which phase of sdlc are the test cases developed", "dataset": "nq"}
8
+ {"query_id": "3438", "query": "how big is the shark from the shallows", "dataset": "nq"}
9
+ {"query_id": "347", "query": "who did kobe bryant beat in the finals", "dataset": "nq"}
10
+ {"query_id": "733", "query": "who got rid of the romans in britain", "dataset": "nq"}
nq.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
quora.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "158626", "query": "Which serial killers were addicted to drugs and which crimes have they done while they were?", "dataset": "quora"}
2
+ {"query_id": "468388", "query": "What is the best mistake of your life?", "dataset": "quora"}
3
+ {"query_id": "348698", "query": "Thunders effect on sea animals?", "dataset": "quora"}
4
+ {"query_id": "177774", "query": "Should I learn PHP or Ruby?", "dataset": "quora"}
5
+ {"query_id": "377214", "query": "Is NCERT enough to get 600 in neet 2017?", "dataset": "quora"}
6
+ {"query_id": "513592", "query": "Do you believe in soul-mates and twin flames?", "dataset": "quora"}
7
+ {"query_id": "224584", "query": "How is Jake Williams\u2019s accent?", "dataset": "quora"}
8
+ {"query_id": "5162", "query": "What happens when you die in a dream?", "dataset": "quora"}
9
+ {"query_id": "125241", "query": "Can a man date a prostitute?", "dataset": "quora"}
10
+ {"query_id": "352509", "query": "What is radio Wave?", "dataset": "quora"}
quora.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
scidocs.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
scifact.dev.jsonl ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": "571", "query": "In breast cancer, the loss of myoepithelial cells slows the transition of ductal carcinoma in situ to invasive carcinoma.", "dataset": "scifact"}
2
+ {"query_id": "407", "query": "FACT and other histone chaperone(s) compensate for Histone 2A (H2A)-histone 2B (H2B) dimer eviction during the histone exchange process.", "dataset": "scifact"}
3
+ {"query_id": "381", "query": "Environmental factors can influence the development of breast cancer.", "dataset": "scifact"}
4
+ {"query_id": "1097", "query": "Splenomegaly is observed in knockin mouse lacking the SHP-2 MAPK pathway.", "dataset": "scifact"}
5
+ {"query_id": "617", "query": "Increased mobility of retrotransposons is assosciated with mutation and higher tumorigenesis rates.", "dataset": "scifact"}
6
+ {"query_id": "1340", "query": "Ultrasound guidance significantly reduces the number of needle insertion attempts necessary for a given procedure.", "dataset": "scifact"}
7
+ {"query_id": "951", "query": "Piezo1 channels are sensors for cell migration in epithelial cells.", "dataset": "scifact"}
8
+ {"query_id": "15", "query": "50% of patients exposed to radiation have activated markers of mesenchymal stem cells.", "dataset": "scifact"}
9
+ {"query_id": "1349", "query": "Upregulation of PD1 causes the downmodulation of Satb1.", "dataset": "scifact"}
10
+ {"query_id": "254", "query": "Chinese individuals with TT homozygosity in the MTHFR gene are more vulnerable to strokes caused by low levels of folate intake.", "dataset": "scifact"}
scifact.jsonl ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 907, "query": "PGE 2 promotes intestinal tumor growth by altering the expression of tumor suppressing and DNA repair genes."}
2
+ {"query_id": 350, "query": "Discrimination between the initiator and elongation tRNAs depends on the translation initiation factor IF3."}
3
+ {"query_id": 230, "query": "Carriers of the alcohol aldehyde dehydrogenase deficiency mutation drink less that non-carries."}
4
+ {"query_id": 593, "query": "Incidence of heart failure decreased by 10% in women since 1979."}
5
+ {"query_id": 1216, "query": "The extracellular domain of TMEM27 is cleaved in human beta cells."}
6
+ {"query_id": 1337, "query": "Ubiquitin ligase UBC13 generates a K63-linked polyubiquitin moiety at PCNA K164."}
7
+ {"query_id": 232, "query": "Cataract and trachoma are the primary cause of blindness in Southern Sudan."}
8
+ {"query_id": 1336, "query": "UCB T cells reduce TCR diversity after transplantation."}
9
+ {"query_id": 233, "query": "Cell autonomous sex determination in somatic cells does not occur in Galliformes."}
10
+ {"query_id": 354, "query": "Downregulation and mislocalization of Scribble prevents cell transformation and mammary tumorigenesis."}
11
+ {"query_id": 475, "query": "Glycolysis is one of the primary glycometabolic pathways in cells."}
12
+ {"query_id": 113, "query": "Angiotensin converting enzyme inhibitors are associated with increased risk for functional renal insufficiency."}
13
+ {"query_id": 1335, "query": "UCB T cells maintain high TCR diversity after transplantation."}
14
+ {"query_id": 597, "query": "Incidence rates of cervical cancer have decreased."}
15
+ {"query_id": 1213, "query": "The deregulated and prolonged activation of monocytes has deleterious effects in inflammatory diseases."}
16
+ {"query_id": 598, "query": "Incidence rates of cervical cancer have increased due to nationwide screening programs based primarily on cytology to detect uterine cervical cancer."}
17
+ {"query_id": 115, "query": "Anthrax spores can be disposed of easily after they are dispersed."}
18
+ {"query_id": 236, "query": "Cell autonomous sex determination in somatic cells occurs in Passeriformes."}
19
+ {"query_id": 478, "query": "Golli-deficient T-cells prefer to differentiate into an anergic phenotype in the adaptive immune response when there are increased levels of Ca2+ in the cytosol."}
20
+ {"query_id": 1332, "query": "Tumor necrosis factor alpha (TNF-\u03b1) and interleukin-1 (IL-1) are pro-inflammatory cytokines that inhibit IL-6 and IL-10."}
21
+ {"query_id": 237, "query": "Cells lacking clpC have a defect in sporulation efficiency in Bacillus subtilis."}
22
+ {"query_id": 238, "query": "Cells undergoing methionine restriction may activate miRNAs."}
23
+ {"query_id": 118, "query": "Antibiotic induced alterations in the gut microbiome reduce resistance against Clostridium difficile"}
24
+ {"query_id": 239, "query": "Cellular aging closely links to an older appearance."}
25
+ {"query_id": 911, "query": "PKG-la plays an essential role in expression of pain hypersensitivity in PGK-la knockout mice."}
26
+ {"query_id": 913, "query": "PPAR-RXRs are inhibited by PPAR ligands."}
27
+ {"query_id": 914, "query": "PPAR-RXRs can be activated by PPAR ligands."}
28
+ {"query_id": 1339, "query": "Ultrasound guidance significantly raises the number of traumatic procedures when attempting needle insertion."}
29
+ {"query_id": 13, "query": "5% of perinatal mortality is due to low birth weight."}
30
+ {"query_id": 1110, "query": "Suboptimal nutrition is not predictive of chronic disease"}
31
+ {"query_id": 1352, "query": "Upregulation of mosGCTL-1 is induced upon infection with West Nile virus."}
32
+ {"query_id": 362, "query": "During the primary early antibody response activated B cells migrate toward the inner-and outer paracortical areas where oxysterol accumulation is generated by stromal cells."}
33
+ {"query_id": 1107, "query": "Subcutaneous fat depots undergo extensive browning processes after cold exposure."}
34
+ {"query_id": 1, "query": "0-dimensional biomaterials show inductive properties."}
35
+ {"query_id": 1226, "query": "The loss of the TET protein functions may have dire biological consequences, such as myeloid cancers."}
36
+ {"query_id": 1104, "query": "Stroke patients with prior use of direct oral anticoagulants have a lower risk of in-hospital mortality than stroke patients with prior use of warfarin."}
37
+ {"query_id": 1225, "query": "The locus rs647161 is associated with colorectal carcinoma."}
38
+ {"query_id": 124, "query": "Antiretroviral therapy reduces rates of tuberculosis across a broad range of CD4 strata."}
39
+ {"query_id": 3, "query": "1,000 genomes project enables mapping of genetic sequence variation consisting of rare variants with larger penetrance effects than common variants."}
40
+ {"query_id": 1344, "query": "Up-regulation of the p53 pathway and related molecular events casues cancer resistance and results in a significantly shortened lifespan marked by senescent cells and accelerated organismal aging."}
41
+ {"query_id": 5, "query": "1/2000 in UK have abnormal PrP positivity."}
42
+ {"query_id": 127, "query": "Arginine 90 in p150n is important for interaction with EB1."}
43
+ {"query_id": 248, "query": "Chenodeosycholic acid treatment increases whole-body energy expenditure."}
44
+ {"query_id": 1100, "query": "Statins increase blood cholesterol."}
45
+ {"query_id": 1221, "query": "The genomic aberrations found in matasteses are very similar to those found in the primary tumor."}
46
+ {"query_id": 128, "query": "Arterioles have a larger lumen diameter than venules."}
47
+ {"query_id": 249, "query": "Chenodeosycholic acid treatment reduces whole-body energy expenditure."}
48
+ {"query_id": 129, "query": "Articles published in open access format are less likely to be cited than traditional journals."}
49
+ {"query_id": 800, "query": "Modifying the epigenome in the brain affects the normal human aging process by affecting certain genes related to neurogenesis."}
50
+ {"query_id": 921, "query": "Participating in six months of physical activity improves cognitive functioning."}
51
+ {"query_id": 922, "query": "Patients in stable partnerships have a faster progression from HIV to AIDS."}
52
+ {"query_id": 805, "query": "Monoclonal antibody targeting of N-cadherin inhibits metastasis."}
53
+ {"query_id": 808, "query": "Most termination events in Okazaki fragments are sequence specific."}
54
+ {"query_id": 1121, "query": "Synaptic activity enhances local release of brain derived neurotrophic factor from postsynaptic dendrites."}
55
+ {"query_id": 1363, "query": "Venules have a thinner or absent smooth layer compared to arterioles."}
56
+ {"query_id": 1241, "query": "The myocardial lineage develops from cardiac progenitors of mesodermal origin."}
57
+ {"query_id": 1362, "query": "Venules have a larger lumen diameter than arterioles."}
58
+ {"query_id": 491, "query": "HNF4A mutations can cause diabetes in mutant carriers by the age of 14 years"}
59
+ {"query_id": 130, "query": "Articles published in open access format are more likely to be cited than traditional journals."}
60
+ {"query_id": 132, "query": "Aspirin inhibits the production of PGE2."}
61
+ {"query_id": 133, "query": "Assembly of invadopodia is triggered by focal generation of phosphatidylinositol-3,4-biphosphate and the activation of the nonreceptor tyrosine kinase Src."}
62
+ {"query_id": 1359, "query": "Varenicline monotherapy is more effective after 12 weeks of treatment compared to combination nicotine replacement therapies with varenicline or bupropion."}
63
+ {"query_id": 137, "query": "Asymptomatic visual impairment screening in elderly populations does not lead to improved vision."}
64
+ {"query_id": 1232, "query": "The minor G allele of FOXO3 is related to more severe symptoms of Crohn's Disease."}
65
+ {"query_id": 811, "query": "Mutant mice lacking SVCT2 have greatly increased ascorbic acid levels in both brain and adrenals."}
66
+ {"query_id": 814, "query": "Mutations in G-Beta protein GNB2 are present in many cancers, resulting in loss of interaction with G-alpha subunits and concomitant activation of AKT pathway."}
67
+ {"query_id": 936, "query": "Peroxynitrite is required for nitration of TCR/CD8."}
68
+ {"query_id": 36, "query": "A deficiency of vitamin B12 increases blood levels of homocysteine."}
69
+ {"query_id": 1132, "query": "TCR/CD3 microdomains are a required to induce the immunologic synapse to activate T cells."}
70
+ {"query_id": 1130, "query": "T regulatory cells (tTregs) lacking \u03b1v\u03b28 are more adept at suppressing pathogenic T-cell responses during active inflammation."}
71
+ {"query_id": 380, "query": "Enhanced early production of inflammatory chemokines improves viral control in the lung."}
72
+ {"query_id": 1370, "query": "Vitamin D deficiency is unrelated to birth weight."}
73
+ {"query_id": 261, "query": "Chronic aerobic exercise alters endothelial function, improving vasodilating mechanisms mediated by NO."}
74
+ {"query_id": 141, "query": "Auditory entrainment is strengthened when people see congruent visual and auditory information."}
75
+ {"query_id": 142, "query": "Autologous transplantation of mesenchymal stem cells causes a higher rate of opportunistic infections than induction therapy with anti-interleukin-2 receptor antibodies."}
76
+ {"query_id": 384, "query": "Epidemiological disease burden from noncommunicable diseases is more prevalent in low economic settings."}
77
+ {"query_id": 143, "query": "Autologous transplantation of mesenchymal stem cells causes fewer opportunistic infections than induction therapy with anti-interleukin-2 receptor antibodies."}
78
+ {"query_id": 385, "query": "Epigenetic modulating agents (EMAs) modulate antitumor immune response in a cancer model system."}
79
+ {"query_id": 386, "query": "Errors in peripheral IV drug administration are most common during bolus administration and multiple-step medicine preparations."}
80
+ {"query_id": 1368, "query": "Vitamin D deficiency effects the term of delivery."}
81
+ {"query_id": 146, "query": "Autologous transplantation of mesenchymal stem cells has lower rates of rejection than induction therapy with anti-interleukin-2 receptor antibodies."}
82
+ {"query_id": 388, "query": "Ethanol stress decreases the expression of IBP in bacteria."}
83
+ {"query_id": 268, "query": "Cold exposure increases BAT recruitment."}
84
+ {"query_id": 1245, "query": "The one-child policy has been successful in lowering population growth."}
85
+ {"query_id": 148, "query": "Autophagy declines in aged organisms."}
86
+ {"query_id": 269, "query": "Cold exposure reduces BAT recruitment."}
87
+ {"query_id": 820, "query": "N-terminal cleavage increases success identifying transcription start sites."}
88
+ {"query_id": 700, "query": "Localization of PIN1 in the Arabidopsis embryo does not require VPS9a"}
89
+ {"query_id": 821, "query": "N-terminal cleavage reduces success identifying transcription start sites."}
90
+ {"query_id": 702, "query": "Localization of PIN1 in the roots of Arabidopsis does not require VPS9a"}
91
+ {"query_id": 823, "query": "N348I mutations cause resistance to zidovudine (AZT)."}
92
+ {"query_id": 42, "query": "A high microerythrocyte count raises vulnerability to severe anemia in homozygous alpha (+)- thalassemia trait subjects."}
93
+ {"query_id": 48, "query": "A total of 1,000 people in the UK are asymptomatic carriers of vCJD infection."}
94
+ {"query_id": 49, "query": "ADAR1 binds to Dicer to cleave pre-miRNA."}
95
+ {"query_id": 1385, "query": "cSMAC formation enhances weak ligand signalling."}
96
+ {"query_id": 1021, "query": "Rapid up-regulation and higher basal expression of interferon-induced genes reduce survival of granule cell neurons that are infected by West Nile virus."}
97
+ {"query_id": 1020, "query": "Rapid up-regulation and higher basal expression of interferon-induced genes increase survival of granule cell neurons that are infected by West Nile virus."}
98
+ {"query_id": 1262, "query": "The repair of Cas9-induced double strand breaks in human DNA is error-prone."}
99
+ {"query_id": 1140, "query": "Taking 400mg of \u03b1-tocopheryl acetate helps to prevent prostate cancer."}
100
+ {"query_id": 1382, "query": "aPKCz causes tumour enhancement by affecting glutamine metabolism."}
101
+ {"query_id": 274, "query": "Combination nicotine replacement therapies with varenicline or bupropion lead to significantly higher long-term abstinence rates at 52 weeks than varenicline monotherapy."}
102
+ {"query_id": 1019, "query": "Rapid phosphotransfer rates govern fidelity in two component systems"}
103
+ {"query_id": 275, "query": "Combining phosphatidylinositide 3-kinase and MEK 1/2 inhibitors is effective at treating KRAS mutant tumors."}
104
+ {"query_id": 1259, "query": "The relationship between a breast cancer patient's capacity to metabolize tamoxifen and treatment outcome is dependent on the patient's genetic make-up."}
105
+ {"query_id": 1137, "query": "TNFAIP3 is a tumor suppressor in glioblastoma."}
106
+ {"query_id": 1379, "query": "Women with a higher birth weight are more likely to develop breast cancer later in life."}
107
+ {"query_id": 399, "query": "Exposure to fine particulate air pollution is relate to anxiety prevalence."}
108
+ {"query_id": 279, "query": "Commelina yellow mottle virus' (ComYMV) genome consists of 7489 baise pairs."}
109
+ {"query_id": 1014, "query": "Rapamycin decreases the concentration of triacylglycerols in fruit flies."}
110
+ {"query_id": 830, "query": "NF2 (Merlin) causes phosphorylation and subsequent cytoplasmic sequestration of YAP in Drosophila by activating LATS1/2 kinases."}
111
+ {"query_id": 831, "query": "NF2 (Merlin) prevents phosphorylation and subsequent cytoplasmic sequestration of YAP in Drosophila."}
112
+ {"query_id": 1012, "query": "Radioiodine treatment of non-toxic multinodular goitre reduces thyroid volume."}
113
+ {"query_id": 832, "query": "NFAT4 activation requires IP3R-mediated Ca2+ mobilization."}
114
+ {"query_id": 834, "query": "NOX2-independent pathways can generate peroxynitrite by reacting with nitrogen intermediates."}
115
+ {"query_id": 956, "query": "Pleiotropic coupling of GLP-1R to intracellular effectors promotes distinct profiles of cellular signaling."}
116
+ {"query_id": 50, "query": "AIRE is expressed in some skin tumors."}
117
+ {"query_id": 715, "query": "Low expression of miR7a does represses target genes and exerts a biological function in ovaries."}
118
+ {"query_id": 957, "query": "Podocytes are motile and migrate in the presence of injury."}
119
+ {"query_id": 51, "query": "ALDH1 expression is associated with better breast cancer outcomes."}
120
+ {"query_id": 716, "query": "Low expression of miR7a exerts a biological function in testis."}
121
+ {"query_id": 837, "query": "NR5A2 is important in development of endometrial tissues."}
122
+ {"query_id": 53, "query": "ALDH1 expression is associated with poorer prognosis in breast cancer."}
123
+ {"query_id": 718, "query": "Low nucleosome occupancy correlates with low methylation levels across species."}
124
+ {"query_id": 839, "query": "Nanoparticles can be targeted against specific cell types by incorporating aptamers into lipid nanoparticles."}
125
+ {"query_id": 54, "query": "AMP-activated protein kinase (AMPK) activation increases inflammation-related fibrosis in the lungs."}
126
+ {"query_id": 56, "query": "APOE4 expression in iPSC-derived neurons increases AlphaBeta production and tau phosphorylation causing GABA neuron degeneration."}
127
+ {"query_id": 57, "query": "APOE4 expression in iPSC-derived neurons increases AlphaBeta production and tau phosphorylation, delaying GABA neuron degeneration."}
128
+ {"query_id": 1274, "query": "The tip of the inner tube of the toxic type VI secretion system (T6SS) antibacterial effector in Escherichia coli (E. coli) carries toxic effector proteins."}
129
+ {"query_id": 1395, "query": "p16INK4A accumulation is linked to an abnormal wound response caused by the microinvasive step of advanced Oral Potentially Malignant Lesions (OPMLs)."}
130
+ {"query_id": 1273, "query": "The sliding activity of kinesin-8 protein Kip3 promotes bipolar spindle assembly."}
131
+ {"query_id": 1272, "query": "The single flash-evoked ERG b-wave is generated by activity of ON-bipolar cells."}
132
+ {"query_id": 1150, "query": "Tetraspanin-3 is a causative factor in the development of acute myelogenous leukemia"}
133
+ {"query_id": 1271, "query": "The severity of cardiac involvement in amyloidosis can be described by the degree of transmurality of late gadolinium enhancement in MRI."}
134
+ {"query_id": 1270, "query": "The risk of male prisoners harming themselves is ten times that of female prisoners."}
135
+ {"query_id": 163, "query": "Bariatric surgery has a positive impact on mental health."}
136
+ {"query_id": 1029, "query": "Reduced responsiveness to interleukin-2 in regulatory T cells is associated with greater resistance to autoimmune diseases such as Type 1 Diabetes."}
137
+ {"query_id": 960, "query": "Polymeal nutrition reduces cardiovascular mortality."}
138
+ {"query_id": 1389, "query": "mTORC2 regulates intracellular cysteine levels through xCT inhibition."}
139
+ {"query_id": 1146, "query": "Teaching hospitals do not provide better care than non-teaching hospitals."}
140
+ {"query_id": 1024, "query": "Recurrent mutations occur frequently within CTCF anchor sites adjacent to oncogenes."}
141
+ {"query_id": 1266, "query": "The risk of breast cancer among parous women increases with placental weight of pregnancies, and this association is strongest for premenopausal breast cancer."}
142
+ {"query_id": 721, "query": "Lupus-prone mice infected with curliproducing bacteria have higher autoantibody titers compared to controls."}
143
+ {"query_id": 1144, "query": "Taxation of sugar-sweetened beverages had no effect on the incidence rate of type II diabetes in India."}
144
+ {"query_id": 723, "query": "Ly49Q directs the organization of neutrophil migration to inflammation sites by regulating membrane raft functions."}
145
+ {"query_id": 845, "query": "Neutrophil extracellular traps (NETs) are released by ANCA-stimulated neutrophils."}
146
+ {"query_id": 967, "query": "Pretreatment with the Arp2/3 inhibitor CK-666 affects lamelliopodia formation."}
147
+ {"query_id": 847, "query": "New drugs for tuberculosis often do not penetrate the necrotic portion of a tuberculosis lesion in high concentrations."}
148
+ {"query_id": 727, "query": "Ly6C hi monocytes have a lower inflammatory capacity compared to their Ly6C lo counterparts."}
149
+ {"query_id": 728, "query": "Ly6C hi monocytes have a lower inflammatory capacity than Ly6C lo monocytes."}
150
+ {"query_id": 729, "query": "Lymphadenopathy is observed in knockin mouse lacking the SHP-2 MAPK pathway."}
151
+ {"query_id": 1163, "query": "The DdrB protein from Deinococcus radiodurans is an alternative SSB."}
152
+ {"query_id": 1041, "query": "Replacement of histone H2A with H2A.Z slows gene activation in yeasts by stabilizing +1 nucleosomes."}
153
+ {"query_id": 171, "query": "Basophils counteract disease development in patients with systemic lupus erythematosus (SLE)."}
154
+ {"query_id": 1282, "query": "Therapeutic use of the drug Dapsone to treat pyoderma gangrenous is based on anecdotal evidence."}
155
+ {"query_id": 1281, "query": "The ureABIEFGH gene cluster is induced by nickel (II) ion."}
156
+ {"query_id": 294, "query": "Crossover hot spots are not found within gene promoters in Saccharomyces cerevisiae."}
157
+ {"query_id": 1280, "query": "The ureABIEFGH gene cluster encodes urease maturation proteins : UreD/UreH, UreE, UreF, and UreG."}
158
+ {"query_id": 295, "query": "Crosstalk between dendritic cells (DCs) and innate lymphoid cells (ILCs) is important in the regulation of intestinal homeostasis."}
159
+ {"query_id": 298, "query": "Cytochrome c is released from the mitochondrial intermembrane space to cytosol during apoptosis."}
160
+ {"query_id": 179, "query": "Birth-weight is positively associated with breast cancer."}
161
+ {"query_id": 971, "query": "Primary cervical cancer screening with HPV detection has higher longitudinal sensitivity than conventional cytology to detect cervical intraepithelial neoplasia grade 2."}
162
+ {"query_id": 1279, "query": "The treatment of cancer patients with co-IR blockade precipitates adverse autoimmune events."}
163
+ {"query_id": 1278, "query": "The treatment of cancer patients with co-IR blockade does not cause any adverse autoimmune events."}
164
+ {"query_id": 852, "query": "Non-invasive ventilation use should be decreased if there is inadequate response to conventional treatment."}
165
+ {"query_id": 975, "query": "Primary pro-inflammatory cytokines induce secondary pro- and anti-inflammatory mediators."}
166
+ {"query_id": 613, "query": "Increased microtubule acetylation repairs LRRK2 Roc-COR domain mutation induced locomotor deficits."}
167
+ {"query_id": 70, "query": "Activation of PPM1D suppresses p53 function."}
168
+ {"query_id": 72, "query": "Activator-inhibitor pairs are provided dorsally by Admpchordin."}
169
+ {"query_id": 859, "query": "Normal expression of RUNX1 has tumor-promoting effects."}
170
+ {"query_id": 619, "query": "Increased vessel density along with a reduction in fibrosis decreases the efficacy of chemotherapy treatments."}
171
+ {"query_id": 75, "query": "Active H. pylori urease has a polymeric structure that compromises two subunits, UreA and UreB."}
172
+ {"query_id": 1175, "query": "The PPR MDA5 has two N-terminal CARD domains."}
173
+ {"query_id": 180, "query": "Blocking the interaction between TDP-43 and respiratory complex I proteins ND3 and ND6 leads to increased TDP-43-induced neuronal loss."}
174
+ {"query_id": 183, "query": "Bone marrow cells contribute to adult macrophage compartments."}
175
+ {"query_id": 1292, "query": "There is no association between HNF4A mutations and diabetes risks."}
176
+ {"query_id": 185, "query": "Breast cancer development is determined exclusively by genetic factors."}
177
+ {"query_id": 1290, "query": "There is an inverse relationship between hip fractures and statin use."}
178
+ {"query_id": 1049, "query": "Ribosomopathies have a low degree of cell and tissue specific pathology."}
179
+ {"query_id": 982, "query": "Proteins synthesized at the growth cone are ubiquitinated at a higher rate than proteins from the cell body."}
180
+ {"query_id": 742, "query": "Macrolides have no protective effect against myocardial infarction."}
181
+ {"query_id": 501, "query": "Headaches are not correlated with cognitive impairment."}
182
+ {"query_id": 743, "query": "Macrolides protect against myocardial infarction."}
183
+ {"query_id": 985, "query": "Pseudogene PTENP1 regulates the expression of PTEN by functioning as an miRNA decoy."}
184
+ {"query_id": 502, "query": "Healthcare delivery efficiency in crowded delivery centers is impaired by improving structural, logistical, and interpersonal elements."}
185
+ {"query_id": 623, "query": "Individuals with low serum vitamin D concentrations have increased risk of multiple sclerosis."}
186
+ {"query_id": 744, "query": "Macropinocytosis contributes to a cell's supply of amino acids via the intracellular uptake of protein."}
187
+ {"query_id": 507, "query": "Helminths interfere with immune system control of macrophages activated by IL-4 favor Mycobacterium tuberculosis replication."}
188
+ {"query_id": 628, "query": "Infection of human T-cell lymphotropic virus type 1 is most frequent in individuals of African origin."}
189
+ {"query_id": 508, "query": "Hematopoietic Stem Cell purification reaches purity rate of up to 50%."}
190
+ {"query_id": 1187, "query": "The YAP1 and TEAD complex tanslocates into the nucleus where it interacts with transcription factors and DNA-binding proteins that modulate target gene transcription."}
191
+ {"query_id": 1185, "query": "The US health care system can save up to $750 million if 7% of patients waiting for kidney transplants participate in the optimized national kidney paired donation program."}
192
+ {"query_id": 1062, "query": "S-nitrosylated GAPDH physiologically transnitrosylates histone deacetylases."}
193
+ {"query_id": 1180, "query": "The PRR MDA5 is a sensor of RNA virus infection."}
194
+ {"query_id": 198, "query": "CCL19 is absent within dLNs."}
195
+ {"query_id": 870, "query": "Obesity decreases life quality."}
196
+ {"query_id": 993, "query": "Pyridostatin destabilizes the G - quadruplex in the telomeric region."}
197
+ {"query_id": 873, "query": "Obesity is determined solely by environmental factors."}
198
+ {"query_id": 1179, "query": "The PRR MDA5 has a central DExD/H RNA helices domain."}
199
+ {"query_id": 1298, "query": "Thigh-length graduated compression stockings (GCS) did not reduce deep vein thrombosis in patients admitted to hospital who are immobile because of acute stroke."}
200
+ {"query_id": 513, "query": "High cardiopulmonary fitness causes increased mortality rate."}
201
+ {"query_id": 514, "query": "High dietary calcium intakes are unnecessary for prevention of secondary hyperparathyroidism in subjects with 25(OH)D levels above 75 nmol/liter."}
202
+ {"query_id": 756, "query": "Many proteins in human cells can be post-translationally modified at lysine residues via acetylation."}
203
+ {"query_id": 636, "query": "Inositol lipid 3-phosphatase PTEN converts Ptdlns(3,4)P 2 into phosphatidylinositol 4-phosphate."}
204
+ {"query_id": 516, "query": "High levels of CRP reduces the risk of exacerbations in chronic obstructive pulmonary disease (COPD)."}
205
+ {"query_id": 637, "query": "Input from mental and physical health care professionals is effective at decreasing homelessness."}
206
+ {"query_id": 879, "query": "Occupancy of ribosomes by IncRNAs do not make functional peptides."}
207
+ {"query_id": 517, "query": "High levels of copeptin decrease risk of diabetes."}
208
+ {"query_id": 759, "query": "Mathematical models predict that using Artemisinin-based combination therapy over nongametocytocidal drugs have a dramatic impact in reducing malaria transmission."}
209
+ {"query_id": 94, "query": "Albendazole is used to treat lymphatic filariasis."}
210
+ {"query_id": 99, "query": "Alizarin forms hydrogen bonds with residues involved in PGAM1 substrate binding."}
211
+ {"query_id": 1197, "query": "The availability of safe places to study is not effective at decreasing homelessness."}
212
+ {"query_id": 1196, "query": "The availability of safe places to study is effective at decreasing homelessness."}
213
+ {"query_id": 1194, "query": "The arm density of TatAd complexes is due to structural rearrangements within Class1 TatAd complexes such as the 'charge zipper mechanism'."}
214
+ {"query_id": 1191, "query": "The amount of publicly available DNA data doubles every 10 years."}
215
+ {"query_id": 880, "query": "Occupancy of ribosomes by IncRNAs mirror 5 0-UTRs"}
216
+ {"query_id": 882, "query": "Omnivores produce less trimethylamine N-oxide from dietary I-carnitine than vegetarians."}
217
+ {"query_id": 641, "query": "Insomnia can be effectively treated with cognitive behavioral therapy."}
218
+ {"query_id": 521, "query": "High-sensitivity cardiac troponin T (HSCT-T) dosage may not be diagnostic if the onset of symptoms occurs less than 3 hours before acute myocardial injury (AMI)."}
219
+ {"query_id": 644, "query": "Insulin increases risk of severe kidney failure."}
220
+ {"query_id": 887, "query": "Only a minority of cells survive development after differentiation into stress-resistant spores."}
221
+ {"query_id": 525, "query": "Histone demethylase recruitment and a transient decrease in histone methylation is necessary for ligand-dependent induction of transcription by nuclear receptors."}
222
+ {"query_id": 768, "query": "Mercaptopurine is anabolized into the inactive methylmercaptopurine by thiopurine methyltrasnferase (TPMT)."}
223
+ {"query_id": 527, "query": "Homozygous deletion of murine Sbds gene from osterix-expressing mesenchymal stem and progenitor cells (MPCs) prevents oxidative stress."}
224
+ {"query_id": 528, "query": "Human T-lymphotropic virus type-I-associated myelopathy / tropical spastic paraparesis (HAM/TSP) patients produce Immunoglobulin G (IgG) antibodies which cross-react with an immunodominant epitope in Tax."}
225
+ {"query_id": 649, "query": "Integrating classroom-based collaborative learning with Web-based collaborative learning leads to subpar class performance"}
226
+ {"query_id": 1088, "query": "Silencing of Bcl2 is important for the maintenance and progression of tumors."}
227
+ {"query_id": 1086, "query": "Sildenafil improves erectile function in men who experience sexual dysfunction as a result of the use of SSRI antidepressants."}
228
+ {"query_id": 770, "query": "Metastatic colorectal cancer treated with a single agent fluoropyrimidines resulted in reduced efficacy and lower quality of life when compared with oxaliplatin-based chemotherapy in elderly patients."}
229
+ {"query_id": 410, "query": "Febrile seizures increase the threshold for development of epilepsy."}
230
+ {"query_id": 411, "query": "Febrile seizures reduce the threshold for development of epilepsy."}
231
+ {"query_id": 532, "query": "Hyperfibrinogenemia decreases rates of femoropopliteal bypass thrombosis."}
232
+ {"query_id": 533, "query": "Hyperfibrinogenemia increases rates of femoropopliteal bypass thrombosis."}
233
+ {"query_id": 775, "query": "Mice defective for deoxyribonucleic acid (DNA) polymerase I (polI) reveal increased sensitivity to ionizing radiation (IR)."}
234
+ {"query_id": 1199, "query": "The benefits of colchicine were achieved with effective widespread use of secondary prevention strategies such as high-dose statins."}
235
+ {"query_id": 535, "query": "Hypertension is frequently observed in type 1 diabetes patients."}
236
+ {"query_id": 415, "query": "Female carriers of the Apolipoprotein E4 (APOE4) allele have increased risk for dementia."}
237
+ {"query_id": 536, "query": "Hypocretin neurones induce panicprone state in rats."}
238
+ {"query_id": 659, "query": "Ivermectin is used to treat lymphatic filariasis."}
239
+ {"query_id": 539, "query": "Hypoglycemia increases the risk of dementia."}
240
+ {"query_id": 1099, "query": "Statins decrease blood cholesterol."}
241
+ {"query_id": 660, "query": "Ivermectin is used to treat onchocerciasis."}
242
+ {"query_id": 781, "query": "Mice that lack Interferon-\u03b3 or its receptor exhibit high resistance to experimental autoimmune myocarditis."}
243
+ {"query_id": 540, "query": "Hypothalamic glutamate neurotransmission is crucial to energy balance."}
244
+ {"query_id": 783, "query": "Mice without IFN-\u03b3 or its receptor are resistant to EAM induced with \u03b1-MyHC/CFA."}
245
+ {"query_id": 300, "query": "Cytosolic proteins bind to iron-responsive elements on mRNAs coding for DMT1. Cytosolic proteins bind to iron-responsive elements on mRNAs coding for proteins involved in iron uptake."}
246
+ {"query_id": 421, "query": "Flexible molecules experience greater steric hindrance in the tumor microenviroment than rigid molecules."}
247
+ {"query_id": 784, "query": "MicroRNA is involved in the regulation of Neural Stem Cell (NSC) differentiation and proliferation dynamic homeostasis"}
248
+ {"query_id": 785, "query": "Microarray results from culture-amplified mixtures of serotypes correlate poorly with microarray results from uncultured mixtures."}
249
+ {"query_id": 544, "query": "IFIT1 restricts viral replication by sequestrating mis-capped viral RNAs."}
250
+ {"query_id": 303, "query": "DMRT1 is a sex-determining gene that is epigenetically regulated by the MHM region."}
251
+ {"query_id": 1089, "query": "Smc5/6 engagment drives the activation of SUMO E3 ligase Mms21 by ATP-dependent remolding."}
252
+ {"query_id": 549, "query": "IRG1 has antiviral effects against neurotropic viruses."}
253
+ {"query_id": 551, "query": "ITAM phosphorylation prevents the transfer of the T cell receptor (TCR) signal from the echo-domain to the cytoplasmic tail of the T cell receptor (TCR)."}
254
+ {"query_id": 793, "query": "Mitochondria are uninvolved in apoptosis."}
255
+ {"query_id": 431, "query": "FoxO3a activation in neuronal death is mediated by reactive oxygen species (ROS)."}
256
+ {"query_id": 552, "query": "IgA plasma cells that are specific for transglutaminase 2 accumulate in the duodenal mucosa on commencement of a gluten-free diet."}
257
+ {"query_id": 674, "query": "LDL cholesterol has no involvement in the development of cardiovascular disease."}
258
+ {"query_id": 312, "query": "De novo assembly of sequence data has more specific contigs than unassembled sequence data."}
259
+ {"query_id": 554, "query": "Immune complex triggered cell death leads to extracellular release of neutrophil protein HMGB1."}
260
+ {"query_id": 314, "query": "Deamination of cytidine to uridine on the minus strand of viral DNA results in catastrophic G-to-A mutations in the viral genome."}
261
+ {"query_id": 436, "query": "Free histones are degraded by a Rad53-dependent mechanism once DNA has been replicated."}
262
+ {"query_id": 437, "query": "Functional consequences of genomic alterations due to Myelodysplastic syndrome (MDS) are poorly understood due to the lack of an animal model."}
263
+ {"query_id": 439, "query": "Fz/PCP-dependent Pk localizes to the anterior membrane of neuroectoderm cells during zebrafish neuralation"}
264
+ {"query_id": 560, "query": "Immune responses result in the development of inflammatory Th17 cells and anti-inflammatory iTregs."}
265
+ {"query_id": 440, "query": "Fz/PCP-dependent Pk localizes to the anterior membrane of notochord cells during zebrafish neuralation."}
266
+ {"query_id": 1303, "query": "Tirasemtiv has no effect on fast-twitch muscle."}
267
+ {"query_id": 684, "query": "Lack of clpC does not affect sporulation efficiency in Bacillus subtilis cells."}
268
+ {"query_id": 443, "query": "GATA-3 is important for hematopoietic stem cell (HSC) function."}
269
+ {"query_id": 324, "query": "Deleting Raptor reduces G-CSF levels."}
270
+ {"query_id": 327, "query": "Deletion of \u03b1v\u03b28 does not result in a spontaneous inflammatory phenotype."}
271
+ {"query_id": 569, "query": "In adult tissue, most T cells are memory T cells."}
272
+ {"query_id": 208, "query": "CHEK2 is not associated with breast cancer."}
273
+ {"query_id": 690, "query": "Less than 10% of the gabonese children with Schimmelpenning-Feuerstein-Mims syndrome (SFM) had a plasma lactate of more than 5mmol/L."}
274
+ {"query_id": 691, "query": "Leukemia associated Rho guanine nucleotide-exchange factor represses RhoA in response to SRC activation."}
275
+ {"query_id": 692, "query": "Leuko-increased blood increases infectious complications in red blood cell transfusion."}
276
+ {"query_id": 1316, "query": "Transferred UCB T cells acquire a memory-like phenotype in recipients."}
277
+ {"query_id": 693, "query": "Leuko-reduced blood reduces infectious complications in red blood cell transfusion."}
278
+ {"query_id": 452, "query": "Gene expression does not vary appreciably across genetically identical cells."}
279
+ {"query_id": 212, "query": "CR is associated with higher methylation age."}
280
+ {"query_id": 575, "query": "In domesticated populations of Saccharomyces cerevisiae, whole chromosome aneuploidy is very uncommon."}
281
+ {"query_id": 213, "query": "CRP is not predictive of postoperative mortality following Coronary Artery Bypass Graft (CABG) surgery."}
282
+ {"query_id": 577, "query": "In mice, P. chabaudi parasites are able to proliferate faster early in infection when inoculated at lower numbers than when inoculated at high numbers."}
283
+ {"query_id": 578, "query": "In mouse models, the loss of CSF1R facilitates MOZ-TIF2-induced leuekmogenesis."}
284
+ {"query_id": 216, "query": "CX3CR1 on the Th2 cells impairs T cell survival"}
285
+ {"query_id": 217, "query": "CX3CR1 on the Th2 cells promotes T cell survival"}
286
+ {"query_id": 338, "query": "Dexamethasone decreases risk of postoperative bleeding."}
287
+ {"query_id": 218, "query": "CX3CR1 on the Th2 cells promotes airway inflammation."}
288
+ {"query_id": 219, "query": "CX3CR1 on the Th2 cells suppresses airway inflammation."}
289
+ {"query_id": 1319, "query": "Transplanted human glial cells can differentiate within the host animal."}
290
+ {"query_id": 100, "query": "All hematopoietic stem cells segregate their chromosomes randomly."}
291
+ {"query_id": 1204, "query": "The combination of H3K4me3 and H3K79me2 is found in quiescent hair follicle stem cells."}
292
+ {"query_id": 343, "query": "Diabetic patients with acute coronary syndrome experience increased short-term and long-term risk for bleeding events."}
293
+ {"query_id": 1202, "query": "The center of the granuloma in an immune cell induces a pro-inflammatory immune response."}
294
+ {"query_id": 587, "query": "In transgenic mice harboring green florescent protein under the control of the Sox2 promoter, less than ten percent of the cells with green florescent colocalize with cell proliferation markers."}
295
+ {"query_id": 1200, "query": "The binding orientation of the ML-SA1 activator at hTRPML2 is different from the binding orientation of the ML-SA1 activator at hTRPML1."}
296
+ {"query_id": 589, "query": "In young and middle-aged adults, current or remote uses of ADHD medications do not increase the risk of serious cardiovascular events."}
297
+ {"query_id": 1320, "query": "Transplanted human glial progenitor cells are incapable of forming a neural network with host animals' neurons."}
298
+ {"query_id": 903, "query": "PD-1 triggering on monocytes reduces IL-10 production by monocytes."}
299
+ {"query_id": 904, "query": "PDPN promotes efficient motility along stromal surfaces by activating the C-type lectin receptor to rearrange the actin cytoskeleton in dendritic cells."}
300
+ {"query_id": 1207, "query": "The composition of myosin-II isoform switches from the polarizable B isoform to the more homogenous A isoform during hematopoietic differentiation."}
trec-covid.jsonl ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 44, "query": "How much impact do masks have on preventing the spread of the COVID-19?"}
2
+ {"query_id": 45, "query": "How has the COVID-19 pandemic impacted mental health?"}
3
+ {"query_id": 46, "query": "what evidence is there for dexamethasone as a treatment for COVID-19?"}
4
+ {"query_id": 47, "query": "what are the health outcomes for children who contract COVID-19?"}
5
+ {"query_id": 48, "query": "what are the benefits and risks of re-opening schools in the midst of the COVID-19 pandemic?"}
6
+ {"query_id": 49, "query": "do individuals who recover from COVID-19 show sufficient immune response, including antibody levels and T-cell mediated immunity, to prevent re-infection?"}
7
+ {"query_id": 50, "query": "what is known about an mRNA vaccine for the SARS-CoV-2 virus?"}
8
+ {"query_id": 10, "query": "has social distancing had an impact on slowing the spread of COVID-19?"}
9
+ {"query_id": 11, "query": "what are the guidelines for triaging patients infected with coronavirus?"}
10
+ {"query_id": 12, "query": "what are best practices in hospitals and at home in maintaining quarantine?"}
11
+ {"query_id": 13, "query": "what are the transmission routes of coronavirus?"}
12
+ {"query_id": 14, "query": "what evidence is there related to COVID-19 super spreaders"}
13
+ {"query_id": 15, "query": "how long can the coronavirus live outside the body"}
14
+ {"query_id": 16, "query": "how long does coronavirus remain stable on surfaces?"}
15
+ {"query_id": 17, "query": "are there any clinical trials available for the coronavirus"}
16
+ {"query_id": 18, "query": "what are the best masks for preventing infection by Covid-19?"}
17
+ {"query_id": 19, "query": "what type of hand sanitizer is needed to destroy Covid-19?"}
18
+ {"query_id": 1, "query": "what is the origin of COVID-19"}
19
+ {"query_id": 2, "query": "how does the coronavirus respond to changes in the weather"}
20
+ {"query_id": 3, "query": "will SARS-CoV2 infected people develop immunity? Is cross protection possible?"}
21
+ {"query_id": 4, "query": "what causes death from Covid-19?"}
22
+ {"query_id": 5, "query": "what drugs have been active against SARS-CoV or SARS-CoV-2 in animal studies?"}
23
+ {"query_id": 6, "query": "what types of rapid testing for Covid-19 have been developed?"}
24
+ {"query_id": 7, "query": "are there serological tests that detect antibodies to coronavirus?"}
25
+ {"query_id": 8, "query": "how has lack of testing availability led to underreporting of true incidence of Covid-19?"}
26
+ {"query_id": 9, "query": "how has COVID-19 affected Canada"}
27
+ {"query_id": 20, "query": "are patients taking Angiotensin-converting enzyme inhibitors (ACE) at increased risk for COVID-19?"}
28
+ {"query_id": 21, "query": "what are the mortality rates overall and in specific populations"}
29
+ {"query_id": 22, "query": "are cardiac complications likely in patients with COVID-19?"}
30
+ {"query_id": 23, "query": "what kinds of complications related to COVID-19 are associated with hypertension?"}
31
+ {"query_id": 24, "query": "what kinds of complications related to COVID-19 are associated with diabetes"}
32
+ {"query_id": 25, "query": "which biomarkers predict the severe clinical course of 2019-nCOV infection?"}
33
+ {"query_id": 26, "query": "what are the initial symptoms of Covid-19?"}
34
+ {"query_id": 27, "query": "what is known about those infected with Covid-19 but are asymptomatic?"}
35
+ {"query_id": 28, "query": "what evidence is there for the value of hydroxychloroquine in treating Covid-19?"}
36
+ {"query_id": 29, "query": "which SARS-CoV-2 proteins-human proteins interactions indicate potential for drug targets. Are there approved drugs that can be repurposed based on this information?"}
37
+ {"query_id": 30, "query": "is remdesivir an effective treatment for COVID-19"}
38
+ {"query_id": 31, "query": "How does the coronavirus differ from seasonal flu?"}
39
+ {"query_id": 32, "query": "Does SARS-CoV-2 have any subtypes, and if so what are they?"}
40
+ {"query_id": 33, "query": "What vaccine candidates are being tested for Covid-19?"}
41
+ {"query_id": 34, "query": "What are the longer-term complications of those who recover from COVID-19?"}
42
+ {"query_id": 35, "query": "What new public datasets are available related to COVID-19?"}
43
+ {"query_id": 36, "query": "What is the protein structure of the SARS-CoV-2 spike?"}
44
+ {"query_id": 37, "query": "What is the result of phylogenetic analysis of SARS-CoV-2 genome sequence?"}
45
+ {"query_id": 38, "query": "What is the mechanism of inflammatory response and pathogenesis of COVID-19 cases?"}
46
+ {"query_id": 39, "query": "What is the mechanism of cytokine storm syndrome on the COVID-19?"}
47
+ {"query_id": 40, "query": "What are the observed mutations in the SARS-CoV-2 genome and how often do the mutations occur?"}
48
+ {"query_id": 41, "query": "What are the impacts of COVID-19 among African-Americans that differ from the rest of the U.S. population?"}
49
+ {"query_id": 42, "query": "Does Vitamin D impact COVID-19 prevention and treatment?"}
50
+ {"query_id": 43, "query": "How has the COVID-19 pandemic impacted violence in society, including violent crimes?"}
webis-touche2020.jsonl ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"query_id": 44, "query": "Should election day be a national holiday?"}
2
+ {"query_id": 45, "query": "Should the penny stay in circulation?"}
3
+ {"query_id": 46, "query": "Should net neutrality be restored?"}
4
+ {"query_id": 47, "query": "Is homework beneficial?"}
5
+ {"query_id": 48, "query": "Should the voting age be lowered?"}
6
+ {"query_id": 49, "query": "Should body cameras be mandatory for police?"}
7
+ {"query_id": 50, "query": "Should everyone get a universal basic income?"}
8
+ {"query_id": 10, "query": "Should any vaccines be required for children?"}
9
+ {"query_id": 11, "query": "Should performance-enhancing drugs be accepted in sports?"}
10
+ {"query_id": 12, "query": "Should birth control pills be available over the counter?"}
11
+ {"query_id": 13, "query": "Can alternative energy effectively replace fossil fuels?"}
12
+ {"query_id": 14, "query": "Is sexual orientation determined at birth?"}
13
+ {"query_id": 15, "query": "Should animals be used for scientific or commercial testing?"}
14
+ {"query_id": 16, "query": "Should prescription drugs be advertised directly to consumers?"}
15
+ {"query_id": 17, "query": "Should recreational marijuana be legal?"}
16
+ {"query_id": 18, "query": "Should churches remain tax-exempt?"}
17
+ {"query_id": 19, "query": "Should gay marriage be legal?"}
18
+ {"query_id": 1, "query": "Should teachers get tenure?"}
19
+ {"query_id": 2, "query": "Is vaping with e-cigarettes safe?"}
20
+ {"query_id": 3, "query": "Should insider trading be allowed?"}
21
+ {"query_id": 4, "query": "Should corporal punishment be used in schools?"}
22
+ {"query_id": 5, "query": "Should social security be privatized?"}
23
+ {"query_id": 6, "query": "Is a college education worth it?"}
24
+ {"query_id": 7, "query": "Should felons who have completed their sentence be allowed to vote?"}
25
+ {"query_id": 8, "query": "Should abortion be legal?"}
26
+ {"query_id": 9, "query": "Should students have to wear school uniforms?"}
27
+ {"query_id": 20, "query": "Is drinking milk healthy for humans?"}
28
+ {"query_id": 21, "query": "Is human activity primarily responsible for global climate change?"}
29
+ {"query_id": 22, "query": "Is a two-state solution an acceptable solution to the Israeli-Palestinian conflict?"}
30
+ {"query_id": 23, "query": "Should euthanasia or physician-assisted suicide be legal?"}
31
+ {"query_id": 24, "query": "Does lowering the federal corporate income tax rate create jobs?"}
32
+ {"query_id": 26, "query": "Do standardized tests improve education?"}
33
+ {"query_id": 27, "query": "Should more gun control laws be enacted?"}
34
+ {"query_id": 28, "query": "Should prostitution be legal?"}
35
+ {"query_id": 29, "query": "Should the government allow illegal immigrants to become citizens?"}
36
+ {"query_id": 30, "query": "Should adults have the right to carry a concealed handgun?"}
37
+ {"query_id": 31, "query": "Is obesity a disease?"}
38
+ {"query_id": 32, "query": "Do electronic voting machines improve the voting process?"}
39
+ {"query_id": 33, "query": "Should people become vegetarian?"}
40
+ {"query_id": 34, "query": "Are social networking sites good for our society?"}
41
+ {"query_id": 35, "query": "Do violent video games contribute to youth violence?"}
42
+ {"query_id": 36, "query": "Is golf a sport?"}
43
+ {"query_id": 37, "query": "Is cell phone radiation safe?"}
44
+ {"query_id": 38, "query": "Should marijuana be a medical option?"}
45
+ {"query_id": 39, "query": "Should the federal minimum wage be increased?"}
46
+ {"query_id": 40, "query": "Should the death penalty be allowed?"}
47
+ {"query_id": 41, "query": "Should student loan debt be easier to discharge in bankruptcy?"}
48
+ {"query_id": 42, "query": "Should fighting be allowed in hockey?"}
49
+ {"query_id": 43, "query": "Should bottled water be banned?"}