-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTagPred.py
More file actions
381 lines (307 loc) · 201 KB
/
TagPred.py
File metadata and controls
381 lines (307 loc) · 201 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
# coding: utf-8
# In[39]:
from __future__ import division
import nltk
import re
import sys, string, random
from bs4 import BeautifulSoup
import xml.etree.ElementTree as ET
import numpy as np
import pandas as pd
import lxml.html
from nltk.corpus import stopwords
from nltk.stem import *
import networkx as nx
from llda import LLDA
from bayesian_ic import BIC
from optparse import OptionParser
# In[37]:
'''
This function is used to get the root of the xml tree.
Input- filename
Output- root of xml tree
'''
def getroot_xml(filename):
root = ET.parse(filename).getroot()
return root
# In[3]:
'''
This function parses xml data
Input- root of xml tree
Output- Title, Question body, Title + Question, Tags
'''
def get_questions_tags(root):
questions = []
tags = []
titles = []
ques_with_title = []
for row in root.findall('row'):
post = row.get("PostTypeId")
post_type = BeautifulSoup(post, "lxml")
if post_type.get_text() == "1":
#Get the Questions
body = row.get("Body")
soup = BeautifulSoup(body, "lxml")
[s.extract() for s in soup('code')] #To remove code from the question posted
question_s = soup.get_text()
# q_set = nltk.word_tokenize(question_s)
q_set = question_s.split()
question = nltk.Text(q_set)
questions.append(question)
#Get the Tags
tag_list = row.get("Tags")
tag_str = re.sub('[<>]', ' ', tag_list)
# tag_set = nltk.word_tokenize(tag_str)
tag_set = tag_str.split()
tag_text = nltk.Text(tag_set)
tags.append(tag_text)
#Get the Titles
title_s = row.get("Title")
# t_set = nltk.word_tokenize(title_s)
t_set = title_s.split()
title = nltk.Text(t_set)
titles.append(title)
q_with_t = title_s + " " + question_s
# qt_set = nltk.word_tokenize(q_with_t)
qt_set = q_with_t.split()
ques_title = nltk.Text(qt_set)
ques_with_title.append(ques_title)
return questions, tags, titles, ques_with_title
# In[4]:
'''
This function removes numbers and special characters from question
'''
def number_removal(ques_list):
q_with_t_list = []
for ques in ques_list:
q_t_text = ""
for word in ques:
characters = [".", ",", ":", "(", ")", "[", "]", "{", "}", "?", "'", "!"]
q_text = ''.join([i for i in word if not (i.isdigit() or [e for e in characters if e in i])])
if q_text != '':
q_t_text += q_text + " "
qt_set = q_t_text.split()
# qt_set = nltk.word_tokenize(q_t_text)
title_ques = nltk.Text(qt_set)
q_with_t_list.append(title_ques)
return q_with_t_list
# In[5]:
'''
This function removes stopwords from the question body
'''
def remove_stopwords(q_list):
q_with_t_list = []
for text in q_list:
stopwords = nltk.corpus.stopwords.words('english')
st = ""
for w in text:
if w.lower() not in stopwords:
st += w.lower() + " "
w_set = st.split()
# w_set = nltk.word_tokenize(st)
ques_body = nltk.Text(w_set)
q_with_t_list.append(ques_body)
return q_with_t_list
# In[6]:
'''
This function performs stemming and coverts each word in the question to it's root word
'''
def stemming(q_list):
stemmer = PorterStemmer()
post = []
for q in q_list:
st = ""
for word in q:
st += stemmer.stem(word) + " "
# w_set = nltk.word_tokenize(st)
w_set = st.split()
ques_body = nltk.Text(w_set)
post.append(ques_body)
return post
# In[7]:
'''
This function will do the final fixes. Last stage of pre-processing
'''
def fixing(text):
post = []
for tokens in text:
for i, t in enumerate(tokens):
if t == '#' and i > 0:
left = tokens[:i-1]
joined = [tokens[i - 1] + t]
right = tokens[i + 1:]
tokens = left + joined + right
post.append(tokens)
return post
# In[8]:
'''
Preprocessor component - Tokenisation, Number removal, Stop-word removal, Stemming
'''
def preprocessor(filename):
root = getroot_xml(filename)
questions, tags, titles, ques_with_title = get_questions_tags(root)
ques_with_title_list = number_removal(ques_with_title)
title_ques = remove_stopwords(ques_with_title_list)
posts = stemming(title_ques)
frame = pd.DataFrame({0 : titles,
1 : questions,
2 : ques_with_title,
3 : posts,
4 : tags})
return frame
# In[9]:
'''
Frequentist Inference Component - POS Tagger
'''
def pos_tag(posts):
pos_tags = []
for post in posts:
tag = []
for word in post:
te = nltk.pos_tag([word])
t = te[0]
if t[1].startswith('NN') or t[1].startswith('JJ'):
tag.append(t)
pos_tags.append(tag)
return pos_tags
# In[11]:
'''
Write POS TAG output to file
'''
def write_to_file(filename, posts):
o = open(filename,'w')
pos = pos_tag(posts)
o.write(str(pos))
o.close()
# In[14]:
p = preprocessor('Posts_small.xml')
# In[10]:
ds = [[(u'set', 'NN'), (u'form', 'NN'), (u'opac', 'NN'), (u'use', 'NN'), (u'decim', 'NN'), (u'doubl', 'NN'), (u'want', 'NN'), (u'use', 'NN'), (u'track-bar', 'NN'), (u'chang', 'NN'), (u'form', 'NN'), (u'opac', 'NN'), (u'code', 'NN'), (u'tri', 'NN'), (u'build', 'NN'), (u'error', 'NN'), (u'cannot', 'NN'), (u'implicitli', 'NN'), (u'convert', 'NN'), (u'type', 'NN'), (u'decim', 'NN'), (u'doubl', 'NN'), (u'tri', 'NN'), (u'control', 'NN'), (u'doesnt', 'NN'), (u'work', 'NN'), (u'code', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'vbnet', 'NN'), (u'past', 'NN')], [(u'doesnt', 'NN'), (u'percentag', 'NN'), (u'width', 'NN'), (u'child', 'NN'), (u'absolut', 'NN'), (u'posit', 'NN'), (u'parent', 'NN'), (u'work', 'NN'), (u'absolut', 'NN'), (u'posit', 'NN'), (u'contain', 'NN'), (u'sever', 'NN'), (u'children', 'NNS'), (u'rel', 'NN'), (u'posit', 'NN'), (u'use', 'NN'), (u'percentage-bas', 'NN'), (u'width', 'NN'), (u'child', 'NN'), (u'collaps', 'NNS'), (u'width', 'NN'), (u'ie', 'NN'), (u'firefox', 'NN'), (u'safari', 'NN'), (u'use', 'NN'), (u'pixel', 'NN'), (u'width', 'NN'), (u'work', 'NN'), (u'parent', 'NN'), (u'rel', 'NN'), (u'posit', 'NN'), (u'percentag', 'NN'), (u'width', 'NN'), (u'child', 'NN'), (u'work', 'NN'), (u'someth', 'NN'), (u'im', 'NN'), (u'miss', 'NN'), (u'easi', 'NN'), (u'fix', 'NN'), (u'besid', 'NN'), (u'pixel-bas', 'NN'), (u'width', 'NN'), (u'child', 'NN'), (u'area', 'NN'), (u'specif', 'NN'), (u'cover', 'NN')], [(u'tool', 'NN'), (u'convert', 'NN'), (u'visual', 'JJ'), (u'j#', 'NN'), (u'code', 'NN'), (u'c#', 'NN'), (u'convers', 'NNS'), (u'tool', 'NN'), (u'port', 'NN'), (u'visual', 'JJ'), (u'j#', 'NN'), (u'code', 'NN'), (u'c#', 'NN')], [(u'calcul', 'NN'), (u'someon', 'NN'), (u'age', 'NN'), (u'c#', 'NN'), (u'repres', 'NNS'), (u'person', 'NN'), (u'birthday', 'NN'), (u'calcul', 'NN'), (u'age', 'NN')], [(u'calcul', 'NN'), (u'rel', 'NN'), (u'time', 'NN'), (u'specif', 'NN'), (u'valu', 'NN'), (u'display', 'NN'), (u'rel', 'NN'), (u'time', 'NN'), (u'hour', 'NN'), (u'day', 'NN'), (u'month', 'NN'), (u'et', 'NN'), (u'cetera', 'NN')], [(u'determin', 'NN'), (u'web', 'NN'), (u'user', 'NN'), (u'time', 'NN'), (u'zone', 'NN'), (u'standard', 'NN'), (u'way', 'NN'), (u'web', 'NN'), (u'server', 'NN'), (u'determin', 'NN'), (u'time', 'NN'), (u'zone', 'NN'), (u'offset', 'NN'), (u'user', 'NN'), (u'perhap', 'NN'), (u'header', 'NN'), (u'part', 'NN'), (u'user-ag', 'JJ'), (u'descript', 'NN')], [(u'differ', 'NN'), (u'mathfloor', 'NN'), (u'mathtrunc', 'NN'), (u'differ', 'NN'), (u'net', 'NN')], [(u'fill', 'NN'), (u'dataset', 'NN'), (u'datat', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'result', 'NN'), (u'set', 'NN'), (u'expos', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'asmx', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'usual', 'JJ'), (u'busi', 'NN'), (u'tier', 'NN'), (u'return', 'NN'), (u'type', 'NN'), (u'serial', 'JJ'), (u'transport', 'NN'), (u'asmx', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'way', 'NN'), (u'popul', 'NN'), (u'type', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'resultset', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'altern', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'serializ', 'NN'), (u'expos', 'NN'), (u'asmx', 'NN'), (u'web', 'NN'), (u'servic', 'NN')], [(u'binari', 'NN'), (u'data', 'NNS'), (u'mysql', 'NN'), (u'store', 'NN'), (u'binari', 'NN'), (u'data', 'NNS'), (u'mysql', 'NN')], [(u'fastest', 'JJS'), (u'way', 'NN'), (u'valu', 'NN'), (u'\u03c0', 'NN'), (u'solut', 'NN'), (u'welcom', 'NN'), (u'languag', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'fastest', 'JJS'), (u'way', 'NN'), (u'valu', 'NN'), (u'\u03c0', 'NN'), (u'person', 'NN'), (u'challeng', 'NN'), (u'specif', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'way', 'NN'), (u'dont', 'NN'), (u'involv', 'NN'), (u'use', 'NN'), (u'd', 'NN'), (u'constant', 'JJ'), (u'hard-cod', 'NN'), (u'number', 'NN'), (u'program', 'NN'), (u'test', 'NN'), (u'variou', 'NN'), (u'way', 'NN'), (u'inlin', 'NN'), (u'assembl', 'NN'), (u'version', 'NN'), (u'theori', 'NN'), (u'fastest', 'JJS'), (u'option', 'NN'), (u'clearli', 'NN'), (u'portable;', 'NN'), (u'ive', 'JJ'), (u'includ', 'NN'), (u'baselin', 'NN'), (u'compar', 'NN'), (u'version', 'NN'), (u'test', 'NN'), (u'built-in', 'NN'), (u'version', 'NN'), (u'fastest', 'JJS'), (u'gcc', 'NN'), (u'auto-fold', 'JJ'), (u'constant', 'JJ'), (u'specifi', 'NN'), (u'version', 'NN'), (u'fastest', 'JJS'), (u'main', 'JJ'), (u'test', 'NN'), (u'program', 'NN'), (u'inlin', 'NN'), (u'assembl', 'NN'), (u'stuff', 'NN'), (u'note', 'NN'), (u'work', 'NN'), (u'x', 'NN'), (u'x', 'NN'), (u'system', 'NN'), (u'build', 'NN'), (u'script', 'NN'), (u'build', 'NN'), (u'configur', 'NN'), (u'im', 'NN'), (u'test', 'NN'), (u'test', 'NN'), (u'variou', 'NN'), (u'compil', 'NN'), (u'flag', 'NN'), (u'ive', 'JJ'), (u'compar', 'NN'), (u'-bit', 'NN'), (u'-bit', 'NN'), (u'optimis', 'NN'), (u'differ', 'NN'), (u'ive', 'JJ'), (u'tri', 'NN'), (u'switch', 'NN'), (u'order', 'NN'), (u'test', 'NN'), (u'version', 'NN'), (u'top', 'NN'), (u'everi', 'NN'), (u'time', 'NN')], [(u'throw', 'NN'), (u'error', 'NN'), (u'mysql', 'NN'), (u'trigger', 'NN'), (u'trigger', 'NN'), (u'updat', 'NN'), (u'tabl', 'NN'), (u'throw', 'NN'), (u'error', 'NN'), (u'prevent', 'NN'), (u'updat', 'NN'), (u'tabl', 'NN')], [(u'use', 'NN'), (u'c', 'NNS'), (u'socket', 'NN'), (u'api', 'NN'), (u'c++', 'NN'), (u'z/o', 'NN'), (u'ive', 'JJ'), (u'issu', 'NN'), (u'c', 'NNS'), (u'socket', 'NN'), (u'api', 'NN'), (u'work', 'NN'), (u'properli', 'NN'), (u'c++', 'NN'), (u'specif', 'NN'), (u'includ', 'NN'), (u'sys/socketh', 'NN'), (u'compil', 'NN'), (u'time', 'NN'), (u'error', 'NN'), (u'tell', 'NN'), (u'af_inet', 'NN'), (u'defin', 'NN'), (u'miss', 'NN'), (u'someth', 'NN'), (u'obviou', 'NN'), (u'relat', 'NN'), (u'fact', 'NN'), (u'im', 'NN'), (u'code', 'NN'), (u'z/o', 'NN'), (u'problem', 'NN'), (u'much', 'JJ'), (u'complic', 'NN'), (u'oh', 'NN'), (u'dear', 'NN'), (u'investig', 'NN'), (u'discov', 'NN'), (u'#ifdef', 'NN'), (u'im', 'NN'), (u'hit', 'NN'), (u'appar', 'NN'), (u'z/o', 'NN'), (u'isnt', 'NN'), (u'happi', 'NN'), (u'defin', 'NN'), (u'type', 'NN'), (u'socket', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'littl', 'NN'), (u'action', 'NN'), (u'person', 'NN'), (u'idea', 'NN'), (u'oe', 'NN'), (u'socket', 'NN'), (u'thingi', 'NN'), (u'z/o', 'NN'), (u'socket', 'NN'), (u'programm', 'NN'), (u'perhap', 'NN'), (u'rundown', 'NN'), (u'work', 'NN')], [(u'unload', 'NN'), (u'bytearray', 'NN'), (u'actionscript', 'NN'), (u'forc', 'NN'), (u'unload', 'NN'), (u'memori', 'NN'), (u'actionscript', 'NN'), (u'tri', 'NN'), (u'success', 'NN')], [(u'check', 'NN'), (u'chang', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'tabl', 'NN'), (u'monitor', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'databas', 'NN'), (u'chang', 'NN'), (u'tabl', 'NN'), (u'use', 'NN'), (u'trigger', 'NN'), (u'modifi', 'NN'), (u'structur', 'NN'), (u'databas', 'NN'), (u'way', 'NN'), (u'prefer', 'NN'), (u'program', 'NN'), (u'environ', 'NN'), (u'net', 'NN'), (u'c#', 'NN'), (u'id', 'NN'), (u'abl', 'NN'), (u'support', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'sp', 'NN'), (u'newer', 'NN'), (u'applic', 'NN'), (u'bolt-on', 'NN'), (u'data', 'NNS'), (u'visual', 'JJ'), (u'compani', 'NN'), (u'product', 'NN'), (u'custom', 'NN'), (u'base', 'NN'), (u'thousand', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'put', 'NN'), (u'requir', 'NN'), (u'modifi', 'NN'), (u'third-parti', 'NN'), (u'vendor', 'NN'), (u'tabl', 'NN'), (u'everi', 'NN'), (u'instal', 'NN'), (u'"chang', 'NN'), (u'table"', 'NN'), (u'mean', 'NN'), (u'chang', 'NN'), (u'tabl', 'NN'), (u'data', 'NNS'), (u'chang', 'NN'), (u'tabl', 'NN'), (u'structur', 'NN'), (u'ultim', 'NN'), (u'chang', 'NN'), (u'trigger', 'NN'), (u'event', 'NN'), (u'applic', 'NN'), (u'check', 'NN'), (u'chang', 'NN'), (u'interv', 'NN'), (u'best', 'JJS'), (u'cours', 'NNS'), (u'action', 'NN'), (u'requir', 'NN'), (u'trigger', 'NN'), (u'schema', 'NN'), (u'modif', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'seem', 'NN'), (u'use', 'NN'), (u'binary_checksum', 'NN'), (u'function', 'NN'), (u't-sql', 'NN'), (u'way', 'NN'), (u'plan', 'NN'), (u'implement', 'NN'), (u'everi', 'NN'), (u'x', 'NN'), (u'second', 'JJ'), (u'queri', 'NN'), (u'compar', 'NN'), (u'store', 'NN'), (u'valu', 'NN'), (u'valu', 'NN'), (u'chang', 'NN'), (u'tabl', 'NN'), (u'row', 'NN'), (u'row', 'NN'), (u'use', 'NN'), (u'queri', 'NN'), (u'compar', 'NN'), (u'return', 'NN'), (u'checksum', 'NN'), (u'store', 'NN'), (u'valu', 'NN')], [(u'reliabl', 'NN'), (u'timer', 'NN'), (u'consol', 'NN'), (u'applic', 'NN'), (u'awar', 'NN'), (u'net', 'NN'), (u'timer', 'NN'), (u'type', 'NN'), (u'compar', 'NN'), (u'timer', 'NN'), (u'class', 'NN'), (u'net', 'NN'), (u'framework', 'NN'), (u'class', 'NN'), (u'librari', 'NN'), (u'chosen', 'NN'), (u'thread', 'NN'), (u'timer', 'NN'), (u'type', 'NN'), (u'drift', 'NN'), (u'main', 'JJ'), (u'thread', 'NN'), (u'busi', 'NN'), (u'need', 'NN'), (u'reliabl', 'NN'), (u'way', 'NN'), (u'timer', 'NN'), (u'work', 'NN'), (u'control', 'NN'), (u'timer', 'NN'), (u'put', 'NN'), (u'thread', 'NN'), (u'tick', 'NN'), (u'work', 'NN'), (u'begin', 'NN'), (u'complet', 'NN'), (u'parent', 'NN'), (u'thread', 'NN'), (u'busi', 'NN'), (u'issu', 'NN'), (u'timer', 'NN'), (u'consol', 'NN'), (u'applic', 'NN'), (u'timer', 'NN'), (u'tick', 'NN'), (u'thread', 'NN'), (u'main', 'JJ'), (u'thread', 'NN'), (u'anyth', 'NN'), (u'applic', 'NN'), (u'tri', 'NN'), (u'ad', 'NN'), (u'loop', 'NN'), (u'main', 'JJ'), (u'thread', 'NN'), (u'busi', 'NN'), (u'timer', 'NN')], [(u'best', 'JJS'), (u'way', 'NN'), (u'plugin', 'NN'), (u'php', 'NN'), (u'applic', 'NN'), (u'start', 'NN'), (u'new', 'JJ'), (u'web', 'NN'), (u'applic', 'NN'), (u'php', 'NN'), (u'time', 'NN'), (u'want', 'NN'), (u'creat', 'NN'), (u'someth', 'NN'), (u'peopl', 'NN'), (u'extend', 'NN'), (u'use', 'NN'), (u'plugin', 'NN'), (u'interfac', 'NN'), (u'write', 'NN'), (u'hook', 'NN'), (u'code', 'NN'), (u'plugin', 'NN'), (u'attach', 'NN'), (u'specif', 'NN'), (u'event', 'NN')], [(u'multipl', 'NN'), (u'submit', 'NN'), (u'button', 'NN'), (u'html', 'NN'), (u'form', 'NN'), (u'creat', 'NN'), (u'wizard', 'NN'), (u'html', 'NN'), (u'form', 'NN'), (u'button', 'NN'), (u'goe', 'NN'), (u'goe', 'NN'), (u'sinc', 'NN'), (u'button', 'NN'), (u'markup', 'NN'), (u'press', 'NN'), (u'enter', 'NN'), (u'use', 'NN'), (u'button', 'NN'), (u'submit', 'NN'), (u'form', 'NN'), (u'exampl', 'NN'), (u'decid', 'NN'), (u'button', 'NN'), (u'use', 'NN'), (u'submit', 'NN'), (u'form', 'NN'), (u'user', 'NN'), (u'press', 'NN'), (u'enter', 'NN'), (u'way', 'NN'), (u'press', 'NN'), (u'enter', 'NN'), (u'wizard', 'NN'), (u'move', 'NN'), (u'next', 'JJ'), (u'page', 'NN'), (u'previou', 'NN'), (u'use', 'NN')], [(u'distinct', 'NN'), (u'order', 'NN'), (u'list', 'NN'), (u'name', 'NN'), (u'datat', 'NN'), (u'use', 'NN'), (u'linq', 'NN'), (u'column', 'NN'), (u'want', 'NN'), (u'collect', 'NN'), (u'uniqu', 'NN'), (u'name', 'NN'), (u'order', 'NN'), (u'alphabet', 'NN'), (u'queri', 'NN'), (u'ignor', 'NN'), (u'order', 'NN'), (u'claus', 'NN'), (u'enforc', 'NN')], [(u'offic', 'NN'), (u'file', 'NN'), (u'type', 'NN'), (u'mime', 'NN'), (u'type', 'NN'), (u'identifi', 'NN'), (u'charact', 'NN'), (u'list', 'NN'), (u'mime', 'NN'), (u'type', 'NN'), (u'identifi', 'NN'), (u'charact', 'NN'), (u'offic', 'NN'), (u'file', 'NN'), (u'upload', 'NN'), (u'form', 'NN'), (u'restrict', 'NN'), (u'upload', 'NN'), (u'base', 'NN'), (u'extens', 'NNS'), (u'identifi', 'NN'), (u'charact', 'NN'), (u'cannot', 'NN'), (u'seem', 'NN'), (u'offic', 'NN'), (u'mime', 'NN'), (u'type', 'NN')], [(u'page', 'NN'), (u'collect', 'NN'), (u'linq', 'NN'), (u'page', 'NN'), (u'collect', 'NN'), (u'linq', 'NN')], [(u'exist', 'NN'), (u'comment', 'NN'), (u'rdoc', 'NN'), (u'rubi', 'NN'), (u'ive', 'JJ'), (u'comment', 'NN'), (u'want', 'NN'), (u'rdoc', 'NN'), (u'comment', 'NN'), (u'format', 'NN'), (u'appropri', 'NN'), (u'view', 'NN'), (u'use', 'NN'), (u'anyon', 'NN'), (u'start', 'NN'), (u'understand', 'NN'), (u'use', 'NN'), (u'rdoc', 'NN')], [(u'subclips', 'NNS'), (u'aptana', 'NN'), (u'work', 'NN'), (u'newest', 'JJS'), (u'releas', 'NNS'), (u'subvers', 'NNS'), (u'version', 'NN'), (u'subclips', 'NNS'), (u'current', 'JJ'), (u'avail', 'NN'), (u'aptana', 'NN'), (u'automag', 'NN'), (u'plugin', 'NN'), (u'manag', 'NN'), (u'work', 'NN'), (u'newest', 'JJS'), (u'version', 'NN'), (u'subvers', 'NNS'), (u'subclips', 'NNS'), (u'websit', 'NN'), (u'howev', 'NN'), (u'eclips', 'NNS'), (u'ad', 'NN'), (u'new', 'JJ'), (u'remot', 'NN'), (u'updat', 'NN'), (u'site', 'NN'), (u'updat', 'NN'), (u'manag', 'NN'), (u'tri', 'NN'), (u'instal', 'NN'), (u'told', 'NN'), (u'need', 'NN'), (u'mylyn', 'NN'), (u'much', 'JJ'), (u'search', 'NN'), (u'found', 'NN'), (u'mylyn', 'NN'), (u'ad', 'NN'), (u'new', 'JJ'), (u'remot', 'NN'), (u'updat', 'NN'), (u'site', 'NN'), (u'updat', 'NN'), (u'manag', 'NN'), (u'tri', 'NN'), (u'instal', 'NN'), (u'told', 'NN'), (u'need', 'NN'), (u'orgeclipseui', 'NN'), (u'equival', 'NN'), (u'look', 'NN'), (u'configur', 'NN'), (u'detail', 'NN'), (u'aptana', 'NN'), (u'look', 'NN'), (u'built', 'NN'), (u'eclips', 'NNS'), (u'anyon', 'NN'), (u'way', 'NN'), (u'upgrad', 'NN'), (u'version', 'NN'), (u'eclips', 'NNS'), (u'aptana', 'NN'), (u'built', 'NN'), (u'way', 'NN'), (u'subclips', 'NNS'), (u'work', 'NN'), (u'newest', 'JJS'), (u'version', 'NN'), (u'subvers', 'NNS'), (u'isnt', 'NN'), (u'necessarili', 'NN'), (u'"programming"', 'NN'), (u'question', 'NN'), (u'hope', 'NN'), (u'ok', 'NN'), (u'sinc', 'NN'), (u'highli', 'NN'), (u'relev', 'NN'), (u'program', 'NN'), (u'experi', 'NN')], [(u'sqlstatementexecut', 'NN'), (u'multipl', 'NN'), (u'queri', 'NN'), (u'statement', 'NN'), (u'ive', 'JJ'), (u'databas', 'NN'), (u'gener', 'NN'), (u'script', 'NN'), (u'sql', 'NN'), (u'want', 'NN'), (u'execut', 'NN'), (u'adob', 'NN'), (u'air', 'NN'), (u'applic', 'NN'), (u'execut', 'NN'), (u'adob', 'NN'), (u'air', 'NN'), (u'use', 'NN'), (u'method', 'NN'), (u'error', 'NN'), (u'gener', 'NN'), (u'howev', 'NN'), (u'exist', 'NN'), (u'seem', 'NN'), (u'look', 'NN'), (u'queri', 'NN'), (u'semicolon-', 'NN'), (u'remov', 'NN'), (u'queri', 'NN'), (u'fail', 'NN'), (u'way', 'NN'), (u'call', 'NN'), (u'multipl', 'NN'), (u'queri', 'NN'), (u'statement', 'NN')], [(u'flat', 'JJ'), (u'file', 'NN'), (u'databas', 'NN'), (u'best', 'JJS'), (u'practic', 'JJ'), (u'creat', 'NN'), (u'flat', 'JJ'), (u'file', 'NN'), (u'databas', 'NN'), (u'structur', 'NN'), (u'php', 'NN'), (u'lot', 'NN'), (u'matur', 'NN'), (u'php', 'NN'), (u'flat', 'JJ'), (u'file', 'NN'), (u'framework', 'NN'), (u'attempt', 'NN'), (u'implement', 'NN'), (u'sql-like', 'NN'), (u'queri', 'NN'), (u'syntax', 'NN'), (u'top', 'NN'), (u'purpos', 'NN'), (u'case', 'NN'), (u'use', 'NN'), (u'databas', 'NN'), (u'point', 'NN'), (u'eleg', 'NN'), (u'trick', 'NN'), (u'good', 'JJ'), (u'perform', 'NN'), (u'featur', 'NN'), (u'small', 'JJ'), (u'code', 'NN'), (u'overhead', 'NN'), (u'want', 'NN'), (u'problem', 'NN'), (u'place', 'NN')], [(u'gettimeofday', 'NN'), (u'guarante', 'NN'), (u'microsecond', 'NN'), (u'resolut', 'NN'), (u'port', 'NN'), (u'game', 'NN'), (u'origin', 'NN'), (u'win', 'NN'), (u'api', 'NN'), (u'linux', 'NN'), (u'port', 'NN'), (u'os', 'NN'), (u'x', 'NN'), (u'port', 'NN'), (u'win', 'NN'), (u'port', 'NN'), (u'linux', 'NN'), (u'implement', 'NN'), (u'usecond', 'NN'), (u'sinc', 'NN'), (u'process', 'NN'), (u'start', 'NN'), (u'coupl', 'NN'), (u'constant', 'JJ'), (u'frequenc', 'NN'), (u'work', 'NN'), (u'machin', 'NN'), (u'bit', 'NN'), (u'variabl', 'NN'), (u'contain', 'NN'), (u'sinc', 'NN'), (u'program', 'NN'), (u'start', 'NN'), (u'portabl', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'discov', 'NN'), (u'work', 'NN'), (u'differ', 'NN'), (u'kernel', 'NNS'), (u'compil', 'NN'), (u'certain', 'JJ'), (u'way', 'NN'), (u'anyth', 'NN'), (u'fine', 'NN'), (u'non-port', 'NN'), (u'someth', 'NN'), (u'linux', 'NN'), (u'howev', 'NN')], [(u'good', 'JJ'), (u'branch', 'NN'), (u'merg', 'NN'), (u'tutori', 'NN'), (u'tortoisesvn', 'NN'), (u'realli', 'NN'), (u'good', 'JJ'), (u'tutori', 'NN'), (u'explain', 'NN'), (u'branch', 'NN'), (u'merg', 'NN'), (u'apach', 'NN'), (u'subvers', 'NNS'), (u'specif', 'NN'), (u'tortoisesvn', 'NN'), (u'client', 'NN')], [(u'anatomi', 'NN'), (u'"memori', 'NN'), (u'leak"', 'NN'), (u'net', 'NN'), (u'perspect', 'NN'), (u'memori', 'NN'), (u'leak', 'NN'), (u'determin', 'NN'), (u'applic', 'NN'), (u'leak', 'NN'), (u'effect', 'NN'), (u'prevent', 'NN'), (u'memori', 'NN'), (u'leak', 'NN'), (u'applic', 'NN'), (u'memori', 'NN'), (u'leak', 'NN'), (u'process', 'NN'), (u'exit', 'NN'), (u'kill', 'NN'), (u'memori', 'NN'), (u'leak', 'NN'), (u'applic', 'NN'), (u'affect', 'NN'), (u'process', 'NN'), (u'system', 'NN'), (u'process', 'NN'), (u'complet', 'NN'), (u'unmanag', 'NN'), (u'code', 'NN'), (u'access', 'NN'), (u'com', 'NN'), (u'interop', 'NN'), (u'and/or', 'NN'), (u'p/invok', 'NN'), (u'answer', 'NN'), (u'question', 'NN'), (u'incomplet', 'NN'), (u'think', 'NN')], [(u'best', 'JJS'), (u'subvers', 'NNS'), (u'client', 'NN'), (u'window', 'NN'), (u'vista', 'NN'), (u'bit', 'NN'), (u'ive', 'JJ'), (u'use', 'NN'), (u'tortoisesvn', 'NN'), (u'window', 'NN'), (u'environ', 'NN'), (u'quit', 'NN'), (u'time', 'NN'), (u'seem', 'NN'), (u'feature-complet', 'NN'), (u'nice', 'JJ'), (u'integr', 'NN'), (u'window', 'NN'), (u'shell', 'NN'), (u'importantli', 'NN'), (u'fairli', 'NN'), (u'painless', 'NN'), (u'teach', 'NN'), (u'colleagu', 'NN'), (u'littl', 'NN'), (u'experi', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'howev', 'NN'), (u'sinc', 'NN'), (u'move', 'NN'), (u'window', 'NN'), (u'vista', 'NN'), (u'bit', 'NN'), (u'tortois', 'NN'), (u'buggi', 'NN'), (u'seem', 'NN'), (u'caus', 'NN'), (u'lot', 'NN'), (u'explorerex', 'NN'), (u'abnorm', 'NN'), (u'crash', 'NN'), (u'older', 'JJR'), (u'version', 'NN'), (u'softwar', 'NN'), (u'latest', 'JJS'), (u'version', 'NN'), (u'build', 'NN'), (u'curiou', 'NN'), (u'anyon', 'NN'), (u'suggest', 'NN'), (u'subvers', 'NNS'), (u'client', 'NN'), (u'window', 'NN'), (u'specif', 'NN'), (u'vista', 'NN'), (u'bit', 'NN'), (u'use', 'NN'), (u'varieti', 'NN'), (u'text', 'NN'), (u'editor', 'NN'), (u'use', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'dreamweav', 'NN'), (u'svn', 'NN'), (u'ideal', 'NN'), (u'heard', 'NN'), (u'great', 'JJ'), (u'thing', 'NN'), (u'cornerston', 'NN'), (u'love', 'NN'), (u'someth', 'NN'), (u'similar', 'JJ'), (u'window', 'NN'), (u'exist', 'NN'), (u'im', 'NN'), (u'correl', 'NN'), (u'vista/explor', 'NN'), (u'problem', 'NN'), (u'tortois', 'NN'), (u'normal', 'JJ'), (u'occur', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'function', 'NN'), (u'tortois', 'NN'), (u'sometim', 'NN'), (u'bring', 'NN'), (u'"merge"', 'NN'), (u'screen', 'NN'), (u'caus', 'NN'), (u'gui', 'NN'), (u'start', 'NN'), (u'act', 'NN'), (u'strang', 'NN'), (u'eventu', 'NN'), (u'hang', 'NN'), (u'crash', 'NN'), (u'im', 'NN'), (u'instal', 'NN'), (u'mayb', 'NN'), (u'fix', 'NN'), (u'issu', 'NN')], [(u'decod', 'NN'), (u't-sql', 'NN'), (u'cast', 'NN'), (u'c#/vbnet', 'NN'), (u'recent', 'JJ'), (u'site', 'NN'), (u'delug', 'NN'), (u'resurg', 'NN'), (u'asprox', 'NN'), (u'bot', 'NN'), (u'sql', 'NN'), (u'inject', 'NN'), (u'attack', 'NN'), (u'detail', 'NN'), (u'attack', 'NN'), (u'attempt', 'NN'), (u'execut', 'NN'), (u'sql', 'NN'), (u'code', 'NN'), (u'encod', 'NN'), (u't-sql', 'NN'), (u'command', 'NN'), (u'ascii', 'NN'), (u'encod', 'NN'), (u'binari', 'NN'), (u'string', 'NN'), (u'look', 'NN'), (u'someth', 'NN'), (u'abl', 'NN'), (u'decod', 'NN'), (u'sql', 'NN'), (u'littl', 'NN'), (u'wari', 'NN'), (u'sinc', 'NN'), (u'didnt', 'NN'), (u'exactli', 'NN'), (u'time', 'NN'), (u'tri', 'NN'), (u'write', 'NN'), (u'simpl', 'NN'), (u'decod', 'NN'), (u'tool', 'NN'), (u'decod', 'NN'), (u'type', 'NN'), (u'text', 'NN'), (u'touch', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'main', 'JJ'), (u'part', 'NN'), (u'need', 'NN'), (u'decod', 'NN'), (u'ive', 'JJ'), (u'tri', 'NN'), (u'command', 'NN'), (u'luck', 'NN'), (u'anybodi', 'NN'), (u'suggest', 'NN'), (u'proper', 'NN'), (u'way', 'NN'), (u'translat', 'NN'), (u'encod', 'NN'), (u'use', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'possibl', 'NN'), (u'ill', 'NN'), (u'vbnet', 'NN'), (u'code', 'NN'), (u'sinc', 'NN'), (u'im', 'NN'), (u'familiar', 'JJ'), (u'okay', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'im', 'NN'), (u'miss', 'NN'), (u'someth', 'NN'), (u'im', 'NN'), (u'sinc', 'NN'), (u'input', 'NN'), (u'basic', 'JJ'), (u'string', 'NN'), (u'start', 'NN'), (u'snippet', 'NN'), (u'encod', 'NN'), (u'portion', 'NN'), (u'c', 'NNS'), (u'translat', 'NN'), (u'decla', 'NN'), (u'attempt', 'NN'), (u'return', 'NN'), (u'exact', 'NN'), (u'thing', 'NN'), (u'put', 'NN'), (u'sinc', 'NN'), (u'convert', 'NN'), (u'charact', 'NN'), (u'byte', 'NN'), (u'realiz', 'NN'), (u'need', 'NN'), (u'pars', 'NNS'), (u'charact', 'NN'), (u'byte', 'NN'), (u'manual', 'JJ'), (u'sinc', 'NN'), (u'dont', 'NN'), (u'method', 'NN'), (u'littl', 'NN'), (u'decod', 'NN'), (u'look', 'NN'), (u'someth', 'NN'), (u'thing', 'NN'), (u'look', 'NN'), (u'good', 'JJ'), (u'coupl', 'NN'), (u'pair', 'NN'), (u'loop', 'NN'), (u'balk', 'NN'), (u'"c"', 'NN'), (u'pair', 'NN'), (u'string', 'NN'), (u'incorrect', 'NN'), (u'format', 'NN'), (u'interestingli', 'NN'), (u'step', 'NN'), (u'debugg', 'NN'), (u'getstr', 'NN'), (u'method', 'NN'), (u'byte', 'NN'), (u'array', 'NN'), (u'abl', 'NN'), (u'pars', 'NNS'), (u'point', 'NN'), (u'"-+"', 'NN'), (u'result', 'NN'), (u'anybodi', 'NN'), (u'help', 'NN'), (u'figur', 'NN'), (u'im', 'NN'), (u'miss', 'NN'), (u'need', 'NN'), (u'"direct', 'NN'), (u'cast"', 'NN'), (u'byte', 'NN'), (u'attempt', 'NN'), (u'pars', 'NNS')], [(u'aspnet', 'NN'), (u'site', 'NN'), (u'map', 'NN'), (u'anyon', 'NN'), (u'experi', 'NN'), (u'creat', 'NN'), (u'sql-base', 'NN'), (u'aspnet', 'NN'), (u'site-map', 'NN'), (u'provid', 'NN'), (u'ive', 'JJ'), (u'default', 'NN'), (u'file', 'NN'), (u'work', 'NN'), (u'properli', 'NN'), (u'control', 'NN'), (u'ill', 'NN'), (u'need', 'NN'), (u'way', 'NN'), (u'user', 'NN'), (u'site', 'NN'), (u'creat', 'NN'), (u'modifi', 'NN'), (u'page', 'NN'), (u'dynam', 'NN'), (u'need', 'NN'), (u'tie', 'NN'), (u'page', 'NN'), (u'view', 'NN'), (u'permiss', 'NN'), (u'standard', 'NN'), (u'membership', 'NN'), (u'system', 'NN'), (u'id', 'NN'), (u'advic', 'NN'), (u'articl', 'NN'), (u'video', 'NN'), (u'thank', 'NN')], [(u'java', 'NN'), (u'lib', 'NN'), (u'app', 'NN'), (u'convert', 'NN'), (u'csv', 'NN'), (u'xml', 'NN'), (u'file', 'NN'), (u'exist', 'NN'), (u'applic', 'NN'), (u'librari', 'NN'), (u'java', 'NN'), (u'convert', 'NN'), (u'csv', 'NN'), (u'data', 'NNS'), (u'file', 'NN'), (u'xml', 'NN'), (u'file', 'NN'), (u'xml', 'NN'), (u'tag', 'NN'), (u'provid', 'NN'), (u'possibl', 'NN'), (u'row', 'NN'), (u'contain', 'NN'), (u'column', 'NN'), (u'head', 'NN')], [(u'access', 'NN'), (u'object', 'NN'), (u'properti', 'NN'), (u'object', 'NN'), (u'method', 'NN'), (u'"purist"', 'NN'), (u'"correct"', 'NN'), (u'way', 'NN'), (u'access', 'NN'), (u'object', 'NN'), (u'properti', 'NN'), (u'object', 'NN'), (u'method', 'NN'), (u'getter/sett', 'NN'), (u'method', 'NN'), (u'outsid', 'NN'), (u'object', 'NN'), (u'use', 'NN'), (u'getter/sett', 'NN'), (u'java', 'NN'), (u'php', 'NN'), (u'java', 'NN'), (u'php', 'NN'), (u'forgiv', 'NN'), (u'java', 'NN'), (u'littl', 'NN'), (u'year', 'NN'), (u'sinc', 'NN'), (u'program', 'NN'), (u'java', 'NN'), (u'edit', 'NN'), (u'seem', 'NN'), (u'peopl', 'NN'), (u'assum', 'NN'), (u'talk', 'NN'), (u'privat', 'NN'), (u'protect', 'NN'), (u'variables/properti', 'NN'), (u'learn', 'NN'), (u'oo', 'NN'), (u'taught', 'NN'), (u'use', 'NN'), (u'getters/sett', 'NN'), (u'everi', 'NN'), (u'singl', 'NN'), (u'properti', 'NN'), (u'public', 'NN'), (u'actual', 'JJ'), (u'told', 'NN'), (u'variable/properti', 'NN'), (u'public', 'NN'), (u'start', 'NN'), (u'fals', 'NNS'), (u'assumpt', 'NN'), (u'peopl', 'NN'), (u'answer', 'NN'), (u'question', 'NN'), (u'mayb', 'NN'), (u'public', 'NN'), (u'properti', 'NN'), (u'dont', 'NN'), (u'need', 'NN'), (u'getter', 'NN'), (u'setter', 'NN'), (u'goe', 'NN'), (u'taught', 'NN'), (u'talk', 'NN'), (u'mayb', 'NN'), (u'need', 'NN'), (u'discuss', 'NN'), (u'probabl', 'NN'), (u'good', 'JJ'), (u'topic', 'NN'), (u'differ', 'NN'), (u'question', 'NN')], [(u'export', 'NN'), (u'data', 'NNS'), (u'sql', 'NN'), (u'server', 'NN'), (u'mysql', 'NN'), (u'ive', 'JJ'), (u'bang', 'NN'), (u'head', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'tri', 'NN'), (u'lot', 'NN'), (u'data', 'NNS'), (u'ive', 'JJ'), (u'databas', 'NN'), (u'nearli', 'NN'), (u'tabl', 'NN'), (u'need', 'NN'), (u'turn', 'NN'), (u'mysql', 'NN'), (u'databas', 'NN'), (u'call', 'NN'), (u'use', 'NN'), (u'bcp', 'NN'), (u'unfortun', 'NN'), (u'doesnt', 'NN'), (u'produc', 'NN'), (u'valid', 'JJ'), (u'csv', 'NN'), (u'string', 'NN'), (u'arent', 'NN'), (u'encapsul', 'NN'), (u'cant', 'NN'), (u'deal', 'NN'), (u'row', 'NN'), (u'string', 'NN'), (u'comma', 'NN'), (u'whatev', 'NN'), (u'use', 'NN'), (u'delimit', 'NN'), (u'hand', 'NN'), (u'write', 'NN'), (u'creat', 'NN'), (u'tabl', 'NN'), (u'statement', 'NN'), (u'obvious', 'JJ'), (u'csv', 'NN'), (u'doesnt', 'NN'), (u'tell', 'NN'), (u'anyth', 'NN'), (u'data', 'NNS'), (u'type', 'NN'), (u'tool', 'NN'), (u'connect', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'mysql', 'NN'), (u'copi', 'NN'), (u'view', 'NN'), (u'store', 'NN'), (u'procedur', 'NN'), (u'trigger', 'NN'), (u'etc', 'NN'), (u'isnt', 'NN'), (u'hard', 'JJ'), (u'copi', 'NN'), (u'tabl', 'NN'), (u'use', 'NN'), (u'base', 'NN'), (u'type', 'NN'), (u'db', 'NN'), (u'anybodi', 'NN'), (u'tool', 'NN'), (u'dont', 'NN'), (u'mind', 'NN'), (u'mani', 'NN'), (u'assumpt', 'NN'), (u'simplif', 'NN'), (u'occur', 'NN'), (u'support', 'NN'), (u'integ', 'NN'), (u'float', 'NN'), (u'datetim', 'NN'), (u'string', 'NN'), (u'lot', 'NN'), (u'prune', 'NN'), (u'normalis', 'NNS'), (u'etc', 'NN'), (u'dont', 'NN'), (u'care', 'NN'), (u'key', 'NN'), (u'relationship', 'NN'), (u'anyth', 'NN'), (u'need', 'NN'), (u'initi', 'NN'), (u'set', 'NN'), (u'data', 'NNS'), (u'fast!', 'NN')], [(u'xsd', 'NN'), (u'dataset', 'NN'), (u'ignor', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'pretti', 'NNS'), (u'standard', 'NN'), (u'tabl', 'NN'), (u'setup', 'NN'), (u'current', 'JJ'), (u'applic', 'NN'), (u'use', 'NN'), (u'net', 'NN'), (u'xsd', 'NN'), (u'featur', 'NN'), (u'tabl', 'NN'), (u'consist', 'NN'), (u'standard', 'NN'), (u'contract', 'NN'), (u'inform', 'NN'), (u'column', 'NN'), (u'column', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'tabl', 'NN'), (u'store', 'NN'), (u'basic', 'JJ'), (u'setup', 'NN'), (u'function', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'use', 'NN'), (u'xsd', 'NN'), (u'tool', 'NN'), (u'drag', 'NN'), (u'tabl', 'NN'), (u'auto', 'NN'), (u'detects/cr', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'tabl', 'NN'), (u'work', 'NN'), (u'great', 'JJ'), (u'im', 'NN'), (u'main', 'JJ'), (u'page', 'NN'), (u'view', 'NN'), (u'contract', 'NN'), (u'data', 'NNS'), (u'howev', 'NN'), (u'administr', 'NN'), (u'page', 'NN'), (u'modifi', 'NN'), (u'depart', 'NN'), (u'data', 'NNS'), (u'typic', 'NN'), (u'someth', 'NN'), (u'howev', 'NN'), (u'point', 'NN'), (u'thrown', 'NN'), (u'effect', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'refer', 'NN'), (u'broken', 'NN'), (u'im', 'NN'), (u'guess', 'NN'), (u'sinc', 'NN'), (u'dont', 'NN'), (u'fill', 'NN'), (u'fix', 'NN'), (u'problem', 'NN'), (u'simpli', 'NN'), (u'remov', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'xsd', 'NN'), (u'thing', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'addit', 'NN'), (u'integr', 'NN'), (u'check', 'NN'), (u'xsd', 'NN'), (u'schema', 'NN'), (u'match', 'NN'), (u'sql', 'NN'), (u'schema', 'NN'), (u'databas', 'NN'), (u'nice', 'JJ')], [(u'compress', 'NN'), (u'/', 'NN'), (u'decompress', 'NN'), (u'folder', 'NN'), (u'file', 'NN'), (u'anyon', 'NN'), (u'good', 'JJ'), (u'way', 'NN'), (u'compress', 'NN'), (u'decompress', 'NN'), (u'file', 'NN'), (u'folder', 'NN'), (u'c#', 'NN'), (u'quickli', 'NN'), (u'handl', 'NN'), (u'larg', 'NN'), (u'file', 'NN'), (u'necessari', 'NN')], [(u'track', 'NN'), (u'file', 'NN'), (u'download', 'NN'), (u'websit', 'NN'), (u'play', 'NN'), (u'mp', 'NN'), (u'flash', 'NN'), (u'player', 'NN'), (u'user', 'NN'), (u'click', 'NN'), (u'play', 'NN'), (u'flash', 'NN'), (u'player', 'NN'), (u'automat', 'NN'), (u'download', 'NN'), (u'mp', 'NN'), (u'start', 'NN'), (u'play', 'NN'), (u'easi', 'NN'), (u'way', 'NN'), (u'track', 'NN'), (u'mani', 'NN'), (u'time', 'NN'), (u'particular', 'JJ'), (u'song', 'NN'), (u'clip', 'NN'), (u'binari', 'NN'), (u'file', 'NN'), (u'download', 'NN'), (u'play', 'NN'), (u'link', 'NN'), (u'link', 'NN'), (u'actual', 'JJ'), (u'mp', 'NN'), (u'file', 'NN'), (u'javascript', 'NN'), (u'code', 'NN'), (u'pop', 'NN'), (u'player', 'NN'), (u'latter', 'NN'), (u'easili', 'NN'), (u'log', 'NN'), (u'code', 'NN'), (u'track', 'NN'), (u'number', 'NN'), (u'hit', 'NN'), (u'former', 'JJ'), (u'youll', 'NN'), (u'need', 'NN'), (u'someth', 'NN'), (u'track', 'NN'), (u'web', 'NN'), (u'server', 'NN'), (u'log', 'NN'), (u'distinct', 'NN'), (u'host', 'NN'), (u'plan', 'NN'), (u'webal', 'NN'), (u'nice', 'JJ'), (u'javascript', 'NN'), (u'code', 'NN'), (u'answer', 'NN'), (u'howev', 'NN'), (u'nice', 'JJ'), (u'track', 'NN'), (u'download', 'NN'), (u'use', 'NN'), (u'method', 'NN'), (u'switch', 'NN'), (u'host', 'NN')], [(u'sync', 'NN'), (u'svn', 'NN'), (u'revis', 'NN'), (u'number', 'NN'), (u'aspnet', 'NN'), (u'web', 'NN'), (u'site', 'NN'), (u'stack', 'NN'), (u'overflow', 'NN'), (u'subvers', 'NNS'), (u'version', 'NN'), (u'number', 'NN'), (u'bottom', 'NN'), (u'svn', 'NN'), (u'revis', 'NN'), (u'want', 'NN'), (u'use', 'NN'), (u'automat', 'NN'), (u'version', 'NN'), (u'net', 'NN'), (u'web', 'NN'), (u'site/appl', 'NN'), (u'window', 'NN'), (u'form', 'NN'), (u'wpd', 'NN'), (u'projects/solut', 'NN'), (u'implement', 'NN')], [(u'embed', 'NN'), (u'window', 'NN'), (u'media', 'NNS'), (u'player', 'NN'), (u'browser', 'NN'), (u'use', 'NN'), (u'wmv', 'NN'), (u'video', 'NN'), (u'intern', 'NN'), (u'site', 'NN'), (u'embed', 'NN'), (u'web', 'NN'), (u'site', 'NN'), (u'work', 'NN'), (u'quit', 'NN'), (u'internet', 'NN'), (u'explor', 'NN'), (u'firefox', 'NN'), (u'ive', 'JJ'), (u'found', 'NN'), (u'way', 'NN'), (u'work', 'NN'), (u'firefox', 'NN'), (u'stop', 'NN'), (u'work', 'NN'), (u'internet', 'NN'), (u'explor', 'NN'), (u'want', 'NN'), (u'use', 'NN'), (u'silverlight', 'NN'), (u'especi', 'NN'), (u'sinc', 'NN'), (u'cannot', 'NN'), (u'sure', 'NN'), (u'client', 'NN'), (u'window', 'NN'), (u'xp', 'NN'), (u'window', 'NN'), (u'media', 'NNS'), (u'player', 'NN'), (u'instal', 'NN'), (u'sort', 'NN'), (u'univers', 'NNS'), (u'code', 'NN'), (u'emb', 'NN'), (u'wmp', 'NN'), (u'internet', 'NN'), (u'explor', 'NN'), (u'firefox', 'NN'), (u'need', 'NN'), (u'implement', 'NN'), (u'user-agent-detect', 'JJ'), (u'deliv', 'NN'), (u'differ', 'NN'), (u'html', 'NN'), (u'differ', 'NN'), (u'browser', 'NN')], [(u'version', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'databas', 'NN'), (u'ive', 'JJ'), (u'want', 'NN'), (u'databas', 'NN'), (u'version', 'NN'), (u'control', 'NN'), (u'anyon', 'NN'), (u'advic', 'NN'), (u'recommend', 'NN'), (u'articl', 'NN'), (u'start', 'NN'), (u'ill', 'NN'), (u'want', 'NN'), (u'least', 'JJS'), (u'data', 'NNS'), (u'alumb', 'NN'), (u'mention', 'NN'), (u'user', 'NN'), (u'type', 'NN'), (u'administr', 'NN'), (u'ill', 'NN'), (u'want', 'NN'), (u'larg', 'NN'), (u'collect', 'NN'), (u'gener', 'NN'), (u'test', 'NN'), (u'data', 'NNS'), (u'perform', 'NN'), (u'measur', 'NN')], [(u'print', 'NN'), (u'html', 'NN'), (u'document', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'want', 'NN'), (u'print', 'NN'), (u'html', 'NN'), (u'c#', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'web', 'NN'), (u'browser', 'NN'), (u'control', 'NN'), (u'overkil', 'NN'), (u'function', 'NN'), (u'servic', 'NN'), (u'environ', 'NN'), (u'function', 'NN'), (u'system', 'NN'), (u'tight', 'NN'), (u'secur', 'NN'), (u'constraint', 'NN'), (u'sort', 'NN'), (u'free', 'JJ'), (u'net', 'NN'), (u'librari', 'NN'), (u'support', 'NN'), (u'print', 'NN'), (u'basic', 'JJ'), (u'html', 'NN'), (u'page', 'NN'), (u'code', 'NN'), (u'properli', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'call', 'NN'), (u'ui-typ', 'JJ'), (u'thread', 'NN'), (u'call', 'NN'), (u'service-typ', 'NN'), (u'thread', 'NN'), (u'chang', 'NN'), (u'yield', 'NN'), (u'ie', 'NN'), (u'script', 'NN'), (u'error', 'NN'), (u'error', 'NN'), (u'dialogarguments___ie_printtyp', 'NN'), (u'null', 'NN'), (u'object', 'NN'), (u'url', 'NN'), (u'res//ieframedll/previewdlg', 'NN'), (u'small', 'JJ'), (u'empti', 'NN'), (u'print', 'NN'), (u'preview', 'NN'), (u'dialog', 'NN')], [(u'annot', 'NN'), (u'youtub', 'NN'), (u'video', 'NN'), (u'programmat', 'NN'), (u'want', 'NN'), (u'abl', 'NN'), (u'display', 'NN'), (u'normal', 'JJ'), (u'youtub', 'NN'), (u'video', 'NN'), (u'overlaid', 'NN'), (u'annot', 'NN'), (u'consist', 'NN'), (u'color', 'NN'), (u'rectangl', 'NN'), (u'frame', 'NN'), (u'requir', 'NN'), (u'programat', 'NN'), (u'youtub', 'NN'), (u'annot', 'NN'), (u'requir', 'NN'), (u'use', 'NN'), (u'front', 'NN'), (u'end', 'NN'), (u'creat', 'NN'), (u'hand', 'NN'), (u'want', 'NN'), (u'abl', 'NN'), (u'gener', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'idea', 'NN'), (u'build', 'NN'), (u'flash', 'NN'), (u'player', 'NN'), (u'ew', 'NN'), (u'somehow', 'NN'), (u'draw', 'NN'), (u'youtub', 'NN'), (u'flash', 'NN'), (u'player', 'NN'), (u'work', 'NN'), (u'revers', 'NNS'), (u'engin', 'NN'), (u'hijack', 'NN'), (u'youtub', 'NN'), (u'annot', 'NN'), (u'system', 'NN'), (u'mess', 'NN'), (u'local', 'JJ'), (u'file', 'NN'), (u'redirect', 'NN'), (u'attempt', 'NN'), (u'download', 'NN'), (u'annot', 'NN'), (u'use', 'NN'), (u'greasemonkey', 'NN'), (u'firefox', 'NN'), (u'plugin', 'NN'), (u'idea', 'NN'), (u'doesnt', 'NN'), (u'count', 'NN'), (u'download', 'NN'), (u'video', 'NN')], [(u'error_log', 'NN'), (u'virtual', 'JJ'), (u'host', 'NN'), (u'linux', 'NN'), (u'server', 'NN'), (u'apach', 'NN'), (u'php', 'NN'), (u'multipl', 'NN'), (u'virtual', 'JJ'), (u'host', 'NN'), (u'separ', 'NN'), (u'logfil', 'NN'), (u'everyth', 'NN'), (u'thing', 'NN'), (u'cannot', 'NN'), (u'seem', 'NN'), (u'separ', 'NN'), (u'virtual', 'JJ'), (u'host', 'NN'), (u'php', 'NN'), (u'overrid', 'NN'), (u'set', 'NN'), (u'seem', 'NN'), (u'anyth', 'NN'), (u'overlook', 'NN'), (u'someth', 'NN'), (u'way', 'NN'), (u'separ', 'NN'), (u'php', 'NN'), (u'virtual', 'JJ'), (u'host', 'NN')], [(u'function', 'NN'), (u'creat', 'NN'), (u'color', 'NN'), (u'wheel', 'NN'), (u'someth', 'NN'), (u'ive', 'JJ'), (u'pseudo-solv', 'NN'), (u'mani', 'NN'), (u'time', 'NN'), (u'quit', 'NN'), (u'found', 'NN'), (u'solut', 'NN'), (u'stuck', 'NN'), (u'problem', 'NN'), (u'way', 'NN'), (u'gener', 'NN'), (u'n', 'NN'), (u'color', 'NN'), (u'distinguish', 'NN'), (u'possibl', 'NN'), (u'n', 'NN'), (u'paramet', 'NN')], [(u'float', 'NN'), (u'point', 'NN'), (u'number', 'NN'), (u'pars', 'NNS'), (u'catch', 'NN'), (u'algorithm', 'NN'), (u'fun', 'NN'), (u'part', 'NN'), (u'multi-cultur', 'NN'), (u'program', 'NN'), (u'number', 'NN'), (u'format', 'NN'), (u'american', 'JJ'), (u'use', 'NN'), (u'german', 'JJ'), (u'use', 'NN'), (u'french', 'JJ'), (u'use', 'NN'), (u'approach', 'NN'), (u'string', 'NN'), (u'pars', 'NNS'), (u'backward', 'NN'), (u'encount', 'NN'), (u'separ', 'NN'), (u'use', 'NN'), (u'decim', 'NN'), (u'separ', 'NN'), (u'obviou', 'NN'), (u'flaw', 'NN'), (u'interpret', 'NN'), (u'approach', 'NN'), (u'string', 'NN'), (u'contain', 'NN'), (u'differ', 'NN'), (u'non-numer', 'NN'), (u'charact', 'NN'), (u'use', 'NN'), (u'last', 'JJ'), (u'decim', 'NN'), (u'separ', 'NN'), (u'discard', 'NN'), (u'other', 'JJ'), (u'check', 'NN'), (u'occur', 'NN'), (u'discard', 'NN'), (u'check', 'NN'), (u'digit', 'NN'), (u'ye', 'NN'), (u'discard', 'NN'), (u'otherwis', 'NN'), (u'use', 'NN'), (u'decim', 'NN'), (u'separ', 'NN'), (u'obviou', 'NN'), (u'"best', 'JJS'), (u'solution"', 'NN'), (u'detect', 'NN'), (u'user', 'NN'), (u'cultur', 'NN'), (u'browser', 'NN'), (u'work', 'NN'), (u'frenchman', 'NN'), (u'use', 'NN'), (u'en-u', 'NN'), (u'windows/brows', 'NNS'), (u'net', 'NN'), (u'framework', 'NN'), (u'contain', 'NN'), (u'mythic', 'JJ'), (u'black', 'JJ'), (u'magic', 'NN'), (u'float', 'NN'), (u'point', 'NN'), (u'parser', 'NN'), (u'tri', 'NN'), (u'auto-detect', 'JJ'), (u'number', 'NN'), (u'format', 'NN')], [(u'upgrad', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'ye', 'NN'), (u'exist', 'NN'), (u'copi', 'NN'), (u'absurd', 'NN'), (u'stipul', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'migrat', 'NN'), (u'direct', 'JJ'), (u'path', 'NN'), (u'document', 'NN'), (u'ive', 'JJ'), (u'found', 'NN'), (u'deal', 'NN'), (u'upgrad', 'NN'), (u'forget', 'NN'), (u'nativ', 'NN'), (u'upgrad', 'NN'), (u'util', 'NN'), (u'script', 'NN'), (u'object', 'NN'), (u'data', 'NNS'), (u'tri', 'NN'), (u'recreat', 'NN'), (u'scratch', 'NN'), (u'attempt', 'NN'), (u'upgrad', 'NN'), (u'weekend', 'NN'), (u'server', 'NN'), (u'issu', 'NN'), (u'push', 'NN'), (u'till', 'NN'), (u'next', 'JJ'), (u'idea', 'NN'), (u'welcom', 'NN'), (u'cours', 'NNS'), (u'week', 'NN'), (u'updat', 'NN'), (u'end', 'NN'), (u'databas', 'NN'), (u'question', 'NN'), (u'master', 'NN'), (u'execut', 'NN'), (u'master', 'NN'), (u'oledb', 'NN'), (u'provid', 'NN'), (u'connect', 'NN'), (u'use', 'NN'), (u'standalon', 'NN'), (u'creat', 'NN'), (u'dt', 'NN'), (u'packag', 'NN'), (u'use', 'NN'), (u'connect', 'NN'), (u'success', 'NN'), (u'copi', 'NN'), (u'tabl', 'NN'), (u'new', 'JJ'), (u'databas', 'NN'), (u'use', 'NN'), (u'use', 'NN'), (u'enterpris', 'NN'), (u'manag', 'NN'), (u'script', 'NN'), (u'databas', 'NN'), (u'index', 'NN'), (u'trigger', 'NN'), (u'sql', 'NN'), (u'file', 'NN'), (u'execut', 'NN'), (u'sql', 'NN'), (u'file', 'NN'), (u'new', 'JJ'), (u'copi', 'NN'), (u'databas', 'NN'), (u'manag', 'NN'), (u'studio', 'NN'), (u'use', 'NN'), (u'enterpris', 'NN'), (u'manag', 'NN'), (u'script', 'NN'), (u'store', 'NN'), (u'procedur', 'NN'), (u'execut', 'NN'), (u'file', 'NN'), (u'databas', 'NN'), (u'sever', 'NN'), (u'dozen', 'NN'), (u'sproc', 'NN'), (u'issu', 'NN'), (u'incompat', 'NN'), (u'mainli', 'NN'), (u'correct', 'NN'), (u'issu', 'NN'), (u're-execut', 'NN'), (u'file', 'NN'), (u'recreat', 'NN'), (u'login', 'NN'), (u'appropri', 'NN'), (u'permiss', 'NN'), (u'bit', 'NN'), (u'rinse/repeat', 'NN'), (u'correct', 'NN'), (u'store', 'NN'), (u'procedur', 'NN'), (u'hundr', 'NN'), (u'correct', 'NN'), (u'upgrad', 'NN'), (u'great', 'JJ'), (u'otherwis', 'NN'), (u'abl', 'NN'), (u'use', 'NN'), (u'manag', 'NN'), (u'studio', 'NN'), (u'amaz', 'NN'), (u'differ', 'NN'), (u'report', 'NN'), (u'queri', 'NN'), (u'second', 'JJ'), (u'second', 'JJ'), (u'modif', 'NN'), (u'new', 'JJ'), (u'index', 'NN'), (u'anyth', 'NN'), (u'didnt', 'NN'), (u'kind', 'NN'), (u'immedi', 'NN'), (u'improv', 'NN')], [(u'best', 'JJS'), (u'way', 'NN'), (u'gener', 'NN'), (u'tag', 'NN'), (u'cloud', 'NN'), (u'array', 'NN'), (u'use', 'NN'), (u'h', 'NN'), (u'h', 'NN'), (u'size', 'NN'), (u'array', 'NN'), (u'want', 'NN'), (u'gener', 'NN'), (u'tag', 'NN'), (u'cloud', 'NN'), (u'artist', 'NN'), (u'higher', 'JJR'), (u'number', 'NN'), (u'enclos', 'NN'), (u'tag', 'NN'), (u'lowest', 'JJS'), (u'enclos', 'NN'), (u'tag', 'NN')], [(u'regist', 'NN'), (u'window', 'NN'), (u'program', 'NN'), (u'mailto', 'NN'), (u'protocol', 'NN'), (u'programmat', 'NN'), (u'link', 'NN'), (u'regist', 'NN'), (u'program', 'NN'), (u'handl', 'NN'), (u'event', 'NN'), (u'program', 'NN'), (u'solut', 'NN'), (u'found', 'NN'), (u'quick', 'NN'), (u'googl', 'NN'), (u'search', 'NN'), (u'manual', 'JJ'), (u'need', 'NN'), (u'automat', 'NN'), (u'user', 'NN'), (u'program', 'NN'), (u'click', 'NN'), (u'button', 'NN'), (u'"set', 'NN'), (u'default', 'NN'), (u'email', 'NN'), (u'client"', 'NN'), (u'edit', 'NN'), (u'remov', 'NN'), (u'refer', 'NN'), (u'delphi', 'NN'), (u'answer', 'NN'), (u'independ', 'NN'), (u'languag', 'NN')], [(u'sql', 'NN'), (u'server', 'NN'), (u'implement', 'NN'), (u'mysql', 'NN'), (u'replac', 'NN'), (u'mysql', 'NN'), (u'use', 'NN'), (u'properitari', 'NN'), (u'sql', 'NN'), (u'command', 'NN'), (u'wonder', 'NN'), (u'easili', 'NN'), (u'emul', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'start', 'NN'), (u'new', 'JJ'), (u'transact', 'NN'), (u'littl', 'NN'), (u'bit', 'NN'), (u'pain', 'NN'), (u'especi', 'NN'), (u'applic', 'NN'), (u'therefor', 'NN'), (u'version', 'NN'), (u'statement', 'NN'), (u'wonder', 'NN'), (u'easi', 'NN'), (u'univers', 'NNS'), (u'way', 'NN'), (u'implement', 'NN'), (u'function', 'NN'), (u'sql', 'NN'), (u'server', 'NN')], [(u'distribut', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'option', 'NN'), (u'ive', 'JJ'), (u'interest', 'NN'), (u'git', 'NN'), (u'last', 'JJ'), (u'time', 'NN'), (u'look', 'NN'), (u'window', 'NN'), (u'support', 'NN'), (u'essenti', 'NN'), (u'"run', 'NN'), (u'linux"', 'NN'), (u'distribut', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'tool', 'NN'), (u'window', 'NN')], [(u'creat', 'NN'), (u'sqlite', 'NN'), (u'databas', 'NN'), (u'base', 'NN'), (u'xsd', 'NN'), (u'data', 'NNS'), (u'set', 'NN'), (u'anybodi', 'NN'), (u'way', 'NN'), (u'creat', 'NN'), (u'sqlite', 'NN'), (u'databas', 'NN'), (u'base', 'NN'), (u'xsd', 'NN'), (u'past', 'NN'), (u'ive', 'JJ'), (u'use', 'NN'), (u'basic', 'JJ'), (u'sqlite', 'NN'), (u'manag', 'NN'), (u'want', 'NN'), (u'fuse', 'NN'), (u'thing', 'NN'), (u'bit', 'NN'), (u'net', 'NN'), (u'possibl', 'NN')], [(u'access', 'NN'), (u'remot', 'NN'), (u'form', 'NN'), (u'php', 'NN'), (u'want', 'NN'), (u'gather', 'NN'), (u'info', 'NN'), (u'user', 'NN'), (u'local', 'JJ'), (u'php', 'NN'), (u'page', 'NN'), (u'control', 'NN'), (u'use', 'NN'), (u'info', 'NN'), (u'queri', 'NN'), (u'form', 'NN'), (u'site', 'NN'), (u'dont', 'NN'), (u'control', 'NN')], [(u'ad', 'NN'), (u'script', 'NN'), (u'function', 'NN'), (u'net', 'NN'), (u'applic', 'NN'), (u'littl', 'NN'), (u'game', 'NN'), (u'c#', 'NN'), (u'use', 'NN'), (u'databas', 'NN'), (u'back-end', 'NN'), (u'trade', 'NN'), (u'card', 'NN'), (u'game', 'NN'), (u'want', 'NN'), (u'implement', 'NN'), (u'function', 'NN'), (u'card', 'NN'), (u'script', 'NN'), (u'mean', 'NN'), (u'essenti', 'NN'), (u'interfac', 'NN'), (u'card', 'NN'), (u'class', 'NN'), (u'implement', 'NN'), (u'contain', 'NN'), (u'function', 'NN'), (u'call', 'NN'), (u'game', 'NN'), (u'thing', 'NN'), (u'maintainable/modd', 'NN'), (u'class', 'NN'), (u'card', 'NN'), (u'sourc', 'NN'), (u'code', 'NN'), (u'databas', 'NN'), (u'essenti', 'NN'), (u'compil', 'NN'), (u'use', 'NN'), (u'add/chang', 'NN'), (u'card', 'NN'), (u'ill', 'NN'), (u'databas', 'NN'), (u'tell', 'NN'), (u'applic', 'NN'), (u'refresh', 'NN'), (u'need', 'NN'), (u'assembl', 'NN'), (u'deploy', 'NN'), (u'especi', 'NN'), (u'sinc', 'NN'), (u'talk', 'NN'), (u'assembl', 'NN'), (u'card', 'NN'), (u'mean', 'NN'), (u'hundr', 'NN'), (u'assembl', 'NN'), (u'possibl', 'NN'), (u'regist', 'NN'), (u'class', 'NN'), (u'sourc', 'NN'), (u'file', 'NN'), (u'instanti', 'NN'), (u'etc', 'NN'), (u'languag', 'NN'), (u'c#', 'NN'), (u'extra', 'JJ'), (u'bonu', 'NN'), (u'possibl', 'NN'), (u'write', 'NN'), (u'script', 'NN'), (u'net', 'NN'), (u'languag', 'NN')], [(u'gtk', 'NN'), (u'implement', 'NN'), (u'messagebox', 'NN'), (u'tri', 'NN'), (u'implement', 'NN'), (u'win', 'NN'), (u'use', 'NN'), (u'gtk', 'NN'), (u'app', 'NN'), (u'use', 'NN'), (u'sdl/opengl', 'NN'), (u'isnt', 'NN'), (u'gtk', 'NN'), (u'app', 'NN'), (u'handl', 'NN'), (u'initialis', 'NN'), (u'sort', 'NN'), (u'stuff', 'NN'), (u'insid', 'NN'), (u'function', 'NN'), (u'mean', 'NN'), (u'experienc', 'NN'), (u'gtk', 'NN'), (u'programm', 'NN'), (u'realis', 'NN'), (u'im', 'NN'), (u'probabl', 'NN'), (u'someth', 'NN'), (u'horribl', 'NN'), (u'wrong', 'JJ'), (u'howev', 'NN'), (u'problem', 'NN'), (u'last', 'JJ'), (u'dialog', 'NN'), (u'pop', 'NN'), (u'function', 'NN'), (u'stay', 'NN'), (u'process', 'NN'), (u'exit', 'NN'), (u'idea', 'NN')], [(u'berkeleydb', 'NN'), (u'concurr', 'NN'), (u'optim', 'NN'), (u'level', 'NN'), (u'concurr', 'NN'), (u'c++', 'NN'), (u'implement', 'NN'), (u'berkeleydb', 'NN'), (u'reason', 'NN'), (u'support', 'NN'), (u'mani', 'NN'), (u'thread', 'NN'), (u'hammer', 'NN'), (u'db', 'NN'), (u'throughput', 'NN'), (u'start', 'NN'), (u'suffer', 'NN'), (u'resourc', 'NN'), (u'content', 'NN'), (u'ive', 'JJ'), (u'read', 'NN'), (u'manual', 'JJ'), (u'set', 'NN'), (u'number', 'NN'), (u'lock', 'NN'), (u'locker', 'NN'), (u'databas', 'NN'), (u'page', 'NN'), (u'size', 'NN'), (u'etc', 'NN'), (u'id', 'NN'), (u'advic', 'NN'), (u'someon', 'NN'), (u'real-world', 'NN'), (u'experi', 'NN'), (u'bdb', 'NN'), (u'concurr', 'NN'), (u'applic', 'NN'), (u'pretti', 'NNS'), (u'simpl', 'NN'), (u'ill', 'NN'), (u'put', 'NN'), (u'record', 'NN'), (u'kb', 'NN'), (u'cursor', 'NN'), (u'delet', 'NN')], [(u'best', 'JJS'), (u'practic', 'JJ'), (u'collabor', 'NN'), (u'environ', 'NN'), (u'bin', 'NN'), (u'directori', 'NN'), (u'svn', 'NN'), (u'best', 'JJS'), (u'practic', 'JJ'), (u'check', 'NN'), (u'bin', 'NN'), (u'directori', 'NN'), (u'collabor', 'NN'), (u'environ', 'NN'), (u'use', 'NN'), (u'svn', 'NN'), (u'project', 'NN'), (u'level', 'NN'), (u'refer', 'NN'), (u'exclud', 'NN'), (u'checkin', 'NN'), (u'easier', 'JJR'), (u'bin', 'NN'), (u'directori', 'NN'), (u'lot', 'NN'), (u'dotnetnuk', 'NN'), (u'site', 'NN'), (u'seem', 'NN'), (u'multi-develop', 'NN'), (u'environ', 'NN'), (u'huge', 'JJ'), (u'task', 'NN'), (u'environ', 'NN'), (u'setup', 'NN'), (u'correctli', 'NN'), (u'ultim', 'NN'), (u'goal', 'NN'), (u'cours', 'NNS'), (u'new', 'JJ'), (u'checkout', 'NN'), (u'trunk', 'NN'), (u'svn', 'NN'), (u'restor', 'NN'), (u'dnn', 'NN'), (u'databas', 'NN'), (u'work', 'NN')], [(u'aspnet', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'subvers', 'NNS'), (u'integr', 'NN'), (u'use', 'NN'), (u'ankhsvn', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'thing', 'NN'), (u'bug', 'NN'), (u'ankh', 'NN'), (u'realli', 'NN'), (u'work', 'NN'), (u'aspnet', 'NN'), (u'site', 'NN'), (u'cannot', 'NN'), (u'properli', 'NN'), (u'repositori', 'NN'), (u'wont', 'NN'), (u'detect', 'NN'), (u'chang', 'NN'), (u'especi', 'NN'), (u'site', 'NN'), (u'remot', 'NN'), (u'server', 'NN'), (u'access', 'NN'), (u'frontpag', 'NN'), (u'extens', 'NNS'), (u'file', 'NN'), (u'=>', 'NN'), (u'open', 'JJ'), (u'site', 'NN'), (u'altern', 'NN'), (u'plug-in', 'NN'), (u'exist', 'NN'), (u'manual', 'JJ'), (u'download', 'NN'), (u'file', 'NN'), (u'ftp', 'NN'), (u'use', 'NN'), (u'tortoisesvn', 'NN'), (u'svnex', 'NN'), (u'realli', 'NN'), (u'level', 'NN'), (u'integr', 'NN'), (u'want', 'NN'), (u'want', 'NN'), (u'stay', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'ide', 'NN'), (u'possibl', 'NN'), (u'control', 'NN'), (u'remot', 'NN'), (u'server', 'NN'), (u'instal', 'NN'), (u'anyth', 'NN'), (u'mean', 'NN'), (u'whole', 'JJ'), (u'chang', 'NN'), (u'tracking/comparison', 'NN'), (u'repositori', 'NN'), (u'machin', 'NN')], [(u'sort', 'NN'), (u'dictionari', 'NN'), (u'valu', 'NN'), (u'dictionari', 'NN'), (u'key', 'NN'), (u'valu', 'NN'), (u'need', 'NN'), (u'sort', 'NN'), (u'valu', 'NN'), (u'exampl', 'NN'), (u'hash', 'NN'), (u'word', 'NN'), (u'frequenc', 'NN'), (u'want', 'NN'), (u'order', 'NN'), (u'frequenc', 'NN'), (u'good', 'JJ'), (u'singl', 'NN'), (u'valu', 'NN'), (u'frequenc', 'NN'), (u'want', 'NN'), (u'map', 'NN'), (u'word', 'NN'), (u'sorteddictionari', 'NN'), (u'order', 'NN'), (u'key', 'NN'), (u'valu', 'NN'), (u'resort', 'NN'), (u'custom', 'NN'), (u'class', 'NN'), (u'cleanest', 'NN'), (u'way', 'NN')], [(u'version', 'NN'), (u'control', 'NN'), (u'system', 'NN'), (u'databas', 'NN'), (u'structur', 'NN'), (u'chang', 'NN'), (u'problem', 'NN'), (u'work', 'NN'), (u'chang', 'NN'), (u'project', 'NN'), (u'requir', 'NN'), (u'new', 'JJ'), (u'tabl', 'NN'), (u'column', 'NN'), (u'databas', 'NN'), (u'databas', 'NN'), (u'modif', 'NN'), (u'continu', 'NN'), (u'work', 'NN'), (u'usual', 'JJ'), (u'rememb', 'NN'), (u'write', 'NN'), (u'chang', 'NN'), (u'replic', 'NN'), (u'live', 'JJ'), (u'system', 'NN'), (u'howev', 'NN'), (u'dont', 'NN'), (u'rememb', 'NN'), (u'ive', 'JJ'), (u'chang', 'NN'), (u'dont', 'NN'), (u'rememb', 'NN'), (u'write', 'NN'), (u'push', 'NN'), (u'live', 'JJ'), (u'system', 'NN'), (u'big', 'JJ'), (u'obviou', 'NN'), (u'error', 'NN'), (u'fact', 'NN'), (u'best', 'JJS'), (u'practic', 'JJ'), (u'situat', 'NN'), (u'version', 'NN'), (u'control', 'NN'), (u'system', 'NN'), (u'databas', 'NN'), (u'dont', 'NN'), (u'care', 'NN'), (u'specif', 'NN'), (u'databas', 'NN'), (u'technolog', 'NN'), (u'want', 'NN'), (u'exist', 'NN'), (u'work', 'NN'), (u'ms', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'great', 'JJ')], [(u'net', 'NN'), (u'migrat', 'NN'), (u'engin', 'NN'), (u'belief', 'NN'), (u'microsoft', 'NN'), (u'work', 'NN'), (u'offici', 'NN'), (u'ruby-lik', 'NN'), (u'migrat', 'NN'), (u'framework', 'NN'), (u'howev', 'NN'), (u'havent', 'NN'), (u'abl', 'NN'), (u'addit', 'NN'), (u'inform', 'NN'), (u'origin', 'NN'), (u'sourc', 'NN'), (u'belief', 'NN'), (u'anyon', 'NN'), (u'inform', 'NN'), (u'offici', 'NN'), (u'migrat', 'NN'), (u'framework', 'NN'), (u'possibl', 'NN'), (u'open', 'JJ'), (u'sourc', 'NN')], [(u'php', 'NN'), (u'session', 'NN'), (u'secur', 'NN'), (u'guidelin', 'NN'), (u'maintain', 'NN'), (u'respons', 'NNS'), (u'session', 'NN'), (u'secur', 'NN'), (u'php', 'NN'), (u'inform', 'NN'), (u'web', 'NN'), (u'time', 'NN'), (u'land', 'NN'), (u'place!', 'NN')], [(u'use', 'NN'), (u'nest', 'JJS'), (u'class', 'NN'), (u'case', 'NN'), (u'work', 'NN'), (u'collect', 'NN'), (u'class', 'NN'), (u'use', 'NN'), (u'video', 'NN'), (u'playback', 'NN'), (u'record', 'NN'), (u'main', 'JJ'), (u'class', 'NN'), (u'act', 'NN'), (u'public', 'NN'), (u'interfac', 'NN'), (u'method', 'NN'), (u'etc', 'NN'), (u'workhors', 'NNS'), (u'class', 'NN'), (u'video', 'NN'), (u'decod', 'NN'), (u'video', 'NN'), (u'encod', 'NN'), (u'learn', 'NN'), (u'exist', 'NN'), (u'nest', 'JJS'), (u'class', 'NN'), (u'c++', 'NN'), (u'im', 'NN'), (u'curiou', 'NN'), (u'programm', 'NN'), (u'think', 'NN'), (u'use', 'NN'), (u'littl', 'NN'), (u'wari', 'NN'), (u'realli', 'NN'), (u'sure', 'NN'), (u'benefits/drawback', 'NN'), (u'seem', 'NN'), (u'accord', 'NN'), (u'book', 'NN'), (u'im', 'NN'), (u'read', 'NN'), (u'use', 'NN'), (u'case', 'NN'), (u'mine', 'NN'), (u'book', 'NN'), (u'suggest', 'NN'), (u'scenario', 'NN'), (u'mine', 'NN'), (u'good', 'JJ'), (u'solut', 'NN'), (u'nest', 'JJS'), (u'workhors', 'NNS'), (u'class', 'NN'), (u'insid', 'NN'), (u'interfac', 'NN'), (u'class', 'NN'), (u'separ', 'NN'), (u'file', 'NN'), (u'class', 'NN'), (u'client', 'NN'), (u'meant', 'NN'), (u'use', 'NN'), (u'avoid', 'NN'), (u'possibl', 'NN'), (u'name', 'NN'), (u'conflict', 'NN'), (u'dont', 'NN'), (u'justif', 'NN'), (u'nest', 'JJS'), (u'class', 'NN'), (u'new', 'JJ'), (u'concept', 'NN'), (u'want', 'NN'), (u'programm', 'NN'), (u'think', 'NN'), (u'issu', 'NN')], [(u'use', 'NN'), (u'unsign', 'NN'), (u'valu', 'NN'), (u'sign', 'NN'), (u'appropri', 'NN'), (u'use', 'NN'), (u'unsign', 'NN'), (u'variabl', 'NN'), (u'sign', 'NN'), (u'loop', 'NN'), (u'hear', 'NN'), (u'lot', 'NN'), (u'opinion', 'NN'), (u'want', 'NN'), (u'anyth', 'NN'), (u'resembl', 'NN'), (u'consensu', 'NN'), (u'java', 'NN'), (u'doesnt', 'NN'), (u'unsign', 'NN'), (u'valu', 'NN'), (u'conciou', 'NN'), (u'decis', 'NN'), (u'sun', 'NN'), (u'microsystem', 'NN'), (u'part', 'NN')], [(u'xml', 'NN'), (u'process', 'NN'), (u'python', 'NN'), (u'im', 'NN'), (u'build', 'NN'), (u'piec', 'NN'), (u'project', 'NN'), (u'need', 'NN'), (u'construct', 'NN'), (u'post', 'NN'), (u'xml', 'NN'), (u'document', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'id', 'NN'), (u'python', 'NN'), (u'mean', 'NN'), (u'expand', 'NN'), (u'skill', 'NN'), (u'unfortun', 'NN'), (u'whilst', 'NN'), (u'xml', 'NN'), (u'model', 'NN'), (u'fairli', 'NN'), (u'net', 'NN'), (u'im', 'NN'), (u'uncertain', 'JJ'), (u'pro', 'NNS'), (u'con', 'NN'), (u'xml', 'NN'), (u'model', 'NN'), (u'python', 'NN'), (u'anyon', 'NN'), (u'experi', 'NN'), (u'xml', 'NN'), (u'process', 'NN'), (u'python', 'NN'), (u'suggest', 'NN'), (u'start', 'NN'), (u'xml', 'NN'), (u'file', 'NN'), (u'ill', 'NN'), (u'build', 'NN'), (u'fairli', 'NN'), (u'simpl', 'NN')], [(u'gener', 'NN'), (u'list', 'NN'), (u'possibl', 'NN'), (u'permut', 'NN'), (u'string', 'NN'), (u'gener', 'NN'), (u'list', 'NN'), (u'possibl', 'NN'), (u'permut', 'NN'), (u'string', 'NN'), (u'x', 'NN'), (u'y', 'NN'), (u'charact', 'NN'), (u'length', 'NN'), (u'contain', 'NN'), (u'variabl', 'NN'), (u'list', 'NN'), (u'charact', 'NN'), (u'languag', 'NN'), (u'work', 'NN'), (u'portabl', 'NN')], [(u'much', 'JJ'), (u'web', 'NN'), (u'build', 'NN'), (u'process', 'NN'), (u'you/should', 'NN'), (u'autom', 'NN'), (u'much', 'JJ'), (u'web', 'NN'), (u'build', 'NN'), (u'process', 'NN'), (u'you/should', 'NN'), (u'autom', 'NN'), (u'system', 'NN'), (u'choic', 'NN'), (u'top', 'NN'), (u'head', 'NN'), (u'real', 'JJ'), (u'one-step', 'NN'), (u'web', 'NN'), (u'build', 'NN'), (u'step', 'NN'), (u'place', 'NN'), (u'sourc', 'NN'), (u'snapshot', 'NN'), (u'chang', 'NN'), (u'config', 'NN'), (u'file', 'NN'), (u'releas', 'NNS'), (u'compress', 'NN'), (u'css', 'NN'), (u'javascript', 'NN'), (u'test', 'NN'), (u'databas', 'NN'), (u'snapshot', 'NN'), (u'test', 'NN'), (u'data', 'NNS'), (u'move', 'NN'), (u'sourc', 'NN'), (u'server', 'NN'), (u'import', 'NN'), (u'clean', 'NN'), (u'current', 'JJ'), (u'version', 'NN'), (u'databas', 'NN'), (u'server', 'NN'), (u'automat', 'NN'), (u'confirm', 'NN'), (u'build', 'NN'), (u'success', 'NN'), (u'system', 'NN'), (u'step', 'NN')], [(u'sure', 'NN'), (u'email', 'NN'), (u'send', 'NN'), (u'programmat', 'NN'), (u'automat', 'NN'), (u'mark', 'NN'), (u'spam', 'NN'), (u'tricki', 'NN'), (u'ive', 'JJ'), (u'reli', 'NN'), (u'techniqu', 'NN'), (u'permission-bas', 'NN'), (u'email', 'NN'), (u'ie', 'NN'), (u'send', 'NN'), (u'peopl', 'NN'), (u'permiss', 'NN'), (u'send', 'NN'), (u'use', 'NN'), (u'blatantli', 'NN'), (u'spamish', 'NN'), (u'terminolog', 'NN'), (u'email', 'NN'), (u'send', 'NN'), (u'programmat', 'NN'), (u'start', 'NN'), (u'shuffl', 'NN'), (u'peopl', 'NN'), (u'spam', 'NN'), (u'folder', 'NN'), (u'automat', 'NN'), (u'im', 'NN'), (u'wonder', 'NN'), (u'despit', 'NN'), (u'fact', 'NN'), (u'particular', 'JJ'), (u'email', 'NN'), (u'human', 'NN'), (u'mark', 'NN'), (u'spam', 'NN'), (u'specif', 'NN'), (u'email', 'NN'), (u'contain', 'NN'), (u'licens', 'NNS'), (u'key', 'NN'), (u'peopl', 'NN'), (u'paid', 'NN'), (u'good', 'JJ'), (u'money', 'NN'), (u'dont', 'NN'), (u'think', 'NN'), (u'theyr', 'NN'), (u'consid', 'NN'), (u'spam', 'NN'), (u'figur', 'NN'), (u'big', 'JJ'), (u'topic', 'NN'), (u'essenti', 'NN'), (u'ignor', 'NN'), (u'simpleton', 'NN')], [(u'mean', 'NN'), (u'type', 'NN'), (u'safeti', 'NN'), (u'warn', 'NN'), (u'certain', 'JJ'), (u'java', 'NN'), (u'gener', 'NN'), (u'cast', 'NN'), (u'mean', 'NN'), (u'java', 'NN'), (u'warn', 'NN'), (u'type', 'NN'), (u'safeti', 'NN'), (u'cast', 'NN'), (u'object', 'NN'), (u'list', 'NN'), (u'actual', 'JJ'), (u'check', 'NN'), (u'eras', 'NNS'), (u'type', 'NN'), (u'list', 'NN'), (u'warn', 'NN'), (u'tri', 'NN'), (u'cast', 'NN'), (u'object', 'NN'), (u'type', 'NN'), (u'gener', 'NN'), (u'inform', 'NN'), (u'code', 'NN')], [(u'lucen', 'NN'), (u'score', 'NN'), (u'result', 'NN'), (u'lucen', 'NN'), (u'multipl', 'NN'), (u'index', 'NN'), (u'cover', 'NN'), (u'partit', 'NN'), (u'search', 'NN'), (u'differ', 'NN'), (u'index', 'NN'), (u'return', 'NN'), (u'result', 'NN'), (u'differ', 'NN'), (u'score', 'NN'), (u'result', 'NN'), (u'differ', 'NN'), (u'server', 'NN'), (u'match', 'NN'), (u'exactli', 'NN'), (u'ie', 'NN'), (u'search', 'NN'), (u'name', 'NN'), (u'john', 'NN'), (u'smith', 'NN'), (u'dob', 'NN'), (u'//', 'NN'), (u'partit', 'NN'), (u'return', 'NN'), (u'score', 'NN'), (u'partit', 'NN'), (u'return', 'NN'), (u'score', 'NN'), (u'match', 'NN'), (u'exactli', 'NN'), (u'name', 'NN'), (u'dob', 'NN')], [(u'migrat', 'NN'), (u'larg', 'NN'), (u'app', 'NN'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'vbnet', 'NN'), (u'compani', 'NN'), (u'monolith', 'NN'), (u'piec', 'NN'), (u'softwar', 'NN'), (u'custom', 'NN'), (u'use', 'NN'), (u'car', 'NN'), (u'dealership', 'NN'), (u'origin', 'NN'), (u'applic', 'NN'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'grown', 'NN'), (u'substanti', 'NN'), (u'last', 'JJ'), (u'year', 'NN'), (u'hasnt', 'NN'), (u'realli', 'NN'), (u'busi', 'NN'), (u'case', 'NN'), (u'switch', 'NN'), (u'net', 'NN'), (u'framework', 'NN'), (u'sure', 'NN'), (u'newer', 'NN'), (u'certain', 'JJ'), (u'thing', 'NN'), (u'use', 'NN'), (u'correctli', 'NN'), (u'speed', 'NN'), (u'time', 'NN'), (u'cant', 'NN'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'need', 'NN'), (u'abl', 'NN'), (u'thing', 'NN'), (u'harder', 'NN'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'imposs', 'NN'), (u'recent', 'JJ'), (u'microsoft', 'NN'), (u'drop', 'NN'), (u'support', 'NN'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'seem', 'NN'), (u'obviou', 'NN'), (u'switch', 'NN'), (u'new', 'JJ'), (u'platform', 'NN'), (u'inevit', 'NN'), (u'way', 'NN'), (u'vbnet', 'NN'), (u'work', 'NN'), (u'requir', 'NN'), (u'think', 'NN'), (u'fundament', 'NN'), (u'differ', 'NN'), (u'heck', 'NN'), (u'way', 'NN'), (u'pass', 'NN'), (u'variabl', 'NN'), (u'sub', 'NN'), (u'chang', 'NN'), (u'tell', 'NN'), (u'switch', 'NN'), (u'net', 'NN'), (u'requir', 'NN'), (u'complet', 'NN'), (u're-design', 'NN'), (u're-writ', 'NN'), (u'applic', 'NN'), (u'question', 'NN'), (u'posit', 'NN'), (u'tool', 'NN'), (u'avail', 'NN'), (u'smooth', 'NN'), (u'transit', 'NN'), (u'work', 'NN'), (u'avoid', 'NN'), (u'sell', 'NN'), (u'custom', 'NN'), (u'boss', 'NN'), (u'suit', 'NN'), (u'roi', 'NN'), (u'@rob', 'NN'), (u'burk', 'NN'), (u'boatload', 'NN'), (u'winform', 'NN'), (u'absolut', 'NN'), (u'ado', 'NN'), (u'code', 'NN'), (u'db', 'NN'), (u'access', 'NN'), (u'ye', 'NN'), (u'easy-to-manag', 'NN'), (u'place', 'NN'), (u'asp', 'NN'), (u'web', 'NN'), (u'page', 'NN'), (u'none', 'NN'), (u'strictli', 'NN'), (u'desktop', 'NN'), (u'app', 'NN'), (u'custom', 'NN'), (u'control', 'NN'), (u'ye', 'NN'), (u'ie', 'NN'), (u'third', 'JJ'), (u'parti', 'NN'), (u'stuff', 'NN'), (u'instal', 'NN'), (u'base', 'NN'), (u'~', 'NN'), (u'machin', 'NN'), (u'last', 'JJ'), (u'time', 'NN'), (u'call', 'NN'), (u'microsoft', 'NN'), (u'tech', 'NN'), (u'support', 'NN'), (u'time', 'NN'), (u'troubl', 'NN'), (u'msdn', 'NN'), (u'librari', 'NN'), (u'work', 'NN'), (u'machin', 'NN'), (u'day', 'NN'), (u'msdn', 'NN'), (u'wasnt', 'NN'), (u'avail', 'NN'), (u'onlin', 'NN'), (u'internet', 'NN'), (u'connect', 'NN'), (u'dial-up', 'NN'), (u'support', 'NN'), (u'case', 'NN'), (u'elev', 'NN'), (u'"solution"', 'NN'), (u'format', 'NN'), (u'hard', 'JJ'), (u'drive', 'NN'), (u'reinstal', 'NN'), (u'everyth', 'NN'), (u'needless', 'NN'), (u'didnt', 'NN'), (u'consid', 'NN'), (u'solut', 'NN')], [(u'iphon', 'NN'), (u'app', 'NN'), (u'landscap', 'NN'), (u'mode', 'NN'), (u'system', 'NN'), (u'note', 'NN'), (u'question', 'NN'), (u'histor', 'NN'), (u'interest', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'creat', 'NN'), (u'iphon', 'NN'), (u'applic', 'NN'), (u'landscap', 'NN'), (u'mode', 'NN'), (u'start', 'NN'), (u'posit', 'NN'), (u'devic', 'NN'), (u'programmat', 'NN'), (u'use', 'NN'), (u'interfac', 'NN'), (u'builder', 'NN')], [(u'unload', 'NN'), (u'com', 'NN'), (u'control', 'NN'), (u'work', 'NN'), (u'vb', 'NN'), (u'ide', 'NN'), (u'part', 'NN'), (u'everyday', 'NN'), (u'work', 'NN'), (u'maintain', 'NN'), (u'extend', 'NN'), (u'legaci', 'NN'), (u'vb', 'NN'), (u'applic', 'NN'), (u'common', 'JJ'), (u'engin', 'NN'), (u'c/c++', 'NN'), (u'vb', 'NN'), (u'use', 'NN'), (u'function', 'NN'), (u'order', 'NN'), (u'improv', 'NN'), (u'perform', 'NN'), (u'asynchron', 'NN'), (u'program', 'NN'), (u'c', 'NNS'), (u'interfac', 'NN'), (u'reli', 'NN'), (u'com', 'NN'), (u'control', 'NN'), (u'fire', 'NN'), (u'event', 'NN'), (u'vb', 'NN'), (u'problem', 'NN'), (u'regist', 'NN'), (u'control', 'NN'), (u'vb', 'NN'), (u'vb', 'NN'), (u'load', 'NN'), (u'control', 'NN'), (u'memori', 'NN'), (u'unload', 'NN'), (u'quit', 'NN'), (u'vb', 'NN'), (u'ide', 'NN'), (u'control', 'NN'), (u'load', 'NN'), (u'whole', 'JJ'), (u'time', 'NN'), (u'unabl', 'NN'), (u'recompil', 'NN'), (u'vc', 'NN'), (u'dll', 'NN'), (u'file', 'NN'), (u'lock', 'NN'), (u'solut', 'NN'), (u'found', 'NN'), (u'enabl', 'NN'), (u'control', 'NN'), (u'vb', 'NN'), (u'use', 'NN'), (u'createobject', 'NN'), (u'full', 'JJ'), (u'name', 'NN'), (u'control', 'NN'), (u'problem', 'NN'), (u'declar', 'NN'), (u'control', 'NN'), (u'object', 'NN'), (u'vb', 'NN'), (u'interfac', 'NN'), (u'use', 'NN'), (u'access', 'NN'), (u'intellisens', 'NNS'), (u'pain', 'NN'), (u'idea', 'NN'), (u'tell', 'NN'), (u'vb', 'NN'), (u'unload', 'NN'), (u'control', 'NN'), (u'quit', 'NN'), (u'applic', 'NN'), (u'directli', 'NN'), (u'ide', 'NN')], [(u'programmat', 'NN'), (u'launch', 'NN'), (u'ie', 'NN'), (u'mobil', 'NN'), (u'favorit', 'NN'), (u'screen', 'NN'), (u'way', 'NN'), (u'launch', 'NN'), (u'iemobil', 'NN'), (u'favorit', 'NN'), (u'screen', 'NN'), (u'directli', 'NN'), (u'specifi', 'NN'), (u'command', 'NN'), (u'line', 'NN'), (u'paramet', 'NN')], [(u'schedul', 'NN'), (u'task', 'NN'), (u'window', 'NN'), (u'situat', 'NN'), (u'everi', 'NN'), (u'coupl', 'NN'), (u'month', 'NN'), (u'need', 'NN'), (u'solut', 'NN'), (u'schedul', 'NN'), (u'period', 'NN'), (u'havent', 'NN'), (u'found', 'NN'), (u'way', 'NN'), (u'handl', 'NN'), (u'window', 'NN'), (u'im', 'NN'), (u'entir', 'NN'), (u'happi', 'NN'), (u'everi', 'NN'), (u'time', 'NN'), (u'end', 'NN'), (u'feel', 'NN'), (u'corral', 'JJ'), (u'use', 'NN'), (u'window', 'NN'), (u'servic', 'NN'), (u'seem', 'NN'), (u'unaccept', 'JJ'), (u'amount', 'NN'), (u'overhead', 'NN'), (u'someth', 'NN'), (u'cron', 'NN'), (u'job', 'NN'), (u'unix', 'NN'), (u'miss', 'NN'), (u'someth', 'NN'), (u'use', 'NN'), (u'schedul', 'NN'), (u'applic', 'NN'), (u'window', 'NN'), (u'@karl', 'NN'), (u'ye', 'NN'), (u'clearer', 'NN'), (u'someth', 'NN'), (u'ive', 'JJ'), (u'steer', 'NN'), (u'schedul', 'NN'), (u'task', 'NN'), (u'peopl', 'NN'), (u'work', 'NN'), (u'servic', 'NN'), (u'realli', 'NN'), (u'gotten', 'NNS'), (u'clear', 'JJ'), (u'reason', 'NN'), (u'havent', 'NN'), (u'heavi', 'NN'), (u'window', 'NN'), (u'user', 'NN'), (u'year', 'NN'), (u'recent', 'JJ'), (u'start', 'NN'), (u'platform', 'NN'), (u'im', 'NN'), (u'unfamiliar', 'JJ'), (u'certain', 'JJ'), (u'part', 'NN'), (u'@sasb', 'NN'), (u'command', 'NN'), (u'new', 'JJ'), (u'seem', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'link', 'NN'), (u'suggest', 'NN'), (u'window', 'NN'), (u'schtask', 'NN'), (u'im', 'NN'), (u'guess', 'NN'), (u'command', 'NN'), (u'line', 'NN'), (u'window', 'NN'), (u'schedul', 'NN'), (u'task', 'NN'), (u'piec', 'NN'), (u'window', 'NN')], [(u'implement', 'NN'), (u'"rememb', 'NN'), (u'me"', 'NN'), (u'rail', 'NN'), (u'applic', 'NN'), (u'rails-app', 'NN'), (u'sign', 'NN'), (u'box', 'NN'), (u'"rememb', 'NN'), (u'me"', 'NN'), (u'checkbox', 'NN'), (u'user', 'NN'), (u'check', 'NN'), (u'box', 'NN'), (u'remain', 'NN'), (u'log', 'NN'), (u'browser', 'NN'), (u'im', 'NN'), (u'track', 'NN'), (u'user', 'NN'), (u'log', 'NN'), (u'store', 'NN'), (u'id', 'NN'), (u'user', 'NN'), (u'session', 'NN'), (u'session', 'NN'), (u'implement', 'NN'), (u'rail', 'NN'), (u'session', 'NN'), (u'cooki', 'NN'), (u'persist', 'NN'), (u'persist', 'NN'), (u'seem', 'NN'), (u'hack', 'NN'), (u'surpris', 'NN'), (u'common', 'JJ'), (u'function', 'NN'), (u'way', 'NN'), (u'edit', 'NN'), (u'gareth', 'NNS'), (u'answer', 'NN'), (u'pretti', 'NNS'), (u'good', 'JJ'), (u'answer', 'NN'), (u'someon', 'NN'), (u'familiar', 'JJ'), (u'rail', 'NN'), (u'uniqu', 'NN'), (u'cookiesessionstor', 'NN')], [(u'full', 'JJ'), (u'path', 'NN'), (u'font', 'NN'), (u'display', 'NN'), (u'name', 'NN'), (u'mac', 'NN'), (u'use', 'NN'), (u'photoshop', 'NN'), (u'javascript', 'NN'), (u'api', 'NN'), (u'font', 'NN'), (u'psd', 'NN'), (u'font', 'NN'), (u'name', 'NN'), (u'return', 'NN'), (u'api', 'NN'), (u'want', 'NN'), (u'actual', 'JJ'), (u'physic', 'NN'), (u'font', 'NN'), (u'file', 'NN'), (u'correspond', 'NN'), (u'disc', 'NN'), (u'python', 'NN'), (u'program', 'NN'), (u'osx', 'NN'), (u'guess', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'photoshop', 'NN'), (u'javascript', 'NN'), (u'python', 'NN'), (u'function', 'NN'), (u'osx', 'NN'), (u'api', 'NN'), (u'call', 'NN'), (u'python', 'NN')], [(u'homegrown', 'NN'), (u'consumpt', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'ive', 'JJ'), (u'write', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'net', 'NN'), (u'app', 'NN'), (u'im', 'NN'), (u'readi', 'NN'), (u'consum', 'NN'), (u'ive', 'JJ'), (u'numer', 'NN'), (u'exampl', 'NN'), (u'homegrown', 'NN'), (u'code', 'NN'), (u'consum', 'NN'), (u'servic', 'NN'), (u'oppos', 'NN'), (u'use', 'NN'), (u'auto', 'NN'), (u'gener', 'NN'), (u'method', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'creat', 'NN'), (u'ad', 'NN'), (u'web', 'NN'), (u'refer', 'NN'), (u'advantag', 'NN')], [(u'winform', 'NN'), (u'combobox', 'NN'), (u'data', 'NNS'), (u'bind', 'NN'), (u'gotcha', 'NN'), (u'ok', 'NN'), (u'im', 'NN'), (u'web', 'NN'), (u'dabbl', 'NN'), (u'window', 'NN'), (u'form', 'NN'), (u'project', 'NN'), (u'everi', 'NN'), (u'thing', 'NN'), (u'confound', 'NN'), (u'day', 'NN'), (u'assum', 'NN'), (u'someth', 'NN'), (u'combo', 'NN'), (u'box', 'NN'), (u'bound', 'NN'), (u'array', 'NN'), (u'everyth', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'chang', 'NN'), (u'valu', 'NN'), (u'combo', 'NN'), (u'box', 'NN'), (u'chang', 'NN'), (u'combo', 'NN'), (u'box', 'NN'), (u'select', 'NN'), (u'array', 'NN'), (u'pass', 'NN'), (u'refer', 'NN'), (u'learn', 'NN'), (u'learn', 'NN'), (u'c', 'NNS'), (u'd', 'NN'), (u'earth', 'NN'), (u'combo', 'NN'), (u'box', 'NN'), (u'chang', 'NN'), (u'togeth', 'NNS'), (u'dont', 'NN'), (u'believ', 'NN'), (u'combo', 'NN'), (u'box', 'NN'), (u'control', 'NN'), (u'modifi', 'NN'), (u'collect', 'NN'), (u'work', 'NN'), (u'dont', 'NN'), (u'achiev', 'NN'), (u'funcion', 'NN'), (u'/', 'NN'), (u'desir', 'NN')], [(u'preview', 'NN'), (u'jpeg', 'NN'), (u'pdf', 'NN'), (u'window', 'NN'), (u'cross-platform', 'NN'), (u'python', 'NN'), (u'applic', 'NN'), (u'need', 'NN'), (u'gener', 'NN'), (u'jpeg', 'NN'), (u'preview', 'NN'), (u'page', 'NN'), (u'pdf', 'NN'), (u'mac', 'NN'), (u'spawn', 'NN'), (u'sip', 'NN'), (u'someth', 'NN'), (u'similarli', 'NN'), (u'simpl', 'NN'), (u'window', 'NN')], [(u'frequent', 'NN'), (u'systemexit', 'NN'), (u'rubi', 'NN'), (u'http', 'NN'), (u'call', 'NN'), (u'rubi', 'NN'), (u'rail', 'NN'), (u'websit', 'NN'), (u'http', 'NN'), (u'call', 'NN'), (u'extern', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'day', 'NN'), (u'systemexit', 'NN'), (u'stacktrac', 'NN'), (u'error', 'NN'), (u'email', 'NN'), (u'call', 'NN'), (u'servic', 'NN'), (u'fail', 'NN'), (u'tri', 'NN'), (u'exact', 'NN'), (u'queri', 'NN'), (u'site', 'NN'), (u'moment', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'sinc', 'NN'), (u'site', 'NN'), (u'live', 'JJ'), (u'ive', 'JJ'), (u'luck', 'NN'), (u'track', 'NN'), (u'caus', 'NN'), (u'rubi', 'NN'), (u'version', 'NN'), (u'rail', 'NN'), (u'version', 'NN'), (u'anyon', 'NN'), (u'els', 'NNS'), (u'problem', 'NN'), (u'error', 'NN'), (u'stacktrac', 'NN'), (u'systemexit', 'NN'), (u'occur', 'NN'), (u'/usr/local/lib/ruby/gems//gems/rails-/lib/fcgi_handlerrbin', 'NN'), (u'`exit', 'NN'), (u'/usr/local/lib/ruby/gems//gems/rails-/lib/fcgi_handlerrbin', 'NN'), (u'`exit_now_handl', 'NN'), (u'/usr/local/lib/ruby/gems//gems/activesupport-/lib/active_support/inflectorrbin', 'NN'), (u'`to_proc', 'NN'), (u'/usr/local/lib/ruby//net/protocolrbin', 'NN'), (u'`call', 'NN'), (u'/usr/local/lib/ruby//net/protocolrbin', 'NN'), (u'`sysread', 'NN'), (u'/usr/local/lib/ruby//net/protocolrbin', 'NN'), (u'`rbuf_fil', 'NN'), (u'/usr/local/lib/ruby//timeoutrbin', 'NN'), (u'`timeout', 'NN'), (u'/usr/local/lib/ruby//timeoutrbin', 'NN'), (u'`timeout', 'NN'), (u'/usr/local/lib/ruby//net/protocolrbin', 'NN'), (u'`rbuf_fil', 'NN'), (u'/usr/local/lib/ruby//net/protocolrbin', 'NN'), (u'`readuntil', 'NN'), (u'/usr/local/lib/ruby//net/protocolrbin', 'NN'), (u'`readlin', 'NN'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`read_status_lin', 'NN'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`read_new', 'NN'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`request', 'JJS'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`request_get', 'NN'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`get_respons', 'NNS'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`start', 'NN'), (u'/usr/local/lib/ruby//net/httprbin', 'NN'), (u'`get_respons', 'NNS')], [(u'continu', 'NN'), (u'integr', 'NN'), (u'system', 'NN'), (u'python', 'NN'), (u'codebas', 'NN'), (u'im', 'NN'), (u'start', 'NN'), (u'work', 'NN'), (u'hobbi', 'NN'), (u'project', 'NN'), (u'python', 'NN'), (u'codebas', 'NN'), (u'set', 'NN'), (u'form', 'NN'), (u'continu', 'NN'), (u'integr', 'NN'), (u'ie', 'NN'), (u'batteri', 'NN'), (u'test-cas', 'NN'), (u'time', 'NN'), (u'check-in', 'NN'), (u'send', 'NN'), (u'nag', 'NN'), (u'e-mail', 'NN'), (u'respons', 'NNS'), (u'person', 'NN'), (u'test', 'NN'), (u'fail', 'NN'), (u'similar', 'JJ'), (u'cruisecontrol', 'NN'), (u'teamciti', 'NN'), (u'realiz', 'NN'), (u'hook', 'NN'), (u'vcse', 'NN'), (u'requir', 'NN'), (u'test', 'NN'), (u'machin', 'NN'), (u'version', 'NN'), (u'control', 'NN'), (u'server', 'NN'), (u'isnt', 'NN'), (u'eleg', 'NN'), (u'anyon', 'NN'), (u'suggest', 'NN'), (u'small', 'JJ'), (u'user-friendli', 'JJ'), (u'open-sourc', 'NN'), (u'continu', 'NN'), (u'integr', 'NN'), (u'system', 'NN'), (u'suitabl', 'NN'), (u'python', 'NN'), (u'codebas', 'NN')], [(u'definit', 'NN'), (u'guid', 'NN'), (u'form', 'NN'), (u'base', 'NN'), (u'websit', 'NN'), (u'authent', 'NN'), (u'form', 'NN'), (u'base', 'NN'), (u'authent', 'NN'), (u'websit', 'NN'), (u'believ', 'NN'), (u'stack', 'NN'), (u'overflow', 'NN'), (u'resourc', 'NN'), (u'specif', 'NN'), (u'technic', 'NN'), (u'question', 'NN'), (u'gener', 'NN'), (u'guidelin', 'NN'), (u'solv', 'NN'), (u'variat', 'NN'), (u'common', 'JJ'), (u'problem', 'NN'), (u'"form', 'NN'), (u'base', 'NN'), (u'authent', 'NN'), (u'websites"', 'NN'), (u'fine', 'NN'), (u'topic', 'NN'), (u'experi', 'NN'), (u'includ', 'NN'), (u'topic', 'NN'), (u'log', 'NN'), (u'remain', 'NN'), (u'log', 'NN'), (u'store', 'NN'), (u'password', 'NN'), (u'use', 'NN'), (u'secret', 'NN'), (u'question', 'NN'), (u'forgotten', 'NNS'), (u'username/password', 'NN'), (u'function', 'NN'), (u'openid', 'NN'), (u'"rememb', 'NN'), (u'me"', 'NN'), (u'checkbox', 'NN'), (u'browser', 'NN'), (u'autocomplet', 'NN'), (u'usernam', 'JJ'), (u'password', 'NN'), (u'secret', 'NN'), (u'url', 'NN'), (u'public', 'NN'), (u'url', 'NN'), (u'protect', 'NN'), (u'digest', 'NN'), (u'check', 'NN'), (u'password', 'NN'), (u'strength', 'NN'), (u'e-mail', 'NN'), (u'valid', 'JJ'), (u'much', 'JJ'), (u'form', 'NN'), (u'base', 'NN'), (u'authent', 'NN'), (u'includ', 'NN'), (u'thing', 'NN'), (u'role', 'NN'), (u'author', 'NN'), (u'http', 'NN'), (u'basic', 'JJ'), (u'authent', 'NN'), (u'pleas', 'NNS'), (u'help', 'NN'), (u'suggest', 'NN'), (u'subtop', 'NN'), (u'submit', 'NN'), (u'good', 'JJ'), (u'articl', 'NN'), (u'subject', 'NN'), (u'edit', 'NN'), (u'offici', 'NN'), (u'answer', 'NN')], [(u'use', 'NN'), (u'combin', 'NN'), (u'set', 'NN'), (u'test', 'NN'), (u'data', 'NNS'), (u'test', 'NN'), (u'function', 'NN'), (u'tupl', 'NN'), (u'set', 'NN'), (u'case', 'NN'), (u'normal', 'JJ'), (u'valu', 'NN'), (u'exampl', 'NN'), (u'test', 'NN'), (u'function', 'NN'), (u'return', 'NN'), (u'whenev', 'NN'), (u'length', 'NN'), (u'form', 'NN'), (u'valid', 'JJ'), (u'triangl', 'NN'), (u'specif', 'NN'), (u'case', 'NN'), (u'neg', 'NN'), (u'/', 'NN'), (u'small', 'JJ'), (u'/', 'NN'), (u'larg', 'NN'), (u'number', 'NN'), (u'valu', 'NN'), (u'close-to', 'NN'), (u'overflow', 'NN'), (u'etc;', 'NN'), (u'main', 'JJ'), (u'aim', 'NN'), (u'gener', 'NN'), (u'combin', 'NN'), (u'valu', 'NN'), (u'repetit', 'NN'), (u'order', 'NN'), (u'set', 'NN'), (u'test', 'NN'), (u'data', 'NNS'), (u'note', 'NN'), (u'actual', 'JJ'), (u'answer', 'NN'), (u'help', 'NN'), (u'other', 'JJ'), (u'challeng', 'NN'), (u'peopl', 'NN'), (u'here!', 'NN'), (u'--will', 'NN'), (u'post', 'NN'), (u'answer', 'NN')], [(u'write', 'NN'), (u'webconfig', 'NN'), (u'medium', 'NN'), (u'trust', 'NN'), (u'upload', 'NN'), (u'decent', 'NN'), (u'size', 'NN'), (u'web', 'NN'), (u'app', 'NN'), (u'share', 'NN'), (u'host', 'NN'), (u'provid', 'NN'), (u'fresh', 'JJ'), (u'set', 'NN'), (u'challeng', 'NN'), (u'mean', 'NN'), (u'sleepless', 'NN'), (u'night', 'NN'), (u'issu', 'NN'), (u'certainli', 'NN'), (u'applic', 'NN'), (u'medium', 'NN'), (u'trust', 'NN'), (u'clue', 'NN'), (u'mitig', 'NN'), (u'issu', 'NN'), (u'instal', 'NN'), (u'admin', 'NN'), (u'abl', 'NN'), (u'specifi', 'NN'), (u'connectionstr', 'NN'), (u'prefer', 'NN'), (u'cannot', 'NN'), (u'way', 'NN'), (u'write', 'NN'), (u'webconfig', 'NN'), (u'medium', 'NN'), (u'trust', 'NN'), (u'anyon', 'NN'), (u'solut', 'NN'), (u'put', 'NN'), (u'prefer', 'NN'), (u'file', 'NN')], [(u'differ', 'NN'), (u'int', 'NN'), (u'integ', 'NN'), (u'java', 'NN'), (u'c#', 'NN'), (u'sit', 'NN'), (u'local', 'JJ'), (u'border', 'NN'), (u'sip', 'NN'), (u'coffe', 'NN'), (u'read', 'NN'), (u'joel', 'NN'), (u'softwar', 'NN'), (u'free', 'JJ'), (u'joel', 'NN'), (u'spolski', 'NN'), (u'someth', 'NN'), (u'particular', 'JJ'), (u'type', 'NN'), (u'programm', 'NN'), (u'differ', 'NN'), (u'int', 'NN'), (u'integ', 'NN'), (u'java/c#', 'NN'), (u'object', 'NN'), (u'orient', 'NN'), (u'program', 'NN'), (u'languag', 'NN'), (u'quick', 'NN'), (u'brain', 'NN'), (u'check', 'NN'), (u'realiz', 'NN'), (u'dismay', 'NN'), (u'didnt', 'NN'), (u'answer', 'NN')], [(u'deploy', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'databas', 'NN'), (u'test', 'NN'), (u'live', 'JJ'), (u'wonder', 'NN'), (u'guy', 'NN'), (u'manag', 'NN'), (u'deploy', 'NN'), (u'databas', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'specif', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'live', 'JJ'), (u'part', 'NN'), (u'buildscript', 'NN'), (u'standard', 'NN'), (u'window', 'NN'), (u'batch', 'NN'), (u'current', 'JJ'), (u'complex', 'JJ'), (u'script', 'NN'), (u'switch', 'NN'), (u'powershel', 'NN'), (u'enterpris', 'NN'), (u'manager/manag', 'NN'), (u'studio', 'NN'), (u'express', 'NN'), (u'count', 'NN'), (u'copi', 'NN'), (u'mdf', 'NN'), (u'file', 'NN'), (u'attach', 'NN'), (u'bit', 'NN'), (u'care', 'NN'), (u'work', 'NN'), (u'binari', 'NN'), (u'data', 'NNS'), (u'seem', 'NN'), (u'compatibl', 'NN'), (u'issu', 'NN'), (u'live', 'JJ'), (u'version', 'NN'), (u'server', 'NN'), (u'time', 'NN'), (u'lack', 'NN'), (u'"explain', 'NN'), (u'creat', 'NN'), (u'table"', 'NN'), (u't-sql', 'NN'), (u'someth', 'NN'), (u'export', 'NN'), (u'exist', 'NN'), (u'databas', 'NN'), (u'sql-script', 'NN'), (u'target', 'NN'), (u'server', 'NN'), (u'ye', 'NN'), (u'tool', 'NN'), (u'automat', 'NN'), (u'dump', 'NN'), (u'databas', 'NN'), (u'sql', 'NN'), (u'queri', 'NN'), (u'command', 'NN'), (u'line', 'NN'), (u'enterpris', 'NN'), (u'manager/manag', 'NN'), (u'studio', 'NN'), (u'express', 'NN'), (u'count', 'NN'), (u'lastli', 'NN'), (u'fact', 'NN'), (u'live', 'JJ'), (u'databas', 'NN'), (u'alreadi', 'NN'), (u'contain', 'NN'), (u'data', 'NNS'), (u'deploy', 'NN'), (u'involv', 'NN'), (u'creat', 'NN'), (u'tabl', 'NN'), (u'check', 'NN'), (u'differ', 'NN'), (u'structur', 'NN'), (u'alter', 'NN'), (u'tabl', 'NN'), (u'live', 'JJ'), (u'need', 'NN'), (u'data', 'NNS'), (u'verification/convers', 'NNS'), (u'exist', 'NN'), (u'field', 'NN'), (u'chang', 'NN'), (u'hear', 'NN'), (u'lot', 'NN'), (u'great', 'JJ'), (u'stuff', 'NN'), (u'red', 'JJ'), (u'gate', 'NN'), (u'product', 'NN'), (u'hobbi', 'NN'), (u'project', 'NN'), (u'price', 'NN'), (u'bit', 'NN'), (u'steep', 'NN'), (u'use', 'NN'), (u'automat', 'NN'), (u'deploy', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'databas', 'NN'), (u'test', 'NN'), (u'live', 'JJ')], [(u'best', 'JJS'), (u'way', 'NN'), (u'access', 'NN'), (u'exchang', 'NN'), (u'use', 'NN'), (u'php', 'NN'), (u'im', 'NN'), (u'write', 'NN'), (u'cm', 'NN'), (u'applic', 'NN'), (u'php', 'NN'), (u'requir', 'NN'), (u'abl', 'NN'), (u'interfac', 'NN'), (u'custom', 'NN'), (u'exchang', 'NN'), (u'server', 'NN'), (u'ive', 'JJ'), (u'function', 'NN'), (u'time', 'NN'), (u'use', 'NN'), (u'webdav', 'NN'), (u'im', 'NN'), (u'lean', 'NN'), (u'site', 'NN'), (u'ii', 'NN'), (u'apach', 'NN'), (u'prefer', 'NN'), (u'window', 'NN'), (u'server', 'NN'), (u'thing', 'NN'), (u'need', 'NN'), (u'includ', 'NN'), (u'ad', 'NN'), (u'contact', 'NN'), (u'user', 'NN'), (u'address', 'NN'), (u'book', 'NN'), (u'send', 'NN'), (u'email', 'NN'), (u'user', 'NN'), (u'report', 'NN'), (u'contact', 'NN'), (u'user', 'NN'), (u'pretti', 'NNS'), (u'easi', 'NN'), (u'webdav', 'NN'), (u'way', 'NN'), (u'doesnt', 'NN'), (u'requir', 'NN'), (u'function', 'NN'), (u'deprec', 'NN'), (u'time', 'NN'), (u'idea', 'NN'), (u'updat', 'NN'), (u'justin', 'NN'), (u'love', 'NN'), (u'idea', 'NN'), (u'use', 'NN'), (u'com', 'NN'), (u'object', 'NN'), (u'worri', 'NN'), (u'maintain', 'NN'), (u'rd', 'NN'), (u'product', 'NN'), (u'everyth', 'NN'), (u'work', 'NN'), (u'john', 'NN'), (u'write', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'c#', 'NN'), (u'interfac', 'NN'), (u'function', 'NN'), (u'access', 'NN'), (u'php', 'NN'), (u'app', 'NN'), (u'littl', 'NN'), (u'bit', 'NN'), (u'way', 'NN'), (u'im', 'NN'), (u'%', 'NN'), (u'convinc', 'NN'), (u'webdav', 'NN'), (u'anyon', 'NN'), (u'show', 'NN'), (u'im', 'NN'), (u'silli', 'NN')], [(u'cx_oracl', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'iter', 'NN'), (u'result', 'NN'), (u'set', 'NN'), (u'sever', 'NN'), (u'way', 'NN'), (u'iter', 'NN'), (u'result', 'NN'), (u'set', 'NN'), (u'way', 'NN'), (u'best', 'JJS')], [(u'robust', 'NN'), (u'random', 'NN'), (u'number', 'NN'), (u'gener', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'perform', 'NN'), (u'reason', 'NN'), (u'robust', 'NN'), (u'rng', 'NN'), (u'use', 'NN'), (u'special', 'JJ'), (u'hardwar', 'NN'), (u'use', 'NN'), (u'mathemat', 'NN'), (u'method', 'NN'), (u'mersenn', 'NN'), (u'twister', 'NN'), (u'etc', 'NN'), (u'"collect', 'NN'), (u'entropy"', 'NN'), (u'machin', 'NN'), (u'whatev', 'NN'), (u'linux/etc', 'NN'), (u'drand', 'NN'), (u'gener', 'NN'), (u'random', 'NN'), (u'bit', 'NN'), (u'id', 'NN'), (u'similar', 'JJ'), (u'function/class', 'NN'), (u'c++', 'NN'), (u'c#', 'NN'), (u'gener', 'NN'), (u'bit', 'NN'), (u'random', 'NN'), (u'low-ord', 'NN'), (u'bit', 'NN'), (u'equal', 'JJ'), (u'random', 'NN'), (u'high-ord', 'NN'), (u'bit', 'NN'), (u'doesnt', 'NN'), (u'cryptograph', 'NN'), (u'secur', 'NN'), (u'use', 'NN'), (u'base', 'NN'), (u'c-languag', 'NN'), (u'rand', 'NN'), (u'net', 'NN'), (u'systemrandom', 'NN'), (u'sourc', 'NN'), (u'code', 'NN'), (u'link', 'NN'), (u'sourc', 'NN'), (u'etc', 'NN'), (u'appreciated!', 'NN'), (u'fail', 'NN'), (u'type', 'NN'), (u'rng', 'NN'), (u'look', 'NN')], [(u'build', 'NN'), (u'window', 'NN'), (u'nt', 'NN'), (u'use', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'mfc', 'NN'), (u'applic', 'NN'), (u'im', 'NN'), (u'tri', 'NN'), (u'migrat', 'NN'), (u'use', 'NN'), (u'caus', 'NN'), (u'set', 'NN'), (u'caus', 'NN'), (u'error', 'NN'), (u'set', 'NN'), (u'pleas', 'NNS'), (u'use', 'NN'), (u'/md', 'NN'), (u'switch', 'NN'), (u'_afxdll', 'NN'), (u'build', 'NN'), (u'research', 'NN'), (u'date', 'NN'), (u'indic', 'NN'), (u'imposs', 'NN'), (u'build', 'NN'), (u'applic', 'NN'), (u'execut', 'NN'), (u'window', 'NN'), (u'nt', 'NN'), (u'use', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'c++', 'NN'), (u'case', 'NN'), (u'realli', 'NN'), (u'true', 'JJ'), (u'workaround', 'NN'), (u'avail', 'NN')], [(u'effici', 'NN'), (u'code', 'NN'), (u'prime', 'NN'), (u'number', 'NN'), (u'want', 'NN'), (u'print', 'NN'), (u'prime', 'NN'), (u'number', 'NN'), (u'anyon', 'NN'), (u'effici', 'NN'), (u'code', 'NN'), (u'clarif', 'NN'), (u'matter', 'NN'), (u'code', 'NN'), (u'ineffici', 'NN'), (u'n', 'NN'), (u'>', 'NN'), (u'size', 'NN'), (u'code', 'NN'), (u'matter', 'NN'), (u'cannot', 'NN'), (u'hard', 'JJ'), (u'code', 'NN'), (u'valu', 'NN'), (u'manner', 'NN')], [(u'use', 'NN'), (u'lambda', 'NN'), (u'use', 'NN'), (u'procnew', 'NN'), (u'rubi', 'NN'), (u'subtl', 'NN'), (u'differ', 'NN'), (u'proc/lambda', 'NN'), (u'hand', 'NN'), (u'differ', 'NN'), (u'guidelin', 'NN'), (u'decid', 'NN'), (u'choos', 'NN'), (u'rubi', 'NN'), (u'proc', 'NN'), (u'lambda', 'NN'), (u'differ', 'NN'), (u'deal', 'NN')], [(u'swap', 'NN'), (u'uniqu', 'NN'), (u'index', 'NN'), (u'column', 'NN'), (u'valu', 'NN'), (u'databas', 'NN'), (u'databas', 'NN'), (u'tabl', 'NN'), (u'field', 'NN'), (u'primari', 'NN'), (u'key', 'NN'), (u'uniqu', 'NN'), (u'index', 'NN'), (u'want', 'NN'), (u'swap', 'NN'), (u'valu', 'NN'), (u'column', 'NN'), (u'row', 'NN'), (u'hack', 'NN'), (u'delet', 'NN'), (u'row', 'NN'), (u're-insert', 'NN'), (u'updat', 'NN'), (u'row', 'NN'), (u'valu', 'NN'), (u'swap', 'NN'), (u'updat', 'NN'), (u'actual', 'JJ'), (u'valu', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'seem', 'NN'), (u'appropri', 'NN'), (u'solut', 'NN'), (u'problem', 'NN'), (u'anyon', 'NN'), (u'help', 'NN')], [(u'automat', 'NN'), (u'updat', 'NN'), (u'version', 'NN'), (u'number', 'NN'), (u'version', 'NN'), (u'properti', 'NN'), (u'applic', 'NN'), (u'increment', 'NN'), (u'build', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'enabl', 'NN'), (u'function', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'/', 'NN'), (u'tri', 'NN'), (u'specifi', 'NN'), (u'assemblyvers', 'NNS'), (u'*', 'NN'), (u'doesnt', 'NN'), (u'exactli', 'NN'), (u'want', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'set', 'NN'), (u'file', 'NN'), (u'attempt', 'NN'), (u'assembl', 'NN'), (u'version', 'NN'), (u'chang', 'NN'), (u'set', 'NN'), (u'reset', 'NN'), (u'default', 'NN'), (u'sinc', 'NN'), (u'applic', 'NN'), (u'look', 'NN'), (u'set', 'NN'), (u'file', 'NN'), (u'directori', 'NN'), (u'abl', 'NN'), (u'display', 'NN'), (u'version', 'NN'), (u'number', 'NN'), (u'form', 'NN'), (u'user', 'NN'), (u'problem', 'NN'), (u'log', 'NN'), (u'version', 'NN'), (u'use', 'NN'), (u'tell', 'NN'), (u'upgrad', 'NN'), (u'old', 'JJ'), (u'releas', 'NNS'), (u'short', 'JJ'), (u'explan', 'NN'), (u'version', 'NN'), (u'work', 'NN'), (u'appreci', 'NN'), (u'build', 'NN'), (u'revis', 'NN'), (u'number', 'NN'), (u'increment', 'NN')], [(u'checklist', 'NN'), (u'ii', 'NN'), (u'/aspnet', 'NN'), (u'window', 'NN'), (u'authent', 'NN'), (u'ive', 'JJ'), (u'troubl', 'NN'), (u'aspnet', 'NN'), (u'applic', 'NN'), (u'automat', 'NN'), (u'log', 'NN'), (u'user', 'NN'), (u'intranet', 'NN'), (u'site', 'NN'), (u'im', 'NN'), (u'build', 'NN'), (u'matter', 'NN'), (u'googl', 'NN'), (u'experiment', 'NN'), (u'appli', 'NN'), (u'login', 'NN'), (u'box', 'NN'), (u'display', 'NN'), (u'ie', 'NN'), (u'ive', 'JJ'), (u'window', 'NN'), (u'authent', 'NN'), (u'mode', 'NN'), (u'set', 'NN'), (u'webconfig', 'NN'), (u'disabl', 'NN'), (u'anonym', 'NN'), (u'access', 'NN'), (u'configur', 'NN'), (u'correct', 'NN'), (u'default', 'NN'), (u'domain', 'NN'), (u'ii', 'NN'), (u'ask', 'NN'), (u'user', 'NN'), (u'log', 'NN'), (u'annoyingli', 'NN'), (u'user', 'NN'), (u'requir', 'NN'), (u'provid', 'NN'), (u'domain', 'NN'), (u'domain\\aus', 'NN'), (u'caus', 'NN'), (u'problem', 'NN'), (u'non-techn', 'JJ'), (u'visitor', 'NN'), (u'thank', 'NN'), (u'zeu', 'NN'), (u'password', 'NN'), (u'rememb', 'NN'), (u'function', 'NN'), (u'im', 'NN'), (u'network', 'NN'), (u'administr', 'NN'), (u'possibl', 'NN'), (u'someth', 'NN'), (u'activ', 'NN'), (u'directori', 'NN'), (u'set', 'NN'), (u'incorrectli', 'NN'), (u'miss', 'NN'), (u'someth', 'NN'), (u'simpl', 'NN'), (u'pleas', 'NNS'), (u'note', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'imperson', 'NN'), (u'user', 'NN'), (u'need', 'NN'), (u'iprincipalnam', 'NN'), (u'properti', 'NN'), (u'match', 'NN'), (u'valid', 'JJ'), (u'record', 'NN'), (u'user', 'NN'), (u'databas', 'NN'), (u'henc', 'NN'), (u'authent', 'NN'), (u'user', 'NN'), (u'applic', 'NN'), (u'end', 'NN'), (u'use', 'NN'), (u'checklist', 'NN'), (u'configur', 'NN'), (u'requir', 'NN'), (u'ad', 'NN'), (u'aspnet', 'NN'), (u'ii', 'NN'), (u'work', 'NN'), (u'togeth', 'NNS'), (u'manner', 'NN'), (u'refer', 'NN'), (u'debug', 'NN'), (u'hope', 'NN'), (u'reduc', 'NN'), (u'user', 'NN'), (u'friction', 'NN')], [(u'encrypt', 'NN'), (u'password', 'NN'), (u'fastest', 'JJS'), (u'secur', 'NN'), (u'way', 'NN'), (u'encrypt', 'NN'), (u'password', 'NN'), (u'php', 'NN'), (u'prefer', 'NN'), (u'method', 'NN'), (u'choos', 'NN'), (u'portablein', 'NN'), (u'word', 'NN'), (u'migrat', 'NN'), (u'websit', 'NN'), (u'differ', 'NN'), (u'server', 'NN'), (u'password', 'NN'), (u'continu', 'NN'), (u'workth', 'NN'), (u'method', 'NN'), (u'use', 'NN'), (u'told', 'NN'), (u'depend', 'NN'), (u'exact', 'NN'), (u'version', 'NN'), (u'librari', 'NN'), (u'instal', 'NN'), (u'server', 'NN')], [(u'use', 'NN'), (u'match', 'NN'), (u'attribut', 'NN'), (u'python', 'NN'), (u'object', 'NN'), (u'array', 'NN'), (u'dont', 'NN'), (u'rememb', 'NN'), (u'dream', 'NN'), (u'seem', 'NN'), (u'recal', 'JJ'), (u'function', 'NN'), (u'someth', 'NN'), (u'ive', 'JJ'), (u'look', 'NN'), (u'doc', 'NN'), (u'kind', 'NN'), (u'thing', 'NN'), (u'doesnt', 'NN'), (u'fall', 'NN'), (u'obviou', 'NN'), (u'list', 'NN'), (u'header', 'NN')], [(u'connect', 'NN'), (u'php', 'NN'), (u'as/', 'NN'), (u'ive', 'JJ'), (u'upcom', 'NN'), (u'project', 'NN'), (u'wherein', 'NN'), (u'need', 'NN'), (u'connect', 'NN'), (u'websit', 'NN'), (u'php/apach', 'NN'), (u'/openbsd', 'NN'), (u'back-end', 'NN'), (u'system', 'NN'), (u'iseri', 'NN'), (u'os', 'NN'), (u'vr', 'NN'), (u'access', 'NN'), (u'tabl', 'NN'), (u'store', 'NN'), (u'ive', 'JJ'), (u'check', 'NN'), (u'roadblock', 'NN'), (u'ive', 'JJ'), (u'db', 'NN'), (u'extens', 'NNS'), (u'db', 'NN'), (u'softwar', 'NN'), (u'ibm', 'NN'), (u'linux', 'NN'), (u'ive', 'JJ'), (u'tri', 'NN'), (u'compil', 'NN'), (u'extens', 'NNS'), (u'softwar', 'NN'), (u'ibm', 'NN'), (u'tri', 'NN'), (u'precompil', 'NN'), (u'ibm_db', 'NN'), (u'extens', 'NNS'), (u'luck', 'NN'), (u'ibm', 'NN'), (u'support', 'NN'), (u'linux', 'NN'), (u'turn', 'NN'), (u'linux', 'NN'), (u'emul', 'NN'), (u'kernel', 'NNS'), (u'didnt', 'NN'), (u'seem', 'NN'), (u'help', 'NN'), (u'anyth', 'NN'), (u'anyon', 'NN'), (u'everyth', 'NN'), (u'nativ', 'NN'), (u'openbsd', 'NN'), (u'great', 'JJ'), (u'think', 'NN'), (u'set', 'NN'), (u'second', 'JJ'), (u'server', 'NN'), (u'cento', 'NN'), (u'db', 'NN'), (u'instal', 'NN'), (u'zendcor', 'NN'), (u'ibm', 'NN'), (u'sinc', 'NN'), (u'seem', 'NN'), (u'driver', 'NN'), (u'set', 'NN'), (u'small', 'JJ'), (u'transact', 'NN'), (u'server', 'NN'), (u'post', 'NN'), (u'json', 'NN'), (u'represent', 'NN'), (u'db', 'NN'), (u'data', 'NNS'), (u'need', 'NN'), (u'second', 'JJ'), (u'option', 'NN'), (u'seem', 'NN'), (u'overkil', 'NN'), (u'anyon', 'NN'), (u'els', 'NNS'), (u'idea', 'NN')], [(u'ide', 'NN'), (u'provid', 'NN'), (u'code', 'NN'), (u'complet', 'NN'), (u'python', 'NN'), (u'type', 'NN'), (u'charact', 'NN'), (u'keyword', 'NN'), (u'drastic', 'JJ'), (u'speed', 'NN'), (u'code', 'NN'), (u'spend', 'NN'), (u'time', 'NN'), (u'write', 'NN'), (u'python', 'NN'), (u'code', 'NN'), (u'reach', 'NN'), (u'ctrl+space', 'NN'), (u'ide', 'NN'), (u'support', 'NN'), (u'code', 'NN'), (u'complet', 'NN'), (u'python', 'NN'), (u'python', 'NN'), (u'mac', 'NN'), (u'os', 'NN'), (u'x', 'NN'), (u'tool', 'NN'), (u'prefer', 'NN'), (u'seem', 'NN'), (u'doc', 'NN'), (u'string', 'NN'), (u'properti', 'NN'), (u'python', 'NN'), (u'method', 'NN'), (u'perfect', 'NN'), (u'match', 'NN'), (u'inlin', 'NN'), (u'api', 'NN'), (u'discoveri', 'NN')], [(u'embed', 'NN'), (u'databas', 'NN'), (u'net', 'NN'), (u'network', 'NN'), (u'look', 'NN'), (u'embed', 'NN'), (u'databas', 'NN'), (u'use', 'NN'), (u'net', 'NN'), (u'c#', 'NN'), (u'applic', 'NN'), (u'caveat', 'NN'), (u'applic', 'NN'), (u'least', 'JJS'), (u'databas', 'NN'), (u'store', 'NN'), (u'network', 'NN'), (u'drive', 'NN'), (u'use', 'NN'), (u'user', 'NN'), (u'time', 'NN'), (u'idea', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'compact', 'NN'), (u'edit', 'NN'), (u'realli', 'NN'), (u'nice', 'JJ'), (u'integr', 'NN'), (u'network', 'NN'), (u'firebird', 'NN'), (u'seem', 'NN'), (u'issu', 'NN'), (u'net', 'NN'), (u'integr', 'NN'), (u'seem', 'NN'), (u'realli', 'NN'), (u'first-class', 'NN'), (u'larg', 'NN'), (u'undocu', 'NN'), (u'blackfish', 'NN'), (u'sql', 'NN'), (u'look', 'NN'), (u'interest', 'NN'), (u'trial', 'NN'), (u'net', 'NN'), (u'version', 'NN'), (u'price', 'NN'), (u'ok', 'NN'), (u'suggest', 'NN'), (u'someth', 'NN'), (u'work', 'NN'), (u'net', 'NN'), (u'network', 'NN'), (u'need', 'NN'), (u'actual', 'JJ'), (u'instal', 'NN'), (u'server', 'NN'), (u'softwar', 'NN')], [(u'net', 'NN'), (u'test', 'NN'), (u'framework', 'NN'), (u'advic', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'introduc', 'NN'), (u'unit', 'NN'), (u'test', 'NN'), (u'framework', 'NN'), (u'mix', 'NN'), (u'job', 'NN'), (u'use', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'move', 'NN'), (u'next', 'JJ'), (u'month', 'NN'), (u'work', 'NN'), (u'primarili', 'NN'), (u'c#', 'NN'), (u'framework', 'NN'), (u'kind', 'NN'), (u'ide', 'NN'), (u'integr', 'NN'), (u'best', 'JJS'), (u'im', 'NN'), (u'open', 'JJ'), (u'framework', 'NN'), (u'dont', 'NN'), (u'integr', 'NN'), (u'rel', 'NN'), (u'simpl', 'NN'), (u'set', 'NN'), (u'im', 'NN'), (u'resist', 'NN'), (u'way', 'NN'), (u'sure', 'NN'), (u'im', 'NN'), (u'push', 'NN'), (u'isnt', 'NN'), (u'pain', 'NN'), (u'neck', 'NN'), (u'help', 'NN'), (u'case', 'NN'), (u'obviou', 'NN'), (u'choic', 'NN'), (u'research', 'NN'), (u'ive', 'JJ'), (u'point', 'NN'), (u'nunit', 'NN'), (u'id', 'NN'), (u'impress', 'NN'), (u'someon', 'NN'), (u'actual', 'JJ'), (u'use', 'NN'), (u'recommend', 'NN'), (u'team', 'NN'), (u'anyon', 'NN'), (u'use', 'NN'), (u'nunit', 'NN'), (u'pitfal', 'NN'), (u'limit', 'NN'), (u'awar', 'NN'), (u'good', 'JJ'), (u'option', 'NN'), (u'youv', 'NN'), (u'use', 'NN'), (u'nunit', 'NN'), (u'id', 'NN'), (u'greatli', 'NN'), (u'appreci', 'NN'), (u'idea', 'NN'), (u'strength', 'NN'), (u'weak', 'JJ')], [(u'doesnt', 'NN'), (u'vfp', 'NN'), (u'net', 'NN'), (u'oledb', 'NN'), (u'provid', 'NN'), (u'work', 'NN'), (u'bit', 'NN'), (u'window', 'NN'), (u'window', 'NN'), (u'servic', 'NN'), (u'use', 'NN'), (u'vb', 'NN'), (u'read', 'NN'), (u'legaci', 'NN'), (u'data', 'NNS'), (u'visual', 'JJ'), (u'foxpro', 'NN'), (u'databas', 'NN'), (u'insert', 'NN'), (u'sql', 'NN'), (u'problem', 'NN'), (u'use', 'NN'), (u'fine', 'NN'), (u'window', 'NN'), (u'server', 'NN'), (u'-bit', 'NN'), (u'client', 'NN'), (u'recent', 'JJ'), (u'move', 'NN'), (u'window', 'NN'), (u'-bit', 'NN'), (u'servic', 'NN'), (u'wont', 'NN'), (u'work', 'NN'), (u'im', 'NN'), (u'messag', 'NN'), (u'vfp', 'NN'), (u'net', 'NN'), (u'oledb', 'NN'), (u'provid', 'NN'), (u'found', 'NN'), (u'research', 'NN'), (u'everyth', 'NN'), (u'seem', 'NN'), (u'point', 'NN'), (u'solut', 'NN'), (u'help', 'NN'), (u'pleas', 'NNS')], [(u'decent', 'NN'), (u'simpl', 'NN'), (u'gis/map', 'NN'), (u'compon', 'NN'), (u'aspnet', 'NN'), (u'need', 'NN'), (u'display', 'NN'), (u'map', 'NN'), (u'state', 'NN'), (u'differ', 'NN'), (u'color', 'NN'), (u'accord', 'NN'), (u'underli', 'NN'), (u'data', 'NNS'), (u'id', 'NN'), (u'map', 'NN'), (u'contain', 'NN'), (u'facil', 'NN'), (u'subscrib', 'NN'), (u'hover/click', 'NN'), (u'event', 'NN'), (u'state', 'NN'), (u'javascript', 'NN'), (u'presum', 'NN'), (u'use', 'NN'), (u'imagemap', 'NN'), (u'data', 'NNS'), (u'wont', 'NN'), (u'chang', 'NN'), (u'kind', 'NN'), (u'ajax-i', 'NN'), (u'way', 'NN'), (u'ideal', 'NN'), (u'compon', 'NN'), (u'gener', 'NN'), (u'static', 'JJ'), (u'imag', 'NN'), (u'cacheabl', 'NN'), (u'suggest', 'NN')], [(u'class', 'NN'), (u'view', 'NN'), (u'django', 'NN'), (u'django', 'NN'), (u'view', 'NN'), (u'point', 'NN'), (u'function', 'NN'), (u'problem', 'NN'), (u'want', 'NN'), (u'chang', 'NN'), (u'bit', 'NN'), (u'function', 'NN'), (u'ye', 'NN'), (u'keyword', 'NN'), (u'argument', 'NN'), (u'statement', 'NN'), (u'function', 'NN'), (u'think', 'NN'), (u'object', 'NN'), (u'orient', 'NN'), (u'approach', 'NN'), (u'exampl', 'NN'), (u'page', 'NN'), (u'display', 'NN'), (u'user', 'NN'), (u'page', 'NN'), (u'similar', 'JJ'), (u'page', 'NN'), (u'display', 'NN'), (u'group', 'NN'), (u'similar', 'JJ'), (u'use', 'NN'), (u'data', 'NNS'), (u'model', 'NN'), (u'group', 'NN'), (u'member', 'NN'), (u'etc', 'NN'), (u'way', 'NN'), (u'point', 'NN'), (u'view', 'NN'), (u'class', 'NN'), (u'method', 'NN'), (u'extend', 'NN'), (u'class', 'NN'), (u'anyon', 'NN'), (u'tri', 'NN'), (u'approach', 'NN'), (u'idea', 'NN')], [(u'format', 'NN'), (u'string', 'NN'), (u'titl', 'NN'), (u'case', 'NN'), (u'format', 'NN'), (u'string', 'NN'), (u'titl', 'NN'), (u'case', 'NN')], [(u'new', 'JJ'), (u'object', 'NN'), (u'instanc', 'NN'), (u'type', 'NN'), (u'type', 'NN'), (u'object', 'NN'), (u'compile-tim', 'NN'), (u'need', 'NN'), (u'creat', 'NN'), (u'instanc', 'NN'), (u'type', 'NN'), (u'new', 'JJ'), (u'object', 'NN'), (u'instanc', 'NN'), (u'type', 'NN')], [(u'localis', 'NN'), (u'date', 'NN'), (u'format', 'NN'), (u'descriptor', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'localis', 'NN'), (u'date', 'NN'), (u'format', 'NN'), (u'descriptor', 'NN'), (u'anyon', 'NN'), (u'cultur', 'NN'), (u'use', 'NN'), (u'mm/dd/yyyy', 'NN'), (u'format', 'NN'), (u'annoy', 'NN'), (u'enter', 'NN'), (u'date', 'NN'), (u'format', 'NN'), (u'net', 'NN'), (u'framework', 'NN'), (u'provid', 'NN'), (u'good', 'JJ'), (u'localis', 'NN'), (u'support', 'NN'), (u'trivial', 'JJ'), (u'pars', 'NNS'), (u'date', 'NN'), (u'accord', 'NN'), (u'user', 'NN'), (u'cultur', 'NN'), (u'want', 'NN'), (u'display', 'NN'), (u'help', 'NN'), (u'hint', 'NN'), (u'format', 'NN'), (u'requir', 'NN'), (u'especi', 'NN'), (u'distinguish', 'NN'), (u'yy', 'NN'), (u'yyyi', 'NN'), (u'interchang', 'NN'), (u'cultur', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'result', 'NN'), (u'sens', 'NNS'), (u'user', 'NN'), (u'ie', 'NN'), (u'dd/m/yyi', 'NN'), (u'confus', 'NN'), (u'chang', 'NN'), (u'case', 'NN'), (u'switch', 'NN'), (u'letter', 'NN')], [(u'python', 'NN'), (u'mysql', 'NN'), (u'python', 'NN'), (u'work', 'NN'), (u'postgresql', 'NN'), (u'cannot', 'NN'), (u'work', 'NN'), (u'mysql', 'NN'), (u'main', 'JJ'), (u'problem', 'NN'), (u'share', 'NN'), (u'host', 'NN'), (u'account', 'NN'), (u'abil', 'NN'), (u'instal', 'NN'), (u'thing', 'NN'), (u'django', 'NN'), (u'pysql', 'NN'), (u'gener', 'NN'), (u'fail', 'NN'), (u'instal', 'NN'), (u'comput', 'NN'), (u'mayb', 'NN'), (u'good', 'JJ'), (u'cant', 'NN'), (u'instal', 'NN'), (u'host', 'NN'), (u'found', 'NN'), (u'bpgsql', 'NN'), (u'realli', 'NN'), (u'good', 'JJ'), (u'requir', 'NN'), (u'instal', 'NN'), (u'singl', 'NN'), (u'file', 'NN'), (u'look', 'NN'), (u'read', 'NN'), (u'call', 'NN'), (u'function', 'NN'), (u'anybodi', 'NN'), (u'someth', 'NN'), (u'mysql', 'NN')], [(u'solv', 'NN'), (u'linear', 'NN'), (u'equat', 'NN'), (u'need', 'NN'), (u'programmat', 'NN'), (u'solv', 'NN'), (u'system', 'NN'), (u'linear', 'NN'), (u'equat', 'NN'), (u'c', 'NNS'), (u'object', 'NN'), (u'c', 'NNS'), (u'need', 'NN'), (u'c++', 'NN'), (u'exampl', 'NN'), (u'equat', 'NN'), (u'id', 'NN'), (u'best', 'JJS'), (u'approxim', 'NN'), (u'b', 'NN'), (u'tx', 'NN')], [(u'use', 'NN'), (u'python', 'NN'), (u'itertoolsgroupbi', 'NN'), (u'havent', 'NN'), (u'abl', 'NN'), (u'understand', 'NN'), (u'explan', 'NN'), (u'actual', 'JJ'), (u'use', 'NN'), (u'python', 'NN'), (u'function', 'NN'), (u'im', 'NN'), (u'tri', 'NN'), (u'list', 'NN'), (u'case', 'NN'), (u'children', 'NNS'), (u'objectifi', 'NN'), (u'element', 'NN'), (u'divid', 'NN'), (u'group', 'NN'), (u'base', 'NN'), (u'criteria', 'NNS'), (u'iter', 'NN'), (u'group', 'NN'), (u'separ', 'NN'), (u'ive', 'JJ'), (u'review', 'NN'), (u'document', 'NN'), (u'exampl', 'NN'), (u'ive', 'JJ'), (u'troubl', 'NN'), (u'tri', 'NN'), (u'appli', 'NN'), (u'simpl', 'NN'), (u'list', 'NN'), (u'number', 'NN'), (u'use', 'NN'), (u'techniqu', 'NN'), (u'use', 'NN'), (u'pointer', 'NN'), (u'good', 'JJ'), (u'"prerequisite"', 'NN'), (u'read', 'NN'), (u'appreci', 'NN')], [(u'object', 'NN'), (u'orient', 'NN'), (u'vs', 'NN'), (u'relat', 'NN'), (u'databas', 'NN'), (u'object', 'NN'), (u'orient', 'NN'), (u'databas', 'NN'), (u'seem', 'NN'), (u'realli', 'NN'), (u'cool', 'NN'), (u'idea', 'NN'), (u'need', 'NN'), (u'worri', 'NN'), (u'map', 'NN'), (u'domain', 'NN'), (u'model', 'NN'), (u'databas', 'NN'), (u'model', 'NN'), (u'mess', 'NN'), (u'sql', 'NN'), (u'orm', 'NN'), (u'tool', 'NN'), (u'way', 'NN'), (u'understand', 'NN'), (u'relat', 'NN'), (u'db', 'NN'), (u'offer', 'NN'), (u'advantag', 'NN'), (u'massiv', 'NN'), (u'amount', 'NN'), (u'data', 'NNS'), (u'search', 'NN'), (u'index', 'NN'), (u'need', 'NN'), (u'mind', 'NN'), (u'%', 'NN'), (u'websit', 'NN'), (u'massiv', 'NN'), (u'enterpris', 'NN'), (u'issu', 'NN'), (u'need', 'NN'), (u'thought', 'NN'), (u'arent', 'NN'), (u'oo', 'NN'), (u'db', 'NN'), (u'wide', 'JJ'), (u'use', 'NN')], [(u'asp', 'NN'), (u'need', 'NN'), (u'use', 'NN'), (u'sftp', 'NN'), (u'asp', 'NN'), (u'classic', 'JJ'), (u'net', 'NN'), (u'way', 'NN'), (u'sftp', 'NN'), (u'server', 'NN'), (u'upload', 'NN'), (u'download', 'NN'), (u'coupl', 'NN'), (u'file', 'NN'), (u'kick', 'NN'), (u'user', 'NN'), (u'peopl', 'NN'), (u'use', 'NN'), (u'sftp', 'NN'), (u'asp', 'NN'), (u'classic', 'JJ'), (u'necessarili', 'NN'), (u'oppos', 'NN'), (u'purchas', 'NN'), (u'control', 'NN')], [(u'visual', 'JJ'), (u'studio', 'NN'), (u'setup', 'NN'), (u'project', 'NN'), (u'user', 'NN'), (u'registri', 'NN'), (u'set', 'NN'), (u'im', 'NN'), (u'tri', 'NN'), (u'maintain', 'NN'), (u'setup', 'NN'), (u'project', 'NN'), (u'ye', 'NN'), (u'legaci', 'NN'), (u'applic', 'NN'), (u'problem', 'NN'), (u'moment', 'NN'), (u'need', 'NN'), (u'write', 'NN'), (u'registri', 'NN'), (u'entri', 'NN'), (u'everi', 'NN'), (u'user', 'NN'), (u'comput', 'NN'), (u'need', 'NN'), (u'default', 'NN'), (u'user', 'NN'), (u'set', 'NN'), (u'chang', 'NN'), (u'user', 'NN'), (u'feel', 'NN'), (u'isnt', 'NN'), (u'possibl', 'NN'), (u'isnt', 'NN'), (u'someth', 'NN'), (u'instal', 'NN'), (u'someth', 'NN'), (u'applic', 'NN'), (u'user', 'NN'), (u'profil', 'NN'), (u'creat', 'NN'), (u'instal', 'NN'), (u'mind', 'NN'), (u'want', 'NN'), (u'chang', 'NN'), (u'littl', 'NN'), (u'possibl', 'NN'), (u'applic', 'NN'), (u'question', 'NN'), (u'possibl', 'NN'), (u'registri', 'NN'), (u'entri', 'NN'), (u'everi', 'NN'), (u'user', 'NN'), (u'setup', 'NN'), (u'project', 'NN'), (u'moment', 'NN'), (u'project', 'NN'), (u'list', 'NN'), (u'registri', 'NN'), (u'root', 'NN'), (u'key', 'NN'), (u'user/machin', 'JJ'), (u'hive', 'NN'), (u'dont', 'NN'), (u'realli', 'NN'), (u'anyth', 'NN'), (u'user', 'NN'), (u'root', 'NN'), (u'key', 'NN'), (u'havent', 'NN'), (u'user/machin', 'JJ'), (u'hive', 'NN'), (u'anyon', 'NN'), (u'perhap', 'NN'), (u'solv', 'NN'), (u'problem', 'NN')], [(u'effici', 'NN'), (u'sort', 'NN'), (u'sum', 'NN'), (u'sort', 'NN'), (u'list', 'NN'), (u'ascend', 'NN'), (u'list', 'NN'), (u'number', 'NN'), (u'effici', 'NN'), (u'algorithm', 'NN'), (u'think', 'NN'), (u'ascend', 'NN'), (u'list', 'NN'), (u'sum', 'NN'), (u'everi', 'NN'), (u'number', 'NN'), (u'list', 'NN'), (u'duplic', 'NN'), (u'result', 'NN'), (u'list', 'NN'), (u'irrelev', 'NN'), (u'remov', 'NN'), (u'avoid', 'NN'), (u'clear', 'JJ'), (u'im', 'NN'), (u'interest', 'NN'), (u'algorithm', 'NN'), (u'feel', 'NN'), (u'free', 'JJ'), (u'post', 'NN'), (u'code', 'NN'), (u'languag', 'NN'), (u'paradigm', 'NN')], [(u'elegantli', 'NN'), (u'express', 'NN'), (u'left', 'NN'), (u'join', 'NN'), (u'aggreg', 'NN'), (u'sql', 'NN'), (u'linq', 'NN'), (u'queri', 'NN'), (u'sql', 'NN')], [(u'edit', 'NN'), (u'databas', 'NN'), (u'record', 'NN'), (u'multipl', 'NN'), (u'user', 'NN'), (u'design', 'NN'), (u'databas', 'NN'), (u'tabl', 'NN'), (u'normalis', 'NNS'), (u'ms', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'creat', 'NN'), (u'standalon', 'NN'), (u'window', 'NN'), (u'front', 'NN'), (u'end', 'NN'), (u'applic', 'NN'), (u'use', 'NN'), (u'hand', 'NN'), (u'user', 'NN'), (u'edit', 'NN'), (u'inform', 'NN'), (u'web', 'NN'), (u'interfac', 'NN'), (u'search', 'NN'), (u'accross', 'NN'), (u'product', 'NN'), (u'area', 'NN'), (u'date', 'NN'), (u'concern', 'NN'), (u'user', 'NN'), (u'start', 'NN'), (u'edit', 'NN'), (u'record', 'NN'), (u'last', 'JJ'), (u'commit', 'NN'), (u'updat', 'NN'), (u'winner', 'NN'), (u'import', 'NN'), (u'inform', 'NN'), (u'number', 'NN'), (u'solut', 'NN'), (u'mind', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'creat', 'NN'), (u'bigger', 'JJR'), (u'headach', 'NN'), (u'hope', 'NN'), (u'user', 'NN'), (u'edit', 'NN'), (u'record', 'NN'), (u'time', 'NN'), (u'hap', 'NN'), (u'edit', 'NN'), (u'routin', 'NN'), (u'store', 'NN'), (u'copi', 'NN'), (u'origin', 'NN'), (u'data', 'NNS'), (u'updat', 'NN'), (u'compar', 'NN'), (u'user', 'NN'), (u'finish', 'NN'), (u'edit', 'NN'), (u'differ', 'NN'), (u'show', 'NN'), (u'user', 'NN'), (u'comfirm', 'NN'), (u'updat', 'NN'), (u'requir', 'NN'), (u'copi', 'NN'), (u'data', 'NNS'), (u'store', 'NN'), (u'last', 'JJ'), (u'updat', 'NN'), (u'datetim', 'NN'), (u'column', 'NN'), (u'check', 'NN'), (u'match', 'NN'), (u'updat', 'NN'), (u'show', 'NN'), (u'differ', 'NN'), (u'requir', 'NN'), (u'new', 'JJ'), (u'column', 'NN'), (u'relev', 'NN'), (u'tabl', 'NN'), (u'creat', 'NN'), (u'edit', 'NN'), (u'tabl', 'NN'), (u'regist', 'NN'), (u'user', 'NN'), (u'start', 'NN'), (u'edit', 'NN'), (u'record', 'NN'), (u'check', 'NN'), (u'prevent', 'NN'), (u'user', 'NN'), (u'edit', 'NN'), (u'record', 'NN'), (u'requir', 'NN'), (u'car', 'NN'), (u'thought', 'NN'), (u'program', 'NN'), (u'flow', 'NN'), (u'prevent', 'NN'), (u'deadlock', 'NN'), (u'record', 'NN'), (u'becom', 'NN'), (u'lock', 'NN'), (u'user', 'NN'), (u'crash', 'NN'), (u'program', 'NN'), (u'solut', 'NN')], [(u'cruisecontrolnet', 'NN'), (u'msbuild', 'NN'), (u'/poutputpath', 'NN'), (u'ccnetartifactdirectori', 'NN'), (u'im', 'NN'), (u'tri', 'NN'), (u'setup', 'NN'), (u'cruisecontrolnet', 'NN'), (u'moment', 'NN'), (u'work', 'NN'), (u'nice', 'JJ'), (u'problem', 'NN'), (u'msbuild', 'NN'), (u'task', 'NN'), (u'accord', 'NN'), (u'document', 'NN'), (u'pass', 'NN'), (u'ccnetartifactdirectori', 'NN'), (u'msbuild', 'NN'), (u'use', 'NN'), (u'tri', 'NN'), (u'work', 'NN'), (u'fact', 'NN'), (u'kill', 'NN'), (u'servic', 'NN'), (u'error', 'NN'), (u'thoughtworkscruisecontrolcoreconfigpreprocessorevaluationexcept', 'NN'), (u'refer', 'NN'), (u'unknown', 'JJ'), (u'symbol', 'NN'), (u'ccnetartifactdirectori', 'NN'), (u'document', 'NN'), (u'spars', 'NNS'), (u'googl', 'NN'), (u'und', 'NN'), (u'mainli', 'NN'), (u'offer', 'NN'), (u'modifi', 'NN'), (u'sln', 'NN'), (u'project', 'NN'), (u'file', 'NN'), (u'want', 'NN'), (u'avoid', 'NN'), (u'order', 'NN'), (u'abl', 'NN'), (u'manual', 'JJ'), (u'build', 'NN'), (u'project', 'NN'), (u'realli', 'NN'), (u'prefer', 'NN')], [(u'detect', 'NN'), (u'font', 'NN'), (u'use', 'NN'), (u'web', 'NN'), (u'page', 'NN'), (u'suppos', 'NN'), (u'css', 'NN'), (u'rule', 'NN'), (u'html', 'NN'), (u'detect', 'NN'), (u'defin', 'NN'), (u'font', 'NN'), (u'use', 'NN'), (u'user', 'NN'), (u'browser', 'NN'), (u'edit', 'NN'), (u'peopl', 'NN'), (u'wonder', 'NN'), (u'want', 'NN'), (u'font', 'NN'), (u'detect', 'NN'), (u'contain', 'NN'), (u'glyph', 'NN'), (u'avail', 'NN'), (u'font', 'NN'), (u'user', 'NN'), (u'want', 'NN'), (u'display', 'NN'), (u'link', 'NN'), (u'ask', 'NN'), (u'user', 'NN'), (u'download', 'NN'), (u'font', 'NN'), (u'use', 'NN'), (u'web', 'NN'), (u'applic', 'NN'), (u'current', 'JJ'), (u'display', 'NN'), (u'download', 'NN'), (u'font', 'NN'), (u'link', 'NN'), (u'user', 'NN'), (u'display', 'NN'), (u'peopl', 'NN'), (u'correct', 'NN'), (u'font', 'NN'), (u'instal', 'NN')], [(u'net', 'NN'), (u'xml', 'NN'), (u'comment', 'NN'), (u'api', 'NN'), (u'document', 'NN'), (u'easi', 'NN'), (u'way', 'NN'), (u'produc', 'NN'), (u'msdn-style', 'NN'), (u'document', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'xml', 'NN'), (u'output', 'NN'), (u'im', 'NN'), (u'patient', 'NN'), (u'set', 'NN'), (u'good', 'JJ'), (u'xslt', 'NN'), (u'im', 'NN'), (u'person', 'NN'), (u'cross', 'NN'), (u'bridg', 'NN'), (u'tri', 'NN'), (u'set', 'NN'), (u'sandcastl', 'NN'), (u'recent', 'JJ'), (u'realli', 'NN'), (u'eye', 'NN'), (u'cross', 'NN'), (u'miss', 'NN'), (u'someth', 'NN'), (u'import', 'NN'), (u'process', 'NN'), (u'way', 'NN'), (u'involv', 'NN'), (u'somebodi', 'NN'), (u'realli', 'NN'), (u'nice', 'JJ'), (u'dead-simpl', 'NN'), (u'solut', 'NN'), (u'im', 'NN'), (u'reiter', 'NN'), (u'think', 'NN'), (u'format', 'NN'), (u'paragraph', 'NN'), (u'non-invit', 'NN'), (u'read', 'NN'), (u'sandcastl', 'NN'), (u'tri', 'NN'), (u'realli', 'NN'), (u'hard', 'JJ'), (u'time', 'NN'), (u'set', 'NN'), (u'realli', 'NN'), (u'mind', 'NN'), (u'someth', 'NN'), (u'much', 'JJ'), (u'simpler', 'NN'), (u'dont', 'NN'), (u'understand', 'NN'), (u'sandcastl', 'NN'), (u'process', 'NN'), (u'seem', 'NN'), (u'aw', 'NN'), (u'lot', 'NN'), (u'extra', 'JJ'), (u'baggag', 'NN'), (u'produc', 'NN'), (u'someth', 'NN'), (u'nice', 'JJ'), (u'tester', 'NN'), (u'work', 'NN')], [(u'git', 'NN'), (u'subvers', 'NNS'), (u'ive', 'JJ'), (u'use', 'NN'), (u'subvers', 'NNS'), (u'year', 'NN'), (u'use', 'NN'), (u'sourcesaf', 'NN'), (u'love', 'NN'), (u'subvers', 'NNS'), (u'combin', 'NN'), (u'tortoisesvn', 'NN'), (u'cant', 'NN'), (u'realli', 'NN'), (u'imagin', 'NN'), (u'grow', 'NN'), (u'number', 'NN'), (u'claim', 'NN'), (u'subvers', 'NNS'), (u'problem', 'NN'), (u'move', 'NN'), (u'new', 'JJ'), (u'breed', 'NN'), (u'distribut', 'NN'), (u'version', 'NN'), (u'control', 'NN'), (u'system', 'NN'), (u'git', 'NN'), (u'git', 'NN'), (u'improv', 'NN'), (u'subvers', 'NNS')], [(u'php', 'NN'), (u'variabl', 'NN'), (u'pass', 'NN'), (u'valu', 'NN'), (u'refer', 'NN'), (u'php', 'NN'), (u'variabl', 'NN'), (u'pass', 'NN'), (u'valu', 'NN'), (u'refer', 'NN')], [(u'debug', 'NN'), (u'php', 'NN'), (u'script', 'NN'), (u'debug', 'NN'), (u'php', 'NN'), (u'script', 'NN'), (u'awar', 'NN'), (u'basic', 'JJ'), (u'debug', 'NN'), (u'use', 'NN'), (u'error', 'NN'), (u'report', 'NN'), (u'breakpoint', 'NN'), (u'debug', 'NN'), (u'phpeclips', 'NNS'), (u'quit', 'NN'), (u'use', 'NN'), (u'good/bett', 'NN'), (u'techniqu', 'NN')], [(u'internation', 'NN'), (u'project', 'NN'), (u'implement', 'NN'), (u'internation', 'NN'), (u'actual', 'JJ'), (u'project', 'NN'), (u'youv', 'NN'), (u'work', 'NN'), (u'interest', 'NN'), (u'softwar', 'NN'), (u'cross-cultur', 'NN'), (u'read', 'NN'), (u'famou', 'NN'), (u'post', 'NN'), (u'joel', 'NN'), (u'absolut', 'NN'), (u'minimum', 'NN'), (u'everi', 'NN'), (u'softwar', 'NN'), (u'absolut', 'NN'), (u'posit', 'NN'), (u'unicod', 'NN'), (u'charact', 'NN'), (u'set', 'NN'), (u'excuses!', 'NN'), (u'howev', 'NN'), (u'abl', 'NN'), (u'advantag', 'NN'), (u'real', 'JJ'), (u'project', 'NN'), (u'besid', 'NN'), (u'sure', 'NN'), (u'use', 'NN'), (u'unicod', 'NN'), (u'string', 'NN'), (u'possibl', 'NN'), (u'string', 'NN'), (u'unicod', 'NN'), (u'ensur', 'NN'), (u'understand', 'NN'), (u'encod', 'NN'), (u'everyth', 'NN'), (u'work', 'NN'), (u'tip', 'NN'), (u'iceberg', 'NN'), (u'everyth', 'NN'), (u'work', 'NN'), (u'date', 'NN'), (u'use', 'NN'), (u'control', 'NN'), (u'set', 'NN'), (u'english', 'JJ'), (u'speak', 'NN'), (u'peopl', 'NN'), (u'wasnt', 'NN'), (u'someth', 'NN'), (u'time', 'NN'), (u'work', 'NN'), (u'push', 'NN'), (u'project', 'NN'), (u'live', 'JJ'), (u'look', 'NN'), (u'tip', 'NN'), (u'war', 'NN'), (u'stori', 'NN'), (u'peopl', 'NN'), (u'softwar', 'NN'), (u'local', 'JJ'), (u'real', 'JJ'), (u'world', 'NN'), (u'project', 'NN')], [(u'best', 'JJS'), (u'subvers', 'NNS'), (u'client', 'NN'), (u'mac', 'NN'), (u'os', 'NN'), (u'window', 'NN'), (u'tortoisesvn', 'NN'), (u'daddi', 'NN'), (u'question', 'NN'), (u'mac', 'NN'), (u'simpl', 'NN'), (u'integr', 'NN'), (u'fair', 'NN'), (u'choic', 'NN'), (u'tool', 'NN'), (u'gui', 'NN'), (u'client', 'NN'), (u'subvers', 'NNS'), (u'svn', 'NN'), (u'worth', 'NN'), (u'check', 'NN')], [(u'html', 'NN'), (u'word-break', 'NN'), (u'dash', 'NN'), (u'rel', 'NN'), (u'simpl', 'NN'), (u'css', 'NN'), (u'string', 'NN'), (u'stay', 'NN'), (u'constrain', 'NN'), (u'width', 'NN'), (u'simpli', 'NN'), (u'wrap', 'NN'), (u'newlin', 'NN'), (u'hyphen', 'NN')], [(u'client', 'NN'), (u'collat', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'upgrad', 'NN'), (u'exist', 'NN'), (u'program', 'NN'), (u'purchas', 'NN'), (u'new', 'JJ'), (u'program', 'NN'), (u'use', 'NN'), (u'vendor', 'NN'), (u'host', 'NN'), (u'databas', 'NN'), (u'need', 'NN'), (u'enterpris', 'NN'), (u'version', 'NN'), (u'softwar', 'NN'), (u'client', 'NN'), (u'use', 'NN'), (u'differ', 'NN'), (u'collat', 'NN'), (u'connect', 'NN'), (u'enterpris', 'NN'), (u'support', 'NN'), (u'cannot', 'NN'), (u'anyth', 'NN'), (u'mss', 'NN'), (u'site', 'NN'), (u'support', 'NN'), (u'honestli', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'pay', 'NN'), (u'extra', 'JJ'), (u'enterpris', 'NN'), (u'standard', 'NN'), (u'edit', 'NN'), (u'work', 'NN'), (u'miss', 'NN'), (u'talk', 'NN'), (u'featur', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'suspect', 'NN'), (u'vendor', 'NN'), (u'tri', 'NN'), (u'upsel', 'NN')], [(u'learn', 'NN'), (u'python', 'NN'), (u'good', 'JJ'), (u'exampl', 'NN'), (u'code', 'NN'), (u'dabbl', 'NN'), (u'coupl', 'NN'), (u'month', 'NN'), (u'read', 'NN'), (u'onlin', 'NN'), (u'docs/tutori', 'NN'), (u'start', 'NN'), (u'play', 'NN'), (u'bit', 'NN'), (u'feel', 'NN'), (u'start', 'NN'), (u'leav', 'NN'), (u'form', 'NN'), (u'toddler', 'NN'), (u'year', 'NN'), (u'readi', 'NN'), (u'seriou', 'NN'), (u'code', 'NN'), (u'everyth', 'NN'), (u'gener', 'NN'), (u'encapsul', 'NN'), (u'singl', 'NN'), (u'script', 'NN'), (u'larg', 'NN'), (u'unwieldi', 'NN'), (u'dont', 'NN'), (u'start', 'NN'), (u'realli', 'NN'), (u'excel', 'NN'), (u'exampl', 'NN'), (u'proper', 'NN'), (u'python', 'NN'), (u'code', 'NN'), (u'style', 'NN'), (u'organ', 'NN'), (u'etc', 'NN'), (u'ideal', 'NN'), (u'associ', 'NN'), (u'decis', 'NN'), (u'idea', 'NN'), (u'look', 'NN'), (u'next', 'JJ'), (u'prefer', 'NN'), (u'simpl', 'NN'), (u'consol', 'NN'), (u'app', 'NN'), (u'extra', 'JJ'), (u'py', 'NN'), (u'file', 'NN'), (u'mayb', 'NN'), (u'packag', 'NN'), (u'good', 'JJ'), (u'measur', 'NN'), (u'oh', 'NN'), (u'thing', 'NN'), (u'reason', 'NN'), (u'quit', 'NN'), (u'bit', 'NN'), (u'experi', 'NN'), (u'java', 'NN'), (u'net', 'NN'), (u'gener', 'NN'), (u'prefer', 'NN'), (u'class', 'NN'), (u'definit', 'NN'), (u'sourc', 'NN'), (u'file', 'NN'), (u'rare', 'NN'), (u'seem', 'NN'), (u'case', 'NN'), (u'python', 'NN'), (u'world', 'NN'), (u'least', 'JJS'), (u'limit', 'NN'), (u'exposur', 'NN'), (u'doesnt', 'NN'), (u'smell', 'NN'), (u'right', 'NN'), (u'mayb', 'NN'), (u'enterpris', 'NN'), (u'python', 'NN'), (u'hobbyist', 'NN'), (u'python', 'NN'), (u'someth', 'NN')], [(u'connect', 'NN'), (u'databas', 'NN'), (u'loop', 'NN'), (u'recordset', 'NN'), (u'c#', 'NN'), (u'simplest', 'NN'), (u'way', 'NN'), (u'connect', 'NN'), (u'queri', 'NN'), (u'databas', 'NN'), (u'set', 'NN'), (u'record', 'NN'), (u'c#', 'NN')], [(u'string', 'NN'), (u'liter', 'NN'), (u'escap', 'NN'), (u'charact', 'NN'), (u'postgresql', 'NN'), (u'attempt', 'NN'), (u'insert', 'NN'), (u'escap', 'NN'), (u'charact', 'NN'), (u'tabl', 'NN'), (u'result', 'NN'), (u'warn', 'NN'), (u'exampl', 'NN'), (u'produc', 'NN'), (u'warn', 'NN'), (u'use', 'NN'), (u'psql', 'NN'), (u'anyon', 'NN')], [(u'unhandl', 'NN'), (u'handler', 'NN'), (u'net', 'NN'), (u'im', 'NN'), (u'maintain', 'NN'), (u'applic', 'NN'), (u'thing', 'NN'), (u'ive', 'JJ'), (u'task', 'NN'), (u'sure', 'NN'), (u'user', 'NN'), (u'doesnt', 'NN'), (u'unfriendli', 'NN'), (u'error', 'NN'), (u'notif', 'NN'), (u'ive', 'JJ'), (u'ad', 'NN'), (u'handler', 'NN'), (u'call', 'NN'), (u'problem', 'NN'), (u'standard', 'NN'), (u'error', 'NN'), (u'dialog', 'NN'), (u'display', 'NN'), (u'handler', 'NN'), (u'call', 'NN'), (u'jeff', 'NN'), (u'talk', 'NN'), (u'problem', 'NN'), (u'blog', 'NN'), (u'solut', 'NN'), (u'standard', 'NN'), (u'way', 'NN'), (u'handl', 'NN'), (u'uncaught', 'JJ'), (u'display', 'NN'), (u'friendli', 'NN'), (u'dialog', 'NN'), (u'box', 'NN'), (u'edit', 'NN'), (u'jeff', 'NN'), (u'respons', 'NNS'), (u'mark', 'NN'), (u'correct', 'NN'), (u'answer', 'NN'), (u'link', 'NN'), (u'provid', 'NN'), (u'complet', 'NN'), (u'inform', 'NN'), (u'requir', 'NN')], [(u'use', 'NN'), (u'mutex', 'NN'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'import', 'NN'), (u'kernel', 'NNS'), (u'librari', 'NN'), (u'function', 'NN'), (u'avail', 'NN'), (u'quit', 'NN'), (u'sure', 'NN'), (u'variou', 'NN'), (u'paramet', 'NN'), (u'return', 'NN'), (u'valu', 'NN'), (u'classic', 'JJ'), (u'visual', 'JJ'), (u'basic', 'JJ'), (u'visual', 'JJ'), (u'basicnet', 'NN'), (u'probabl', 'NN'), (u'work', 'NN'), (u'languag', 'NN'), (u'form', 'NN'), (u'answer', 'NN')], [(u'ad', 'NN'), (u'method', 'NN'), (u'exist', 'NN'), (u'object', 'NN'), (u'ive', 'JJ'), (u'read', 'NN'), (u'possibl', 'NN'), (u'method', 'NN'), (u'exist', 'NN'), (u'object', 'NN'), (u'eg', 'NN'), (u'class', 'NN'), (u'definit', 'NN'), (u'python', 'NN'), (u'think', 'NN'), (u'call', 'NN'), (u'monkey', 'NN'), (u'patch', 'NN'), (u'case', 'NN'), (u'duck', 'NN'), (u'punch', 'NN'), (u'understand', 'NN'), (u'good', 'JJ'), (u'decis', 'NN'), (u'dont', 'NN'), (u'python', 'NN'), (u'languag', 'NN'), (u'choic', 'NN'), (u'updat', 'NN'), (u'//', 'NN'), (u'est', 'NN'), (u'look', 'NN'), (u'good', 'JJ'), (u'answer', 'NN'), (u'john', 'NN'), (u'downey', 'NN'), (u'tri', 'NN'), (u'end', 'NN'), (u'true', 'JJ'), (u'method', 'NN'), (u'exampl', 'NN'), (u'defin', 'NN'), (u'new', 'JJ'), (u'patch', 'NN'), (u'function', 'NN'), (u'argument', 'NN'), (u'self', 'NN'), (u'write', 'NN'), (u'actual', 'JJ'), (u'code', 'NN'), (u'way', 'NN'), (u'patch', 'NN'), (u'class', 'NN'), (u'method', 'NN'), (u'ask', 'NN'), (u'argument', 'NN'), (u'name', 'NN'), (u'self', 'NN'), (u'doesnt', 'NN'), (u'automag', 'NN'), (u'recogn', 'NN'), (u'ident', 'NN'), (u'class', 'NN'), (u'defin', 'NN'), (u'class', 'NN'), (u'definit', 'NN'), (u'mean', 'NN'), (u'call', 'NN'), (u'classpatchclass', 'NN'), (u'classpatch', 'NN'), (u'want', 'NN'), (u'function', 'NN'), (u'true', 'JJ'), (u'method', 'NN'), (u'look', 'NN'), (u'python', 'NN'), (u'isnt', 'NN'), (u'realli', 'NN'), (u'treat', 'NN'), (u'method', 'NN'), (u'variabl', 'NN'), (u'function', 'NN'), (u'callabl', 'NN'), (u'way', 'NN'), (u'attach', 'NN'), (u'actual', 'JJ'), (u'method', 'NN'), (u'class', 'NN'), (u'oh', 'NN'), (u'ryan', 'NN'), (u'isnt', 'NN'), (u'exactli', 'NN'), (u'look', 'NN'), (u'isnt', 'NN'), (u'builtin', 'NN'), (u'function', 'NN'), (u'quit', 'NN'), (u'cool', 'NN')], [(u'root', 'NN'), (u'permiss', 'NN'), (u'file', 'NN'), (u'insid', 'NN'), (u'vi', 'NN'), (u'edit', 'NN'), (u'config', 'NN'), (u'file', 'NN'), (u'ill', 'NN'), (u'open', 'JJ'), (u'vi', 'NN'), (u'realiz', 'NN'), (u'didnt', 'NN'), (u'type', 'NN'), (u'way', 'NN'), (u'vi', 'NN'), (u'sudo', 'NN'), (u'privileg', 'NN'), (u'file', 'NN'), (u'seem', 'NN'), (u'recal', 'JJ'), (u'someth', 'NN'), (u'look', 'NN'), (u'stuff', 'NN'), (u'vi', 'NN'), (u'cant', 'NN')], [(u'valu', 'NN'), (u'built', 'NN'), (u'encod', 'NN'), (u'viewstat', 'NN'), (u'need', 'NN'), (u'grab', 'NN'), (u'base-encod', 'NN'), (u'represent', 'NN'), (u'viewstat', 'NN'), (u'obvious', 'JJ'), (u'avail', 'NN'), (u'fairli', 'NN'), (u'request', 'NN'), (u'lifecycl', 'NN'), (u'ok', 'NN'), (u'exampl', 'NN'), (u'output', 'NN'), (u'page', 'NN'), (u'includ', 'NN'), (u'need', 'NN'), (u'way', 'NN'), (u'server', 'NN'), (u'side', 'NN'), (u'valu', 'NN'), (u'clarifi', 'NN'), (u'need', 'NN'), (u'valu', 'NN'), (u'page', 'NN'), (u'render', 'NN'), (u'postback', 'NN'), (u'eg', 'NN'), (u'need', 'NN'), (u'viewstat', 'NN'), (u'valu', 'NN'), (u'sent', 'NN'), (u'client', 'NN'), (u'viewstat', 'NN'), (u'im', 'NN')], [(u'fix', 'NN'), (u'unprocess', 'NN'), (u'view', 'NN'), (u'path', 'NN'), (u'found', 'NN'), (u'error', 'NN'), (u'exceptionnotifi', 'NN'), (u'plugin', 'NN'), (u'rail', 'NN'), (u'upgrad', 'NN'), (u'rail', 'NN'), (u'websit', 'NN'), (u'exceptionnotifi', 'NN'), (u'plugin', 'NN'), (u'longer', 'NN'), (u'work', 'NN'), (u'complain', 'NN'), (u'error', 'NN'), (u'caus', 'NN'), (u'fix', 'NN')], [(u'countri', 'NN'), (u'accord', 'NN'), (u'certain', 'JJ'), (u'ip', 'NN'), (u'anyon', 'NN'), (u'simpl', 'NN'), (u'way', 'NN'), (u'retriev', 'NN'), (u'countri', 'NN'), (u'ip', 'NN'), (u'address', 'NN'), (u'prefer', 'NN'), (u'format', 'NN')], [(u'display', 'NN'), (u'flash', 'NN'), (u'content', 'NN'), (u'c#', 'NN'), (u'winform', 'NN'), (u'applic', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'display', 'NN'), (u'content', 'NN'), (u'c#', 'NN'), (u'winform', 'NN'), (u'applic', 'NN'), (u'creat', 'NN'), (u'user', 'NN'), (u'control', 'NN'), (u'similar', 'JJ'), (u'current', 'JJ'), (u'abl', 'NN'), (u'display', 'NN'), (u'imag', 'NN'), (u'flash', 'NN'), (u'content', 'NN'), (u'great', 'JJ'), (u'abl', 'NN'), (u'load', 'NN'), (u'flash', 'NN'), (u'content', 'NN'), (u'stream', 'NN'), (u'sort', 'NN'), (u'file', 'NN'), (u'disk', 'NN')], [(u'delet', 'NN'), (u'file', 'NN'), (u'lock', 'NN'), (u'process', 'NN'), (u'c#', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'way', 'NN'), (u'delet', 'NN'), (u'file', 'NN'), (u'lock', 'NN'), (u'process', 'NN'), (u'use', 'NN'), (u'c#', 'NN'), (u'suspect', 'NN'), (u'method', 'NN'), (u'abl', 'NN'), (u'process', 'NN'), (u'lock', 'NN'), (u'file', 'NN'), (u'perhap', 'NN'), (u'track', 'NN'), (u'handl', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'c#', 'NN'), (u'process', 'NN'), (u'abl', 'NN'), (u'complet', 'NN'), (u'file', 'NN'), (u'delet', 'NN'), (u'use', 'NN')], [(u'easy-to-us', 'NN'), (u'regular', 'JJ'), (u'express', 'NN'), (u'support', 'NN'), (u'c++', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'robust', 'NN'), (u'easy-to-us', 'NN'), (u'regular', 'JJ'), (u'express', 'NN'), (u'evalu', 'NN'), (u'nativ', 'NN'), (u'c++', 'NN'), (u'platform-independ', 'NN'), (u'windows-specif', 'NN'), (u'requir', 'NN'), (u'cant', 'NN'), (u'use', 'NN'), (u'boost', 'NN'), (u'ace', 'NN'), (u'regex', 'NN'), (u'librari', 'NN'), (u'unfortun', 'NN'), (u'cant', 'NN'), (u'use', 'NN'), (u'net', 'NN'), (u'regex', 'NN'), (u'manag', 'NN'), (u'code', 'NN'), (u'main', 'JJ'), (u'requir', 'NN'), (u'standalon', 'NN'), (u'open', 'JJ')], [(u'doesnt', 'NN'), (u'sql', 'NN'), (u'full', 'JJ'), (u'text', 'NN'), (u'index', 'NN'), (u'return', 'NN'), (u'result', 'NN'), (u'word', 'NN'), (u'contain', 'NN'), (u'instanc', 'NN'), (u'queri', 'NN'), (u'use', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'full', 'JJ'), (u'text', 'NN'), (u'index', 'NN'), (u'defin', 'NN'), (u'use', 'NN'), (u'column', 'NN'), (u'searchfield', 'NN'), (u'return', 'NN'), (u'result', 'NN'), (u'use', 'NN'), (u'believ', 'NN'), (u'special', 'JJ'), (u'letter', 'NN'), (u'freetext', 'NN'), (u'work', 'NN'), (u'correctli', 'NN'), (u'queri', 'NN')], [(u'littl', 'NN'), (u'divers', 'NNS'), (u'float', 'NN'), (u'point', 'NN'), (u'imprecis', 'NN'), (u'part', 'NN'), (u'mathematician', 'NN'), (u'agre', 'NN'), (u'e\u03c0i', 'NN'), (u'+', 'NN'), (u'=', 'NN'), (u'howev', 'NN'), (u'float', 'NN'), (u'point', 'NN'), (u'implement', 'NN'), (u'disagre', 'NN'), (u'settl', 'NN'), (u'disput', 'NN'), (u'im', 'NN'), (u'keen', 'NN'), (u'hear', 'NN'), (u'differ', 'NN'), (u'languag', 'NN'), (u'implement', 'NN'), (u'variou', 'NN'), (u'method', 'NN'), (u'result', 'NN'), (u'zero', 'NN'), (u'possibl', 'NN'), (u'creative!', 'NN')], [(u'display', 'NN'), (u'float', 'NN'), (u'cube', 'NN'), (u'use', 'NN'), (u'directx', 'NN'), (u'opengl', 'NN'), (u'id', 'NN'), (u'display', 'NN'), (u'~', 'NN'), (u'float', 'NN'), (u'cube', 'NN'), (u'use', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'sampl', 'NN'), (u'sourc', 'NN'), (u'code', 'NN'), (u'descript', 'NN'), (u'techniqu', 'NN'), (u'kind', 'NN'), (u'thing', 'NN'), (u'easi', 'NN'), (u'accomplish', 'NN'), (u'd', 'NN'), (u'guru', 'NN'), (u'troubl', 'NN'), (u'cube', 'NN'), (u'display', 'NN'), (u'correctli', 'NN'), (u'ive', 'JJ'), (u'comb', 'NN'), (u'net', 'NN'), (u'good', 'JJ'), (u'seri', 'NN'), (u'tutori', 'NN'), (u'talk', 'NN'), (u'primit', 'NN'), (u'cant', 'NN'), (u'inform', 'NN'), (u'larg', 'NN'), (u'number', 'NN'), (u'primit', 'NN'), (u'forth', 'NN')], [(u'heap', 'NN'), (u'corrupt', 'NN'), (u'win;', 'NN'), (u'locat', 'NN'), (u'im', 'NN'), (u'work', 'NN'), (u'multithread', 'NN'), (u'c++', 'NN'), (u'applic', 'NN'), (u'corrupt', 'NN'), (u'heap', 'NN'), (u'usual', 'JJ'), (u'tool', 'NN'), (u'locat', 'NN'), (u'corrupt', 'NN'), (u'seem', 'NN'), (u'inapplic', 'NN'), (u'old', 'JJ'), (u'build', 'NN'), (u'month', 'NN'), (u'old', 'JJ'), (u'sourc', 'NN'), (u'code', 'NN'), (u'exhibit', 'NN'), (u'behaviour', 'NN'), (u'recent', 'JJ'), (u'releas', 'NNS'), (u'time', 'NN'), (u'wasnt', 'NN'), (u'noticed;', 'NN'), (u'downsid', 'NN'), (u'sourc', 'NN'), (u'delta', 'NN'), (u'cant', 'NN'), (u'use', 'NN'), (u'identifi', 'NN'), (u'bug', 'NN'), (u'introduc', 'NN'), (u'lot', 'NN'), (u'code', 'NN'), (u'chang', 'NN'), (u'repositori', 'NN'), (u'prompt', 'NN'), (u'crash', 'NN'), (u'behaviuor', 'NN'), (u'gener', 'NN'), (u'throughput', 'NN'), (u'system', 'NN'), (u'socket', 'NN'), (u'transfer', 'NN'), (u'data', 'NNS'), (u'mung', 'NN'), (u'intern', 'NN'), (u'represent', 'NN'), (u'set', 'NN'), (u'test', 'NN'), (u'data', 'NNS'), (u'period', 'NN'), (u'caus', 'NN'), (u'app', 'NN'), (u'variou', 'NN'), (u'place', 'NN'), (u'variou', 'NN'), (u'caus', 'NN'), (u'includ', 'NN'), (u'heap', 'NN'), (u'alloc', 'NN'), (u'fail', 'NN'), (u'thu', 'NN'), (u'heap', 'NN'), (u'corrupt', 'NN'), (u'behaviour', 'NN'), (u'seem', 'NN'), (u'relat', 'NN'), (u'cpu', 'NN'), (u'power', 'NN'), (u'memori', 'NN'), (u'bandwidth;', 'NN'), (u'machin', 'NN'), (u'easier', 'JJR'), (u'crash', 'NN'), (u'disabl', 'NN'), (u'hyper-thread', 'NN'), (u'core', 'NN'), (u'dual-cor', 'NN'), (u'core', 'NN'), (u'reduc', 'NN'), (u'rate', 'NN'), (u'elimin', 'NN'), (u'corrupt', 'NN'), (u'suggest', 'NN'), (u'time', 'NN'), (u'relat', 'NN'), (u'issu', 'NN'), (u'rub', 'NN'), (u'lightweight', 'NN'), (u'debug', 'NN'), (u'environ', 'NN'), (u'heap', 'NN'), (u'corrupt', 'NN'), (u'reason', 'NN'), (u'easi', 'NN'), (u'reproduc', 'NN'), (u'ten', 'NNS'), (u'fifteen', 'NN'), (u'minut', 'NN'), (u'pass', 'NN'), (u'someth', 'NN'), (u'fail', 'NN'), (u'horrend', 'NN'), (u'sophist', 'NN'), (u'debug', 'NN'), (u'environ', 'NN'), (u'ration', 'NN'), (u'purifi', 'NN'), (u'microsoft', 'NN'), (u'applic', 'NN'), (u'verifi', 'NN'), (u'system', 'NN'), (u'becom', 'NN'), (u'memory-spe', 'NN'), (u'bound', 'NN'), (u'doesnt', 'NN'), (u'crash', 'NN'), (u'memory-bound', 'NN'), (u'cpu', 'NN'), (u'disk', 'NN'), (u'light', 'NN'), (u'program', 'NN'), (u'fast', 'NN'), (u'box', 'NN'), (u'consum', 'NN'), (u'g', 'NN'), (u'ram', 'NN'), (u'ive', 'JJ'), (u'choic', 'NN'), (u'abl', 'NN'), (u'reproduc', 'NN'), (u'problem', 'NN'), (u'identifi', 'NN'), (u'caus', 'NN'), (u'abl', 'NN'), (u'idenifi', 'NN'), (u'caus', 'NN'), (u'problem', 'NN'), (u'cant', 'NN'), (u'reproduc', 'NN'), (u'current', 'JJ'), (u'best', 'JJS'), (u'guess', 'NN'), (u'next', 'JJ'), (u'insan', 'NN'), (u'grunti', 'NN'), (u'box', 'NN'), (u'replac', 'NN'), (u'current', 'JJ'), (u'dev', 'NN'), (u'box', 'NN'), (u'gb', 'NN'), (u'ram', 'NN'), (u'possibl', 'NN'), (u'repro', 'NN'), (u'crash', 'NN'), (u'caus', 'NN'), (u'mis-behaviour', 'NN'), (u'power', 'NN'), (u'debug', 'NN'), (u'environment;', 'NN'), (u'rewrit', 'NN'), (u'oper', 'NN'), (u'use', 'NN'), (u'mark', 'NN'), (u'memori', 'NN'), (u'read-onli', 'NN'), (u'os', 'NN'), (u'catch', 'NN'), (u'bad-guy', 'NN'), (u'write', 'NN'), (u'freed', 'NN'), (u'memori', 'NN'), (u'ye', 'NN'), (u'sign', 'NN'), (u'desper', 'NN'), (u'hell', 'NN'), (u'rewrit', 'NN'), (u'wonder', 'NN'), (u'purifi', 'NN'), (u'et', 'NN'), (u'al', 'NN'), (u'ship', 'NN'), (u'purifi', 'NN'), (u'instrument', 'NN'), (u'built', 'NN'), (u'option', 'NN'), (u'colleagu', 'NN'), (u'walk', 'NN'), (u'past', 'NN'), (u'ask', 'NN'), (u'"stack', 'NN'), (u'overflow', 'NN'), (u'stack', 'NN'), (u'overflow', 'NN'), (u'now!"', 'NN'), (u'question', 'NN'), (u'locat', 'NN'), (u'heap', 'NN'), (u'corruptor', 'NN'), (u'updat', 'NN'), (u'balanc', 'NN'), (u'seem', 'NN'), (u'gotten', 'NNS'), (u'way', 'NN'), (u'solv', 'NN'), (u'problem', 'NN'), (u'min', 'NN'), (u'app', 'NN'), (u'goe', 'NN'), (u'hour', 'NN'), (u'crash', 'NN'), (u'suggest', 'NN'), (u'heap', 'NN'), (u'corrupt', 'NN'), (u'persist', 'NN'), (u'updat', 'NN'), (u'releas', 'NNS'), (u'build', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'seem', 'NN'), (u'dramat', 'NN'), (u'better;', 'NN'), (u'current', 'JJ'), (u'suspicion', 'NN'), (u'rest', 'NN'), (u'implement', 'NN'), (u'ship', 'NN'), (u'reproduc', 'NN'), (u'problem', 'NN'), (u'produc', 'NN'), (u'dump', 'NN'), (u'help', 'NN'), (u'analysi', 'NN'), (u'ill', 'NN'), (u'note', 'NN'), (u'im', 'NN'), (u'concern', 'NN'), (u'dr', 'NN'), (u'watson', 'NN'), (u'trip', 'NN'), (u'fact', 'NN'), (u'heap', 'NN'), (u'stomp', 'NN'), (u'tri', 'NN'), (u'use', 'NN'), (u'debug', 'NN'), (u'tool', 'NN'), (u'quit', 'NN'), (u'power', 'NN'), (u'time', 'NN'), (u'lightweight', 'NN'), (u'moment', 'NN'), (u'much', 'JJ'), (u'help', 'NN'), (u'someth', 'NN'), (u'goe', 'NN'), (u'wrong', 'JJ'), (u'want', 'NN'), (u'catch', 'NN'), (u'vandal', 'NN'), (u'act', 'NN'), (u'mayb', 'NN'), (u'tool', 'NN'), (u'least', 'JJS'), (u'narrow', 'NN'), (u'problem', 'NN'), (u'certain', 'JJ'), (u'compon', 'NN'), (u'dont', 'NN'), (u'hold', 'NN'), (u'much', 'JJ'), (u'hope', 'NN'), (u'desper', 'NN'), (u'time', 'NN'), (u'call', 'NN'), (u'sure', 'NN'), (u'compon', 'NN'), (u'project', 'NN'), (u'correct', 'NN'), (u'runtim', 'NN'), (u'librari', 'NN'), (u'set', 'NN'), (u'code', 'NN'), (u'gener', 'NN'), (u'categori', 'NN'), (u'vs', 'NN'), (u'project', 'NN'), (u'set', 'NN'), (u'im', 'NN'), (u'ill', 'NN'), (u'spend', 'NN'), (u'coupl', 'NN'), (u'hour', 'NN'), (u'tomorrow', 'NN'), (u'workspac', 'NN'), (u'project', 'NN'), (u'check', 'NN'), (u'theyr', 'NN'), (u'compil', 'NN'), (u'link', 'NN'), (u'appropri', 'NN'), (u'flag', 'NN'), (u'updat', 'NN'), (u'second', 'JJ'), (u'select', 'NN'), (u'project', 'NN'), (u'dialog', 'NN'), (u'unselect', 'JJ'), (u'project', 'NN'), (u'dont', 'NN'), (u'right', 'NN'), (u'set', 'NN'), (u'right', 'NN'), (u'set', 'NN')], [(u'process', 'NN'), (u'size', 'NN'), (u'unix', 'NN'), (u'correct', 'NN'), (u'way', 'NN'), (u'process', 'NN'), (u'size', 'NN'), (u'use', 'NN'), (u'someth', 'NN'), (u'els', 'NNS')], [(u'bayesian', 'NN'), (u'filter', 'NN'), (u'spam', 'NN'), (u'wonder', 'NN'), (u'good', 'JJ'), (u'clean', 'NN'), (u'oo', 'NN'), (u'implement', 'NN'), (u'bayesian', 'NN'), (u'filter', 'NN'), (u'spam', 'NN'), (u'text', 'NN'), (u'classif', 'NN'), (u'learn', 'NN'), (u'purpos', 'NN')], [(u'ensur', 'NN'), (u'caught', 'NN'), (u'c++', 'NN'), (u'dont', 'NN'), (u'need', 'NN'), (u'caught', 'NN'), (u'compil', 'NN'), (u'time', 'NN'), (u'error', 'NN'), (u'call', 'NN'), (u'function', 'NN'), (u'judgment', 'NN'), (u'catch', 'NN'), (u'use', 'NN'), (u'try/catch', 'NN'), (u'unlik', 'NN'), (u'java', 'NN'), (u'way', 'NN'), (u'ensur', 'NN'), (u'thrown', 'NN'), (u'caught', 'NN'), (u'use', 'NN'), (u'try/catch', 'NN'), (u'call', 'NN'), (u'function', 'NN')], [(u'databas', 'NN'), (u'index', 'NN'), (u'work', 'NN'), (u'index', 'NN'), (u'import', 'NN'), (u'dataset', 'NN'), (u'increas', 'NNS'), (u'size', 'NN'), (u'someon', 'NN'), (u'explain', 'NN'), (u'index', 'NN'), (u'work', 'NN'), (u'databas', 'NN'), (u'agnost', 'NN'), (u'level', 'NN'), (u'inform', 'NN'), (u'queri', 'NN'), (u'index', 'NN'), (u'field', 'NN'), (u'check', 'NN'), (u'http//stackoverflowcom/questions//how-do-i-index-a-database-field', 'NN')], [(u'window', 'NN'), (u'help', 'NN'), (u'file', 'NN'), (u'option', 'NN'), (u'old', 'JJ'), (u'day', 'NN'), (u'help', 'NN'), (u'trivial', 'JJ'), (u'possibl', 'NN'), (u'gener', 'NN'), (u'funki', 'NN'), (u'rtf', 'NN'), (u'file', 'NN'), (u'special', 'JJ'), (u'tag', 'NN'), (u'compil', 'NN'), (u'winhelp', 'NN'), (u'file', 'NN'), (u'hlp', 'NN'), (u'actual', 'JJ'), (u'work', 'NN'), (u'realli', 'NN'), (u'microsoft', 'NN'), (u'decid', 'NN'), (u'winhelp', 'NN'), (u'hip', 'NN'), (u'cool', 'NN'), (u'anymor', 'NN'), (u'switch', 'NN'), (u'chm', 'NN'), (u'point', 'NN'), (u'actual', 'JJ'), (u'axe', 'NN'), (u'winhelp', 'NN'), (u'vista', 'NN'), (u'chm', 'NN'), (u'mayb', 'NN'), (u'nice', 'JJ'), (u'everyon', 'NN'), (u'tri', 'NN'), (u'open', 'JJ'), (u'chm', 'NN'), (u'file', 'NN'), (u'network', 'NN'), (u'nice', 'JJ'), (u'"navig', 'NN'), (u'webpag', 'NN'), (u'canceled"', 'NN'), (u'screen', 'NN'), (u'caus', 'NN'), (u'secur', 'NN'), (u'restrict', 'NN'), (u'way', 'NN'), (u'chm', 'NN'), (u'work', 'NN'), (u'network', 'NN'), (u'hardli', 'NN'), (u'good', 'JJ'), (u'choic', 'NN'), (u'user', 'NN'), (u'press', 'NN'), (u'help', 'NN'), (u'button', 'NN'), (u'want', 'NN'), (u'help', 'NN'), (u'funki', 'NN'), (u'set', 'NN'), (u'bottom', 'NN'), (u'line', 'NN'), (u'chm', 'NN'), (u'absolut', 'NN'), (u'unus', 'NN'), (u'winhelp', 'NN'), (u'option', 'NN'), (u'anymor', 'NN'), (u'wonder', 'NN'), (u'altern', 'NN'), (u'especi', 'NN'), (u'integr', 'NN'), (u'applic', 'NN'), (u'ie', 'NN'), (u'winhelp', 'NN'), (u'chm', 'NN'), (u'function', 'NN'), (u'directli', 'NN'), (u'jump', 'NN'), (u'topic', 'NN'), (u'pdf', 'NN'), (u'disadvantag', 'NN'), (u'requir', 'NN'), (u'adob', 'NN'), (u'reader', 'NN'), (u'lightweight', 'NN'), (u'mani', 'NN'), (u'peopl', 'NN'), (u'use', 'NN'), (u'live', 'JJ'), (u'kind', 'NN'), (u'standard', 'NN'), (u'nowaday', 'NN'), (u'tell', 'NN'), (u'reliabl', 'NN'), (u'jump', 'NN'), (u'page/anchor', 'NN'), (u'html', 'NN'), (u'file', 'NN'), (u'seem', 'NN'), (u'best', 'JJS'), (u'choic', 'NN'), (u'deal', 'NN'), (u'differ', 'NN'), (u'browser', 'NN'), (u'css', 'NN'), (u'stuff', 'NN'), (u'edit', 'NN'), (u'look', 'NN'), (u'creat', 'NN'), (u'help', 'NN'), (u'file', 'NN'), (u'fan', 'NN'), (u'"no', 'NN'), (u'setup', 'NN'), (u'extract', 'NN'), (u'run"', 'NN'), (u'philosophi', 'NN'), (u'problem', 'NN'), (u'mani', 'NN'), (u'time', 'NN'), (u'past', 'NN'), (u'mani', 'NN'), (u'user', 'NN'), (u'network', 'NN'), (u'caus', 'NN'), (u'exactli', 'NN'), (u'problem', 'NN'), (u'look', 'NN'), (u'robust', 'NN'), (u'future-proof', 'NN'), (u'way', 'NN'), (u'provid', 'NN'), (u'help', 'NN'), (u'user', 'NN'), (u'code', 'NN'), (u'differ', 'NN'), (u'help', 'NN'), (u'system', 'NN'), (u'applic', 'NN'), (u'chm', 'NN'), (u'realli', 'NN'), (u'nice', 'JJ'), (u'format', 'NN'), (u'secur', 'NN'), (u'stuff', 'NN'), (u'unus', 'NN'), (u'help', 'NN'), (u'system', 'NN'), (u'suppos', 'NN'), (u'provid', 'NN'), (u'help', 'NN'), (u'user', 'NN'), (u'gener', 'NN'), (u'problem', 'NN')], [(u'malloc', 'NN'), (u'doubl', 'NN'), (u'free', 'JJ'), (u'error', 'NN'), (u'realloc', 'NN'), (u'ive', 'JJ'), (u'tri', 'NN'), (u'write', 'NN'), (u'string', 'NN'), (u'replac', 'NN'), (u'function', 'NN'), (u'c', 'NNS'), (u'work', 'NN'), (u'alloc', 'NN'), (u'use', 'NN'), (u'littl', 'NN'), (u'differ', 'NN'), (u'replac', 'NN'), (u'string', 'NN'), (u'charact', 'NN'), (u'start', 'NN'), (u'string', 'NN'), (u'trivial', 'JJ'), (u'search', 'NN'), (u'replac', 'NN'), (u'string', 'NN'), (u'length', 'NN'), (u'replac', 'NN'), (u'string', 'NN'), (u'shorter', 'NN'), (u'search', 'NN'), (u'string', 'NN'), (u'sinc', 'NN'), (u'space', 'NN'), (u'alloc', 'NN'), (u'tri', 'NN'), (u'use', 'NN'), (u'error', 'NN'), (u'tell', 'NN'), (u'doubl', 'NN'), (u'free', 'JJ'), (u'dont', 'NN'), (u'sinc', 'NN'), (u'use', 'NN'), (u'perhap', 'NN'), (u'littl', 'NN'), (u'code', 'NN'), (u'help', 'NN'), (u'program', 'NN'), (u'work', 'NN'), (u'tri', 'NN'), (u'instanc', 'NN'), (u'replac', 'NN'), (u'string', 'NN'), (u'longer', 'NN'), (u'initi', 'NN'), (u'string', 'NN'), (u'kind', 'NN'), (u'work', 'NN'), (u'spit', 'NN'), (u'error', 'NN'), (u'result', 'NN'), (u'help', 'NN'), (u'call', 'NN'), (u'code', 'NN'), (u'look', 'NN')], [(u'index', 'NN'), (u'databas', 'NN'), (u'column', 'NN'), (u'hope', 'NN'), (u'answer', 'NN'), (u'databas', 'NN'), (u'server', 'NN'), (u'outlin', 'NN'), (u'index', 'NN'), (u'work', 'NN'), (u'check', 'NN'), (u'http//stackoverflowcom/questions//how-does-database-indexing-work', 'NN')], [(u'use', 'NN'), (u'svn', 'NN'), (u'revis', 'NN'), (u'label', 'NN'), (u'build', 'NN'), (u'ccnet', 'NN'), (u'use', 'NN'), (u'ccnet', 'NN'), (u'sampl', 'NN'), (u'project', 'NN'), (u'svn', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'ccnet', 'NN'), (u'configur', 'NN'), (u'creat', 'NN'), (u'build', 'NN'), (u'everi', 'NN'), (u'check', 'NN'), (u'ccnet', 'NN'), (u'use', 'NN'), (u'msbuild', 'NN'), (u'build', 'NN'), (u'sourc', 'NN'), (u'code', 'NN'), (u'use', 'NN'), (u'latest', 'JJS'), (u'revis', 'NN'), (u'number', 'NN'), (u'gener', 'NN'), (u'assemblyinfoc', 'NN'), (u'compil', 'NN'), (u'retriev', 'NN'), (u'latest', 'JJS'), (u'revis', 'NN'), (u'subvers', 'NNS'), (u'use', 'NN'), (u'valu', 'NN'), (u'ccnet', 'NN'), (u'edit', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'nant', 'NN'), (u'msbuild', 'NN')], [(u'effici', 'NN'), (u'graph', 'NN'), (u'data', 'NNS'), (u'structur', 'NN'), (u'python', 'NN'), (u'need', 'NN'), (u'abl', 'NN'), (u'manipul', 'NN'), (u'larg', 'NN'), (u'^', 'NN'), (u'node', 'NN'), (u'graph', 'NN'), (u'python', 'NN'), (u'data', 'NNS'), (u'correspond', 'NN'), (u'node/edg', 'NN'), (u'minim', 'NN'), (u'small', 'JJ'), (u'number', 'NN'), (u'string', 'NN'), (u'effici', 'NN'), (u'term', 'NN'), (u'memori', 'NN'), (u'speed', 'NN'), (u'way', 'NN'), (u'dict', 'NN'), (u'dict', 'NN'), (u'flexibl', 'NN'), (u'simpler', 'NN'), (u'implement', 'NN'), (u'intuit', 'NN'), (u'list', 'NN'), (u'list', 'NN'), (u'faster', 'NN'), (u'list', 'NN'), (u'option', 'NN'), (u'requir', 'NN'), (u'data', 'NNS'), (u'separ', 'NN'), (u'structur', 'NN'), (u'dict', 'NN'), (u'someth', 'NN'), (u'sort', 'NN'), (u'graphij"property"="value"', 'NN'), (u'suggest', 'NN'), (u'ye', 'NN'), (u'bit', 'NN'), (u'clearer', 'NN'), (u'mean', 'NN'), (u'effici', 'NN'), (u'particular', 'JJ'), (u'case', 'NN'), (u'mean', 'NN'), (u'term', 'NN'), (u'random', 'NN'), (u'access', 'NN'), (u'retriev', 'NN'), (u'load', 'NN'), (u'data', 'NNS'), (u'memori', 'NN'), (u'isnt', 'NN'), (u'huge', 'JJ'), (u'problem', 'NN'), (u'time', 'NN'), (u'consum', 'NN'), (u'part', 'NN'), (u'visit', 'NN'), (u'node', 'NN'), (u'extract', 'NN'), (u'inform', 'NN'), (u'measur', 'NN'), (u'metric', 'JJ'), (u'im', 'NN'), (u'interest', 'NN'), (u'hadnt', 'NN'), (u'consid', 'NN'), (u'node', 'NN'), (u'class', 'NN'), (u'properti', 'NN'), (u'node', 'NN'), (u'seem', 'NN'), (u'extra', 'JJ'), (u'layer', 'NN'), (u'overhead', 'NN'), (u'hope', 'NN'), (u'someon', 'NN'), (u'direct', 'JJ'), (u'experi', 'NN'), (u'similar', 'JJ'), (u'case', 'NN'), (u'share', 'NN'), (u'graph', 'NN'), (u'common', 'JJ'), (u'abstract', 'NN'), (u'cs', 'NN')], [(u'open', 'JJ'), (u'sourc', 'NN'), (u'rubi', 'NN'), (u'project', 'NN'), (u'recent', 'JJ'), (u'start', 'NN'), (u'studi', 'NN'), (u'rubi', 'NN'), (u'lieu', 'NN'), (u'jeff', 'NN'), (u'advic', 'NN'), (u'weekend', 'NN'), (u'stop', 'NN'), (u'theoriz', 'NN'), (u'write', 'NN'), (u'lot', 'NN'), (u'softwar', 'NN'), (u'learn', 'NN'), (u'mistak', 'NN'), (u'interest', 'NN'), (u'hone', 'NN'), (u'skill', 'NN'), (u'help', 'NN'), (u'open', 'JJ'), (u'sourc', 'NN'), (u'commun', 'NN'), (u'process', 'NN'), (u'thought', 'NN'), (u'id', 'NN'), (u'ask', 'NN'), (u'anyon', 'NN'), (u'suggest', 'NN'), (u'cool/interest', 'NN'), (u'open', 'JJ'), (u'sourc', 'NN'), (u'project', 'NN'), (u'rubi', 'NN'), (u'involv', 'NN')], [(u'subdomain', 'NN'), (u'user', 'NN'), (u'account', 'NN'), (u'webapp', 'NN'), (u'look', 'NN'), (u'user', 'NN'), (u'control', 'NN'), (u'subdomain', 'NN'), (u'app', 'NN'), (u'toy', 'NN'), (u'much', 'JJ'), (u'basecamp', 'NN'), (u'requir', 'NN'), (u'end', 'NN'), (u'creat', 'NN'), (u'dynam', 'NN'), (u'avail', 'NN'), (u'instantli', 'NN'), (u'recommend', 'NN'), (u'deal', 'NN'), (u'logic', 'NN'), (u'site', 'NN'), (u'rule', 'NN'), (u'lookup', 'NN'), (u'subdomain', 'NN')], [(u'viewstat', 'NN'), (u'invalid', 'JJ'), (u'safari', 'NN'), (u'site', 'NN'), (u'maintain', 'NN'), (u'reli', 'NN'), (u'heavili', 'NN'), (u'use', 'NN'), (u'isnt', 'NN'), (u'code', 'NN'), (u'howev', 'NN'), (u'certain', 'JJ'), (u'page', 'NN'), (u'extra-blo', 'NN'), (u'safari', 'NN'), (u'throw', 'NN'), (u'error', 'NN'), (u'safari', 'NN'), (u'firefox', 'NN'), (u'ie', 'NN'), (u'opera', 'NN'), (u'load', 'NN'), (u'success', 'NN'), (u'scenario', 'NN')], [(u'hyperlink', 'NN'), (u'specif', 'NN'), (u'slide', 'NN'), (u'ppt', 'NN'), (u'file', 'NN'), (u'want', 'NN'), (u'link', 'NN'), (u'specif', 'NN'), (u'slide', 'NN'), (u'onlin', 'NN'), (u'powerpoint', 'NN'), (u'file', 'NN'), (u'eg', 'NN'), (u'want', 'NN'), (u'peopl', 'NN'), (u'click', 'NN'), (u'link', 'NN'), (u'goe', 'NN'), (u'straight', 'NN'), (u'nth', 'NN'), (u'slide', 'NN'), (u'possibl', 'NN')], [(u'regex', 'NN'), (u'pull', 'NN'), (u'sub-str', 'NN'), (u'tag', 'NN'), (u'string', 'NN'), (u'file', 'NN'), (u'format', 'NN'), (u'data', 'NNS'), (u'data', 'NNS'), (u'data', 'NNS'), (u'start', 'NN'), (u'data', 'NNS'), (u'want', 'NN'), (u'end', 'NN'), (u'data', 'NNS'), (u'id', 'NN'), (u'grab', 'NN'), (u'tag', 'NN'), (u'use', 'NN'), (u'regex', 'NN'), (u'anyon', 'NN'), (u'show', 'NN')], [(u'asynchron', 'NN'), (u'multi-direct', 'NN'), (u'server-cli', 'NN'), (u'commun', 'NN'), (u'open', 'JJ'), (u'socket', 'NN'), (u'client-serv', 'NN'), (u'app', 'NN'), (u'client', 'NN'), (u'window', 'NN'), (u'mobil', 'NN'), (u'devic', 'NN'), (u'c++', 'NN'), (u'server', 'NN'), (u'full', 'JJ'), (u'window', 'NN'), (u'c#', 'NN'), (u'origin', 'NN'), (u'need', 'NN'), (u'send', 'NN'), (u'messag', 'NN'), (u'client', 'NN'), (u'server', 'NN'), (u'server', 'NN'), (u'send', 'NN'), (u'acknowledg', 'NN'), (u'receiv', 'NN'), (u'messag', 'NN'), (u'updat', 'NN'), (u'server', 'NN'), (u'actual', 'JJ'), (u'send', 'NN'), (u'messag', 'NN'), (u'client', 'NN'), (u'request', 'NN'), (u'data', 'NNS'), (u'current', 'JJ'), (u'set', 'NN'), (u'client', 'NN'), (u'receiv', 'NN'), (u'mode', 'NN'), (u'send', 'NN'), (u'data', 'NNS'), (u'server', 'NN'), (u'doesnt', 'NN'), (u'server', 'NN'), (u'send', 'NN'), (u'request', 'NN'), (u'time', 'NN'), (u'wait', 'NN'), (u'client', 'NN'), (u'data', 'NNS'), (u'thought', 'NN'), (u'creat', 'NN'), (u'thread', 'NN'), (u'client', 'NN'), (u'separ', 'NN'), (u'open', 'JJ'), (u'socket', 'NN'), (u'listen', 'NN'), (u'server', 'NN'), (u'requestsjust', 'NN'), (u'server', 'NN'), (u'alreadi', 'NN'), (u'respect', 'NN'), (u'client', 'NN'), (u'way', 'NN'), (u'thread', 'NN'), (u'use', 'NN'), (u'socket', 'NN'), (u'server', 'NN'), (u'send', 'NN'), (u'request', 'NN'), (u'time', 'NN'), (u'use', 'NN'), (u'someth', 'NN'), (u'affect', 'NN'), (u'pass', 'NN'), (u'receiv', 'NN'), (u'buffer', 'NN'), (u'event', 'NN'), (u'tell', 'NN'), (u'data', 'NNS'), (u'sent', 'NN')], [(u'advantag', 'NN'), (u'use', 'NN'), (u'svn', 'NN'), (u'cv', 'NN'), (u'compani', 'NN'), (u'use', 'NN'), (u'cv', 'NN'), (u'de-facto', 'NN'), (u'standard', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'howev', 'NN'), (u'ive', 'JJ'), (u'heard', 'NN'), (u'lot', 'NN'), (u'peopl', 'NN'), (u'svn', 'NN'), (u'svn', 'NN'), (u'newer', 'NN'), (u'im', 'NN'), (u'unfamiliar', 'JJ'), (u'benefit', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'good', 'JJ'), (u'succinct', 'NN'), (u'comparison', 'NN'), (u'system', 'NN'), (u'note', 'NN'), (u'advantag', 'NN'), (u'disadvantag', 'NN'), (u'java/eclips', 'NNS'), (u'environ', 'NN')], [(u'big', 'JJ'), (u'mysql', 'NN'), (u'databas', 'NN'), (u'perform', 'NN'), (u'start', 'NN'), (u'degrad', 'NN'), (u'point', 'NN'), (u'mysql', 'NN'), (u'databas', 'NN'), (u'start', 'NN'), (u'perform', 'NN'), (u'physic', 'NN'), (u'databas', 'NN'), (u'size', 'NN'), (u'matter', 'NN'), (u'number', 'NN'), (u'record', 'NN'), (u'matter', 'NN'), (u'perform', 'NN'), (u'degrad', 'NN'), (u'linear', 'NN'), (u'exponenti', 'NN'), (u'believ', 'NN'), (u'larg', 'NN'), (u'databas', 'NN'), (u'roughli', 'NN'), (u'm', 'NN'), (u'record', 'NN'), (u'gb', 'NN'), (u'base', 'NN'), (u'number', 'NN'), (u'incent', 'NN'), (u'clean', 'NN'), (u'data', 'NNS'), (u'safe', 'JJ'), (u'continu', 'NN'), (u'scale', 'NN'), (u'year', 'NN')], [(u'catch', 'NN'), (u'sql', 'NN'), (u'inject', 'NN'), (u'malici', 'NN'), (u'web', 'NN'), (u'request', 'NN'), (u'look', 'NN'), (u'tool', 'NN'), (u'detect', 'NN'), (u'malici', 'NN'), (u'request', 'NN'), (u'obviou', 'NN'), (u'sql', 'NN'), (u'inject', 'NN'), (u'post', 'NN'), (u'immedi', 'NN'), (u'ban', 'NN'), (u'ip', 'NN'), (u'address', 'NN'), (u'requester/add', 'NN'), (u'blacklist', 'NN'), (u'awar', 'NN'), (u'ideal', 'NN'), (u'world', 'NN'), (u'code', 'NN'), (u'abl', 'NN'), (u'handl', 'NN'), (u'request', 'NN'), (u'treat', 'NN'), (u'accordingli', 'NN'), (u'lot', 'NN'), (u'valu', 'NN'), (u'tool', 'NN'), (u'site', 'NN'), (u'safe', 'JJ'), (u'kind', 'NN'), (u'attack', 'NN'), (u'lead', 'NN'), (u'bandwidth', 'NN'), (u'prevent', 'NN'), (u'bloat', 'NN'), (u'analyt', 'NN'), (u'etc', 'NN'), (u'ideal', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'cross-platform', 'NN'), (u'lamp/net', 'NN'), (u'solut', 'NN'), (u'sit', 'NN'), (u'higher', 'JJR'), (u'level', 'NN'), (u'technolog', 'NN'), (u'stack;', 'NN'), (u'perhap', 'NN'), (u'web-serv', 'NN'), (u'hardwar', 'NN'), (u'level', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'exist', 'NN'), (u'way', 'NN'), (u'id', 'NN'), (u'hear', 'NN'), (u'commun', 'NN'), (u'feedback', 'NN'), (u'option', 'NN'), (u'regard', 'NN'), (u'implement', 'NN'), (u'approach', 'NN')], [(u'limit', 'NN'), (u'size', 'NN'), (u'queue<t>', 'NN'), (u'net', 'NN'), (u'queue<t>', 'NN'), (u'object', 'NN'), (u'initialis', 'NN'), (u'capac', 'NN'), (u'obvious', 'JJ'), (u'capac', 'NN'), (u'expand', 'NN'), (u'item', 'NN'), (u'alreadi', 'NN'), (u'object', 'NN'), (u'automat', 'NN'), (u'dequeu', 'NN'), (u'item', 'NN'), (u'limit', 'NN'), (u'reach', 'NN'), (u'best', 'JJS'), (u'solut', 'NN'), (u'creat', 'NN'), (u'inherit', 'NN'), (u'class', 'NN')], [(u'nant', 'NN'), (u'support', 'NN'), (u'suitabl', 'NN'), (u'net', 'NN'), (u'/v', 'NN'), (u'use', 'NN'), (u'msbuild', 'NN'), (u'build', 'NN'), (u'stuff', 'NN'), (u'want', 'NN'), (u'use', 'NN'), (u'cruisecontrolnet', 'NN'), (u'build', 'NN'), (u'server', 'NN'), (u'ccnet', 'NN'), (u'refer', 'NN'), (u'nant', 'NN'), (u'lot', 'NN'), (u'look', 'NN'), (u'ccnet', 'NN'), (u'stuff', 'NN'), (u'nant', 'NN'), (u'project', 'NN'), (u'configur', 'NN'), (u'msbuild', 'NN'), (u'nant', 'NN'), (u'seem', 'NN'), (u'bit', 'NN'), (u'unsupport', 'NN'), (u'beta', 'NN'), (u'releas', 'NNS'), (u'year', 'NN'), (u'old', 'JJ'), (u'short', 'JJ'), (u'actual', 'JJ'), (u'quit', 'NN'), (u'happi', 'NN'), (u'msbuild', 'NN'), (u'especi', 'NN'), (u'sinc', 'NN'), (u'"official"', 'NN'), (u'compil', 'NN'), (u'front', 'NN'), (u'end', 'NN'), (u'bit', 'NN'), (u'uncomfort', 'NN'), (u'nant', 'NN'), (u'want', 'NN'), (u'judg', 'NN'), (u'prematur', 'NN'), (u'reason', 'NN'), (u'use', 'NN'), (u'nant', 'NN'), (u'msbuild', 'NN'), (u'especi', 'NN'), (u'ccnet', 'NN'), (u'seem', 'NN'), (u'overlap', 'NN'), (u'bit', 'NN'), (u'nant', 'NN'), (u'term', 'NN'), (u'featur', 'NN'), (u'ad', 'NN'), (u'autom', 'NN'), (u'build', 'NN'), (u'relat', 'NN'), (u'stuff', 'NN')], [(u'check', 'NN'), (u'file', 'NN'), (u'lock', 'NN'), (u'way', 'NN'), (u'check', 'NN'), (u'file', 'NN'), (u'lock', 'NN'), (u'use', 'NN'), (u'try/catch', 'NN'), (u'block', 'NN'), (u'right', 'NN'), (u'way', 'NN'), (u'open', 'JJ'), (u'file', 'NN'), (u'catch', 'NN'), (u'systemioioexcept', 'NN')], [(u'use', 'NN'), (u'ncurs', 'NNS'), (u'rubi', 'NN'), (u'id', 'NN'), (u'creat', 'NN'), (u'progress', 'NN'), (u'bar', 'NN'), (u'indic', 'NN'), (u'statu', 'NN'), (u'batch', 'NN'), (u'job', 'NN'), (u'rubi', 'NN'), (u'ive', 'JJ'), (u'read', 'NN'), (u'tutori', 'NN'), (u'/', 'NN'), (u'librari', 'NN'), (u'use', 'NN'), (u'ncurs', 'NNS'), (u'none', 'NN'), (u'particularli', 'NN'), (u'help', 'NN'), (u'explain', 'NN'), (u'creat', 'NN'), (u'"animated"', 'NN'), (u'progress', 'NN'), (u'bar', 'NN'), (u'termin', 'NN'), (u'use', 'NN'), (u'curs', 'NNS'), (u'rubi', 'NN'), (u'im', 'NN'), (u'alreadi', 'NN'), (u'awar', 'NN'), (u'use', 'NN'), (u'separ', 'NN'), (u'thread', 'NN'), (u'monitor', 'NN'), (u'progress', 'NN'), (u'job', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'proceed', 'NN'), (u'draw', 'NN'), (u'progress', 'NN'), (u'bar', 'NN'), (u'updat', 'NN'), (u'progressbar', 'NN'), (u'class', 'NN'), (u'straight-forward', 'NN'), (u'perfectli', 'NN'), (u'solv', 'NN'), (u'problem', 'NN')], [(u'rockbox', 'NN'), (u'audio', 'NN'), (u'format', 'NN'), (u'specifi', 'NN'), (u'callback', 'NN')], [(u'followup', 'NN'), (u'accur', 'NN'), (u'"distance"', 'NN'), (u'color', 'NN'), (u'origin', 'NN'), (u'question', 'NN'), (u'look', 'NN'), (u'function', 'NN'), (u'attempt', 'NN'), (u'quantifi', 'NN'), (u'"distant"', 'NN'), (u'distinct', 'NN'), (u'color', 'NN'), (u'question', 'NN'), (u'realli', 'NN'), (u'part', 'NN'), (u'color', 'NN'), (u'space', 'NN'), (u'best', 'JJS'), (u'repres', 'NNS'), (u'human', 'NN'), (u'vision', 'NN'), (u'distanc', 'NN'), (u'metric', 'JJ'), (u'space', 'NN'), (u'best', 'JJS'), (u'repres', 'NNS'), (u'human', 'NN'), (u'vision', 'NN'), (u'euclidean', 'NN')], [(u'use', 'NN'), (u'mstest', 'JJS'), (u'cruisecontrolnet', 'NN'), (u'use', 'NN'), (u'cruisecontrol', 'NN'), (u'quit', 'NN'), (u'nunit', 'NN'), (u'nant', 'NN'), (u'recent', 'JJ'), (u'project', 'NN'), (u'decid', 'NN'), (u'use', 'NN'), (u'test', 'NN'), (u'framework', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'adequ', 'NN'), (u'im', 'NN'), (u'attempt', 'NN'), (u'solut', 'NN'), (u'cruisecontrol', 'NN'), (u'ive', 'JJ'), (u'final', 'JJ'), (u'build', 'NN'), (u'work;', 'NN'), (u'howev', 'NN'), (u'unabl', 'NN'), (u'test', 'NN'), (u'show', 'NN'), (u'cruisecontrol', 'NN'), (u'interfac', 'NN'), (u'despit', 'NN'), (u'ad', 'NN'), (u'custom', 'NN'), (u'build', 'NN'), (u'task', 'NN'), (u'compon', 'NN'), (u'design', 'NN'), (u'anyon', 'NN'), (u'definit', 'NN'), (u'link', 'NN'), (u'instruct', 'NN'), (u'set', 'NN')], [(u'followup', 'NN'), (u'"sorting"', 'NN'), (u'color', 'NN'), (u'distinct', 'NN'), (u'origin', 'NN'), (u'question', 'NN'), (u'n', 'NN'), (u'maxim', 'NN'), (u'distant', 'NN'), (u'color', 'NN'), (u'associ', 'NN'), (u'distanc', 'NN'), (u'metric', 'JJ'), (u'way', 'NN'), (u'sort', 'NN'), (u'color', 'NN'), (u'order', 'NN'), (u'm', 'NN'), (u'reason', 'NN'), (u'maxim', 'NN'), (u'distinct', 'NN'), (u'set', 'NN'), (u'word', 'NN'), (u'bunch', 'NN'), (u'distinct', 'NN'), (u'color', 'NN'), (u'order', 'NN'), (u'use', 'NN'), (u'mani', 'NN'), (u'color', 'NN'), (u'need', 'NN'), (u'start', 'NN'), (u'begin', 'NN'), (u'reason', 'NN'), (u'assur', 'NN'), (u'distinct', 'NN'), (u'nearbi', 'NN'), (u'color', 'NN'), (u'distinct', 'NN'), (u'eg', 'NN'), (u'bluish', 'NN'), (u'red', 'JJ'), (u'isnt', 'NN'), (u'next', 'JJ'), (u'reddish', 'NN'), (u'blue', 'NN'), (u'random', 'NN'), (u'ok', 'NN'), (u'certainli', 'NN'), (u'optim', 'NN'), (u'clarif', 'NN'), (u'larg', 'NN'), (u'visual', 'JJ'), (u'distinct', 'NN'), (u'set', 'NN'), (u'color', 'NN'), (u'want', 'NN'), (u'sort', 'NN'), (u'use', 'NN'), (u'rel', 'NN'), (u'visual', 'JJ'), (u'distinct', 'NN'), (u'subset', 'NN'), (u'color', 'NN'), (u'equival', 'NN'), (u'roughli', 'NN'), (u'want', 'NN'), (u'sort', 'NN'), (u'list', 'NN'), (u'closer', 'NN'), (u'individu', 'NN'), (u'color', 'NN'), (u'visual', 'JJ'), (u'farther', 'NN'), (u'list', 'NN')], [(u'file', 'NN'), (u'copi', 'NN'), (u'altern', 'NN'), (u'window', 'NN'), (u'default', 'NN'), (u'need', 'NN'), (u'copi', 'NN'), (u'hundr', 'NN'), (u'gig', 'NN'), (u'random', 'NN'), (u'file', 'NN'), (u'comput', 'NN'), (u'pretti', 'NNS'), (u'leeri', 'NN'), (u'use', 'NN'), (u'vanilla', 'NN'), (u'file', 'NN'), (u'copi', 'NN'), (u'built', 'NN'), (u'window', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'hang', 'NN'), (u'"are', 'NN'), (u'sure"', 'NN'), (u'"are', 'NN'), (u'realli', 'NN'), (u'sure"', 'NN'), (u'zip', 'NN'), (u'files"', 'NN'), (u'"sure', 'NN'), (u'read-onli', 'NN'), (u'file', 'NN'), (u'too!"', 'NN'), (u'loop', 'NN'), (u'step', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'work', 'NN'), (u'hour', 'NN'), (u'stop', 'NN'), (u'unexpectedli', 'NN'), (u'"someon', 'NN'), (u'open', 'JJ'), (u'file', 'NN'), (u'wont', 'NN'), (u'copi', 'NN'), (u'it!"', 'NN'), (u'cancel', 'NN'), (u'whole', 'JJ'), (u'copi', 'NN'), (u'quit', 'NN'), (u'indic', 'NN'), (u'work', 'NN'), (u'remain', 'NN'), (u'file', 'NN'), (u'manag', 'NN'), (u'program', 'NN'), (u'experi', 'NN'), (u'recommend', 'NN'), (u'question', 'NN'), (u'relat', 'NN'), (u'question', 'NN'), (u'use', 'NN'), (u'old', 'JJ'), (u'pata', 'NN'), (u'hard', 'JJ'), (u'disk', 'NN'), (u'drive', 'NN'), (u'newer', 'NN'), (u'sata-onli', 'NN'), (u'comput', 'NN')], [(u'current', 'JJ'), (u'log', 'NN'), (u'os', 'NN'), (u'user', 'NN'), (u'adob', 'NN'), (u'air', 'NN'), (u'need', 'NN'), (u'name', 'NN'), (u'current', 'JJ'), (u'log', 'NN'), (u'user', 'NN'), (u'air/flex', 'NN'), (u'applic', 'NN'), (u'applic', 'NN'), (u'deploy', 'NN'), (u'window', 'NN'), (u'machin', 'NN'), (u'think', 'NN'), (u'attain', 'NN'), (u'regex', 'NN'), (u'user', 'NN'), (u'directori', 'NN'), (u'open', 'JJ'), (u'way', 'NN')], [(u'unit', 'NN'), (u'test', 'NN'), (u'saw', 'NN'), (u'mani', 'NN'), (u'question', 'NN'), (u'ask', 'NN'), (u'unit', 'NN'), (u'test', 'NN'), (u'specif', 'NN'), (u'languag', 'NN'), (u'question', 'NN'), (u'ask', 'NN'), (u'use', 'NN'), (u'use', 'NN'), (u'common', 'JJ'), (u'pitfal', 'NN'), (u'misconcept', 'NN')], [(u'subson', 'NN'), (u'vs', 'NN'), (u'nhibern', 'JJ'), (u'concensu', 'NN'), (u'use', 'NN'), (u'tool', 'NN'), (u'advers', 'NNS'), (u'subson', 'NN'), (u'use', 'NN'), (u'term', 'NN'), (u'thing', 'NN'), (u'quickli', 'NN'), (u'larg', 'NN'), (u'project', 'NN'), (u'tend', 'NN'), (u'scale', 'NN'), (u'tie', 'NN'), (u'domain', 'NN'), (u'model', 'NN'), (u'databas', 'NN'), (u'model', 'NN'), (u'nhibern', 'JJ'), (u'lightweight', 'NN'), (u'poco', 'NN'), (u'unrel', 'NN'), (u'databas', 'NN'), (u'model', 'NN'), (u'setup', 'NN'), (u'time', 'NN'), (u'much', 'JJ'), (u'longer', 'NN')], [(u'current', 'JJ'), (u'best', 'JJS'), (u'option', 'NN'), (u'parallel', 'NN'), (u'cpu-intens', 'NNS'), (u'net', 'NN'), (u'app', 'NN'), (u'open-end', 'NN'), (u'question', 'NN'), (u'approach', 'NN'), (u'consid', 'NN')], [(u'window', 'NN'), (u'server', 'NN'), (u'"server', 'NN'), (u'core"', 'NN'), (u'appropri', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'instanc', 'NN'), (u'im', 'NN'), (u'set', 'NN'), (u'dedic', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'box', 'NN'), (u'window', 'NN'), (u'server', 'NN'), (u'week', 'NN'), (u'pare', 'NN'), (u'barebon', 'NN'), (u'possibl', 'NN'), (u'fulli', 'NN'), (u'function', 'NN'), (u'end', 'NN'), (u'"server', 'NN'), (u'core"', 'NN'), (u'option', 'NN'), (u'sound', 'NN'), (u'appeal', 'NN'), (u'im', 'NN'), (u'clear', 'JJ'), (u'sql', 'NN'), (u'server', 'NN'), (u'sku', 'NN'), (u'sever', 'NN'), (u'servic', 'NN'), (u'address', 'NN'), (u'microsoft', 'NN'), (u'websit', 'NN'), (u'dont', 'NN'), (u'indic', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'anyon', 'NN'), (u'definit', 'NN')], [(u'aspnet', 'NN'), (u'custom', 'NN'), (u'client-sid', 'NN'), (u'valid', 'JJ'), (u'custom', 'NN'), (u'valid', 'JJ'), (u'function', 'NN'), (u'javascript', 'NN'), (u'user', 'NN'), (u'control', 'NN'), (u'net', 'NN'), (u'web', 'NN'), (u'site', 'NN'), (u'check', 'NN'), (u'fee', 'NN'), (u'paid', 'NN'), (u'excess', 'NN'), (u'fee', 'NN'), (u'amount', 'NN'), (u'due', 'JJ'), (u'ive', 'JJ'), (u'place', 'NN'), (u'valid', 'JJ'), (u'code', 'NN'), (u'ascx', 'NN'), (u'file', 'NN'), (u'tri', 'NN'), (u'use', 'NN'), (u'pageclientscriptregisterclientscriptblock', 'NN'), (u'case', 'NN'), (u'valid', 'JJ'), (u'fire', 'NN'), (u'cannot', 'NN'), (u'javascript', 'NN'), (u'function', 'NN'), (u'output', 'NN'), (u'firefox', 'NN'), (u'error', 'NN'), (u'consol', 'NN'), (u'"feeamountcheck', 'NN'), (u'defined"', 'NN'), (u'function', 'NN'), (u'directli', 'NN'), (u'firefox->view', 'NN'), (u'sourc', 'NN'), (u'idea', 'NN'), (u'function', 'NN'), (u'isnt', 'NN'), (u'found', 'NN'), (u'remedi', 'NN'), (u'function', 'NN'), (u'master', 'NN'), (u'page', 'NN'), (u'consum', 'NN'), (u'page', 'NN')], [(u'xampp/apach', 'NN'), (u'serv', 'NN'), (u'file', 'NN'), (u'outsid', 'NN'), (u'htdoc', 'NN'), (u'possibl', 'NN'), (u'configur', 'NN'), (u'xampp', 'NN'), (u'serv', 'NN'), (u'file', 'NN'), (u'outsid', 'NN'), (u'directori', 'NN'), (u'instanc', 'NN'), (u'file', 'NN'), (u'xampp', 'NN'), (u'file', 'NN'), (u'normal', 'JJ'), (u'serv', 'NN'), (u'configur', 'NN'), (u'default', 'NN'), (u'way', 'NN'), (u'apach', 'NN'), (u'recogn', 'NN'), (u'serv', 'NN'), (u'file', 'NN'), (u'move', 'NN'), (u'prefer', 'NN'), (u'id', 'NN'), (u'apach', 'NN'), (u'serv', 'NN'), (u'up/hav', 'NN'), (u'access', 'NN'), (u'entir', 'NN'), (u'content', 'NN'), (u'project', 'NN'), (u'directori', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'move', 'NN'), (u'project', 'NN'), (u'directori', 'NN'), (u'edit', 'NN'), (u'edit', 'NN'), (u'apach', 'NN'), (u'question', 'NN'), (u'titl', 'NN'), (u'q/a', 'NN'), (u'"searchable"', 'NN')], [(u'bandwith', 'NN'), (u'throttl', 'NN'), (u'ii', 'NN'), (u'ip', 'NN'), (u'address', 'NN'), (u'write', 'NN'), (u'applic', 'NN'), (u'download', 'NN'), (u'larg', 'NN'), (u'file', 'NN'), (u'background', 'NN'), (u'client', 'NN'), (u'log', 'NN'), (u'local', 'JJ'), (u'vpn', 'NN'), (u'log', 'NN'), (u'local', 'JJ'), (u'want', 'NN'), (u'throttl', 'NN'), (u'download', 'NN'), (u'howev', 'NN'), (u'limit', 'NN'), (u'download', 'NN'), (u'kbp', 'NN'), (u'user', 'NN'), (u'connect', 'NN'), (u'vpn', 'NN'), (u'differenti', 'NN'), (u'user', 'NN'), (u'ip', 'NN'), (u'address', 'NN'), (u'rang', 'NN'), (u'sinc', 'NN'), (u'air', 'NN'), (u'applic', 'NN'), (u'figur', 'NN'), (u'throttl', 'NN'), (u'server-sid', 'NN'), (u'sinc', 'NN'), (u'server', 'NN'), (u'ii', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'aspnet', 'NN'), (u'/', 'NN'), (u'c#', 'NN'), (u'throttl', 'NN'), (u'ii', 'NN'), (u'seem', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'seem', 'NN'), (u'entir', 'NN'), (u'web', 'NN'), (u'site', 'NN'), (u'ip', 'NN'), (u'rig', 'NN'), (u'net', 'NN')], [(u'authent', 'NN'), (u'user', 'NN'), (u'name', 'NN'), (u'apach', 'NN'), (u'use', 'NN'), (u'plain', 'NN'), (u'http', 'NN'), (u'authent', 'NN'), (u'php', 'NN'), (u'secur', 'NN'), (u'way', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'simpl', 'NN'), (u'authent', 'NN'), (u'apach', 'NN'), (u'one-off', 'NN'), (u'intern', 'NN'), (u'use', 'NN'), (u'non-internet', 'NN'), (u'connect', 'NN'), (u'lan', 'NN'), (u'php', 'NN'), (u'web', 'NN'), (u'app', 'NN'), (u'http', 'NN'), (u'authent', 'NN'), (u'user', 'NN'), (u'name', 'NN'), (u'php', 'NN')], [(u'best', 'JJS'), (u'way', 'NN'), (u'handl', 'NN'), (u'multipl', 'NN'), (u'permiss', 'NN'), (u'type', 'NN'), (u'encount', 'NN'), (u'scenario', 'NN'), (u'need', 'NN'), (u'offer', 'NN'), (u'mani', 'NN'), (u'differ', 'NN'), (u'type', 'NN'), (u'permiss', 'NN'), (u'primarili', 'NN'), (u'use', 'NN'), (u'aspnet', 'NN'), (u'/', 'NN'), (u'vbnet', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'scenario', 'NN'), (u'want', 'NN'), (u'offer', 'NN'), (u'dynam', 'NN'), (u'permiss', 'NN'), (u'system', 'NN'), (u'work', 'NN'), (u'differ', 'NN'), (u'paramet', 'NN'), (u'want', 'NN'), (u'depart', 'NN'), (u'specif', 'NN'), (u'person', 'NN'), (u'access', 'NN'), (u'applic', 'NN'), (u'pretend', 'NN'), (u'number', 'NN'), (u'applic', 'NN'), (u'grow', 'NN'), (u'past', 'NN'), (u'chosen', 'NN'), (u'way', 'NN'), (u'use', 'NN'), (u'singl', 'NN'), (u'permiss', 'NN'), (u'tabl', 'NN'), (u'special', 'JJ'), (u'column', 'NN'), (u'use', 'NN'), (u'determin', 'NN'), (u'appli', 'NN'), (u'paramet', 'NN'), (u'special', 'JJ'), (u'column', 'NN'), (u'exampl', 'NN'), (u'typeid', 'NN'), (u'typeauxid', 'NN'), (u'sql', 'NN'), (u'look', 'NN'), (u'someth', 'NN'), (u'use', 'NN'), (u'map', 'NN'), (u'tabl', 'NN'), (u'type', 'NN'), (u'permiss', 'NN'), (u'join', 'NN'), (u'togeth', 'NNS'), (u'thought', 'NN'), (u'hope', 'NN'), (u'exampl', 'NN'), (u'sens', 'NNS'), (u'cobbl', 'NN'), (u'togeth', 'NNS'), (u'exampl', 'NN'), (u'requir', 'NN'), (u'work', 'NN'), (u'feel', 'NN'), (u'best', 'JJS'), (u'answer', 'NN'), (u'way', 'NN'), (u'handl', 'NN')], [(u'use', 'NN'), (u'object', 'NN'), (u'properti', 'NN'), (u'default', 'NN'), (u'method', 'NN'), (u'properti', 'NN'), (u'im', 'NN'), (u'tri', 'NN'), (u'produc', 'NN'), (u'unexpect', 'JJ'), (u't_variabl', 'NN'), (u'error', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'put', 'NN'), (u'magic', 'NN'), (u'number', 'NN'), (u'weight', 'NN'), (u'sinc', 'NN'), (u'object', 'NN'), (u'use', 'NN'), (u'"defaultweight"', 'NN'), (u'paramet', 'NN'), (u'new', 'JJ'), (u'shipment', 'NN'), (u'dont', 'NN'), (u'specifi', 'NN'), (u'weight', 'NN'), (u'cant', 'NN'), (u'put', 'NN'), (u'defaultweight', 'NN'), (u'shipment', 'NN'), (u'chang', 'NN'), (u'shipment', 'NN'), (u'group', 'NN'), (u'shipment', 'NN'), (u'group', 'NN'), (u'way', 'NN')], [(u'modifi', 'NN'), (u'address', 'NN'), (u'bar', 'NN'), (u'url', 'NN'), (u'ajax', 'NN'), (u'app', 'NN'), (u'match', 'NN'), (u'current', 'JJ'), (u'state', 'NN'), (u'im', 'NN'), (u'write', 'NN'), (u'ajax', 'NN'), (u'app', 'NN'), (u'user', 'NN'), (u'move', 'NN'), (u'app', 'NN'), (u'id', 'NN'), (u'url', 'NN'), (u'address', 'NN'), (u'bar', 'NN'), (u'updat', 'NN'), (u'despit', 'NN'), (u'lack', 'NN'), (u'page', 'NN'), (u'reload', 'NN'), (u'basic', 'JJ'), (u'id', 'NN'), (u'abl', 'NN'), (u'bookmark', 'NN'), (u'point', 'NN'), (u'therebi', 'NN'), (u'return', 'NN'), (u'current', 'JJ'), (u'state', 'NN'), (u'peopl', 'NN'), (u'handl', 'NN'), (u'maintain', 'NN'), (u'rest', 'NN'), (u'ajax', 'NN'), (u'app', 'NN')], [(u'express', 'NN'), (u'binari', 'NN'), (u'liter', 'NN'), (u'python', 'NN'), (u'express', 'NN'), (u'integ', 'NN'), (u'binari', 'NN'), (u'number', 'NN'), (u'python', 'NN'), (u'liter', 'NN'), (u'easili', 'NN'), (u'abl', 'NN'), (u'answer', 'NN'), (u'hex', 'NN'), (u'octal', 'NN'), (u'use', 'NN'), (u'liter', 'NN'), (u'express', 'NN'), (u'binari', 'NN'), (u'python', 'NN'), (u'summari', 'NN'), (u'answer', 'NN'), (u'python', 'NN'), (u'express', 'NN'), (u'binari', 'NN'), (u'use', 'NN'), (u'liter', 'NN'), (u'python', 'NN'), (u'way', 'NN'), (u'express', 'NN'), (u'binari', 'NN'), (u'liter', 'NN'), (u'python', 'NN'), (u'beta', 'NN'), (u'python', 'NN'), (u'beta', 'NN'), (u'second', 'JJ'), (u'charact', 'NN'), (u'letter', 'NN'), (u'o', 'NN'), (u'repres', 'NNS'), (u'octal', 'NN'), (u'python', 'NN'), (u'beta', 'NN'), (u'longer', 'NN'), (u'older', 'JJR'), (u'syntax', 'NN'), (u'octal', 'NN')], [(u'prefer', 'NN'), (u'version', 'NN'), (u'vim', 'NN'), (u'emac', 'NN'), (u'mac', 'NN'), (u'os', 'NN'), (u'x', 'NN'), (u'use', 'NN'), (u'graphic', 'JJ'), (u'version', 'NN'), (u'vim', 'NN'), (u'emac', 'NN'), (u'consol', 'NN'), (u'version', 'NN'), (u'version', 'NN'), (u'recommend', 'NN'), (u'vim', 'NN'), (u'mac', 'NN'), (u'os', 'NN'), (u'x', 'NN'), (u'vim', 'NN'), (u'macvim', 'NN'), (u'vim-cocoa', 'NN'), (u'emac', 'NN'), (u'carbonemac', 'NN'), (u'xemac', 'NN'), (u'aquamac', 'NN'), (u'readi', 'NN'), (u'prime-tim', 'NN'), (u'tough', 'JJ'), (u'call', 'NN'), (u'trade-off', 'NN'), (u'maintain', 'NN'), (u'discuss', 'NN'), (u'vim', 'NN'), (u'vs', 'NN'), (u'emac', 'NN'), (u'dont', 'NN'), (u'mind', 'NN'), (u'comparison', 'NN'), (u'editor', 'NN')], [(u'integr', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'test', 'NN'), (u'project', 'NN'), (u'cruis', 'NN'), (u'control', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'use', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'built', 'NN'), (u'unit', 'NN'), (u'test', 'NN'), (u'project', 'NN'), (u'nunit', 'NN'), (u'wonder', 'NN'), (u'anyon', 'NN'), (u'experi', 'NN'), (u'tri', 'NN'), (u'integr', 'NN'), (u'type', 'NN'), (u'unit', 'NN'), (u'test', 'NN'), (u'project', 'NN'), (u'cruis', 'NN'), (u'controlnet', 'NN')], [(u'web', 'NN'), (u'site', 'NN'), (u'icon', 'NN'), (u'iphon', 'NN'), (u'set', 'NN'), (u'icon', 'NN'), (u'iphon', 'NN'), (u'web', 'NN'), (u'site', 'NN'), (u'creat', 'NN')], [(u'differ', 'NN'), (u'distribut', 'NN'), (u'version', 'NN'), (u'control', 'NN'), (u'system', 'NN'), (u'work', 'NN'), (u'togeth', 'NNS'), (u'offic', 'NN'), (u'central', 'JJ'), (u'sourc', 'NN'), (u'safe', 'JJ'), (u'instal', 'NN'), (u'use', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'cant', 'NN'), (u'chang', 'NN'), (u'offic', 'NN'), (u'use', 'NN'), (u'server', 'NN'), (u'laptop', 'NN'), (u'differ', 'NN'), (u'local', 'JJ'), (u'sourc', 'NN'), (u'control', 'NN'), (u'repositori', 'NN'), (u'sync', 'NN'), (u'central', 'JJ'), (u'server', 'NN'), (u'avail', 'NN'), (u'central', 'JJ'), (u'provid', 'NN'), (u'reason', 'NN'), (u'request', 'NN'), (u'maintain', 'NN'), (u'local', 'JJ'), (u'stabl', 'NN'), (u'branch/build', 'NN'), (u'client', 'NN'), (u'present', 'NN'), (u'continu', 'NN'), (u'jump', 'NN'), (u'flame', 'NN'), (u'hoop', 'NN'), (u'consult', 'NN'), (u'client', 'NN'), (u'request', 'NN'), (u'use', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'provid', 'NN'), (u'flexibl', 'NN'), (u'life', 'NN'), (u'easier', 'JJR'), (u'exist', 'NN'), (u'distribut', 'NN'), (u'sourc', 'NN'), (u'control', 'NN'), (u'client', 'NN'), (u'handl', 'NN')], [(u'hide', 'NN'), (u'inherit', 'NN'), (u'member', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'way', 'NN'), (u'effect', 'NN'), (u'hide', 'NN'), (u'inherit', 'NN'), (u'member', 'NN'), (u'librari', 'NN'), (u'class', 'NN'), (u'inherit', 'NN'), (u'common', 'JJ'), (u'base', 'NN'), (u'class', 'NN'), (u'recent', 'JJ'), (u'descend', 'NN'), (u'class', 'NN'), (u'inherit', 'NN'), (u'depend', 'NN'), (u'properti', 'NN'), (u'becom', 'NN'), (u'vestigi', 'NN'), (u'littl', 'NN'), (u'confus', 'NN'), (u'use', 'NN'), (u'intellisens', 'NNS'), (u'use', 'NN'), (u'class', 'NN'), (u'visual', 'JJ'), (u'design', 'NN'), (u'class', 'NN'), (u'control', 'NN'), (u'compil', 'NN'), (u'wpf', 'NN'), (u'silverlight', 'NN'), (u'im', 'NN'), (u'pretti', 'NNS'), (u'certain', 'JJ'), (u'cant', 'NN'), (u'use', 'NN'), (u'silverlight', 'NN'), (u'much', 'JJ'), (u'function', 'NN'), (u'issu', 'NN'), (u'usabl', 'NN'), (u'issu', 'NN'), (u'updat', 'NN'), (u'properti', 'NN'), (u'realli', 'NN'), (u'hide', 'NN'), (u'ancestor', 'NN'), (u'specif', 'NN'), (u'tool', 'NN'), (u'im', 'NN'), (u'design', 'NN'), (u'cant', 'NN'), (u'member', 'NN'), (u'hide', 'NN'), (u'oper', 'NN'), (u'ridicul', 'NN')], [(u'reduc', 'NN'), (u'duplic', 'NN'), (u'error', 'NN'), (u'handl', 'NN'), (u'code', 'NN'), (u'c#', 'NN'), (u'ive', 'JJ'), (u'complet', 'NN'), (u'happi', 'NN'), (u'way', 'NN'), (u'handl', 'NN'), (u'work', 'NN'), (u'lot', 'NN'), (u'try/catch', 'NN'), (u'bring', 'NN'), (u'tabl', 'NN'), (u'stack', 'NN'), (u'unwind', 'NN'), (u'etc', 'NN'), (u'seem', 'NN'), (u'break', 'NN'), (u'lot', 'NN'), (u'oo', 'NN'), (u'model', 'NN'), (u'process', 'NN'), (u'problem', 'NN'), (u'class', 'NN'), (u'wrap', 'NN'), (u'includ', 'NN'), (u'network', 'NN'), (u'file', 'NN'), (u'io', 'NN'), (u'oper', 'NN'), (u'eg', 'NN'), (u'read', 'NN'), (u'write', 'NN'), (u'file', 'NN'), (u'particular', 'JJ'), (u'unc', 'NN'), (u'path', 'NN'), (u'somewher', 'NN'), (u'variou', 'NN'), (u'reason', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'io', 'NN'), (u'oper', 'NN'), (u'fail', 'NN'), (u'detect', 'NN'), (u'fail', 'NN'), (u'retri', 'NN'), (u'retri', 'NN'), (u'reach', 'NN'), (u'timeout', 'NN'), (u'alreadi', 'NN'), (u'conveni', 'NN'), (u'retrytim', 'NN'), (u'class', 'NN'), (u'instanti', 'NN'), (u'use', 'NN'), (u'sleep', 'NN'), (u'current', 'JJ'), (u'thread', 'NN'), (u'retri', 'NN'), (u'determin', 'NN'), (u'timeout', 'NN'), (u'period', 'NN'), (u'elaps', 'NNS'), (u'etc', 'NN'), (u'problem', 'NN'), (u'bunch', 'NN'), (u'io', 'NN'), (u'oper', 'NN'), (u'sever', 'NN'), (u'method', 'NN'), (u'class', 'NN'), (u'need', 'NN'), (u'wrap', 'NN'), (u'try-catch', 'NN'), (u'/', 'NN'), (u'retri', 'NN'), (u'logic', 'NN'), (u'exampl', 'NN'), (u'code', 'NN'), (u'snippet', 'NN'), (u'avoid', 'NN'), (u'duplic', 'NN'), (u'code', 'NN'), (u'everi', 'NN'), (u'file', 'NN'), (u'io', 'NN'), (u'oper', 'NN'), (u'class', 'NN'), (u'solut', 'NN'), (u'use', 'NN'), (u'anonym', 'NN'), (u'deleg', 'NN'), (u'block', 'NN'), (u'singl', 'NN'), (u'method', 'NN'), (u'class', 'NN'), (u'execut', 'NN'), (u'deleg', 'NN'), (u'block', 'NN'), (u'pass', 'NN'), (u'thing', 'NN'), (u'method', 'NN'), (u'leav', 'NN'), (u'lot', 'NN'), (u'desir', 'NN'), (u'id', 'NN'), (u'hear', 'NN'), (u'peopl', 'NN'), (u'solv', 'NN'), (u'sort', 'NN'), (u'problem', 'NN')], [(u'softwar', 'NN'), (u'engin', 'NN'), (u'term', 'NN'), (u'"softwar', 'NN'), (u'engineering"', 'NN'), (u'use', 'NN'), (u'fulli', 'NN'), (u'consid', 'NN'), (u'sinc', 'NN'), (u'field', 'NN'), (u'rel', 'NN'), (u'young', 'JJ'), (u'compar', 'NN'), (u'matur', 'NN'), (u'profession', 'NN'), (u'disciplin', 'NN'), (u'definit', 'NN'), (u'arguabl', 'NN'), (u'work', 'NN'), (u'least', 'JJS'), (u'understood', 'NN'), (u'differ', 'NN'), (u'differ', 'NN'), (u'popul', 'NN'), (u'despit', 'NN'), (u'"defined"', 'NN'), (u'ieee', 'NN'), (u'softwar', 'NN'), (u'engin', 'NN'), (u'defin', 'NN'), (u'user', 'NN'), (u'softwar', 'NN'), (u'engin', 'NN')], [(u'onlin', 'NN'), (u'peer', 'NN'), (u'code', 'NN'), (u'review', 'NN'), (u'peopl', 'NN'), (u'work', 'NN'), (u'small', 'JJ'), (u'team', 'NN'), (u'team', 'NN'), (u'best', 'JJS'), (u'need', 'NN'), (u'learn', 'NN'), (u'someon', 'NN'), (u'onlin', 'NN'), (u'resources/method', 'NN'), (u'sort', 'NN'), (u'peer', 'NN'), (u'code', 'NN'), (u'review', 'NN'), (u'use', 'NN'), (u'pretti', 'NNS'), (u'activ', 'NN'), (u'onlin', 'NN'), (u'art', 'NN'), (u'commun', 'NN'), (u'specif', 'NN'), (u'draw', 'NN'), (u'anim', 'NN'), (u'sort', 'NN'), (u'site', 'NN'), (u'post', 'NN'), (u'pictur', 'NN'), (u'critiqu', 'NN'), (u'comment', 'NN'), (u'ive', 'JJ'), (u'anyth', 'NN'), (u'programm', 'NN'), (u'im', 'NN'), (u'think', 'NN'), (u'somewher', 'NN'), (u'post', 'NN'), (u'object', 'NN'), (u'architectur', 'NN'), (u'plan', 'NN'), (u'db', 'NN'), (u'design', 'NN'), (u'plan', 'NN'), (u'straight', 'NN'), (u'code', 'NN'), (u'other', 'JJ'), (u'look', 'NN'), (u'learn', 'NN'), (u'critiqu', 'NN'), (u'comment', 'NN'), (u'anyon', 'NN'), (u'anyth', 'NN'), (u'anywher', 'NN'), (u'prefer', 'NN'), (u'focus', 'NN'), (u'php', 'NN'), (u'anyth', 'NN'), (u'non-fre', 'JJ'), (u'site', 'NN'), (u'ok', 'NN'), (u'note', 'NN'), (u'ye', 'NN'), (u'awar', 'NN'), (u'secur', 'NN'), (u'implic', 'NN'), (u'secur', 'NN'), (u'obscur', 'NN'), (u'worst', 'JJS'), (u'secur', 'NN'), (u'post', 'NN'), (u'code', 'NN'), (u'actual', 'JJ'), (u'help', 'NN'), (u'flush', 'NN'), (u'potenti', 'NN'), (u'secur', 'NN'), (u'issu', 'NN')], [(u'longtim', 'NN'), (u'window', 'NN'), (u'user', 'NN'), (u'start', 'NN'), (u'use', 'NN'), (u'linux', 'NN'), (u'weve', 'NN'), (u'final', 'JJ'), (u'move', 'NN'), (u'websit', 'NN'), (u'decent', 'NN'), (u'host', 'NN'), (u'time', 'NN'), (u'shell', 'NN'), (u'access', 'NN'), (u'littl', 'NN'), (u'use', 'NN'), (u'linux', 'NN'), (u'navig', 'NN'), (u'file', 'NN'), (u'system', 'NN'), (u'read', 'NN'), (u'file', 'NN'), (u'vim', 'NN'), (u'im', 'NN'), (u'awar', 'NN'), (u'man', 'NN'), (u'command', 'NN'), (u'abl', 'NN'), (u'work', 'NN'), (u'solut', 'NN'), (u'problem', 'NN'), (u'show', 'NN'), (u'eventu', 'NN'), (u'im', 'NN'), (u'unawar', 'JJ'), (u'lot', 'NN'), (u'edit', 'NN'), (u'current', 'JJ'), (u'use', 'NN'), (u'host', 'NN'), (u'hold', 'NN'), (u'live', 'JJ'), (u'site', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'use', 'NN'), (u'effect', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'start', 'NN'), (u'web', 'NN'), (u'mind', 'NN'), (u'essenti', 'NN'), (u'command', 'NN'), (u'everi', 'NN'), (u'linux', 'NN'), (u'user', 'NN'), (u'use', 'NN'), (u'command', 'NN'), (u'look', 'NN')], [(u'linux', 'NN'), (u'shell', 'NN'), (u'equival', 'NN'), (u'ii', 'NN'), (u'lamp', 'NN'), (u'consid', 'NN'), (u'move', 'NN'), (u'net', 'NN'), (u'ii', 'NN'), (u'platform', 'NN'), (u'concern', 'NN'), (u'loss', 'NN'), (u'product', 'NN'), (u'due', 'JJ'), (u'lack', 'NN'), (u'shell', 'NN'), (u'anyon', 'NN'), (u'els', 'NNS'), (u'experi', 'NN'), (u'possibl', 'NN'), (u'linux', 'NN'), (u'shell', 'NN'), (u'equival', 'NN'), (u'window', 'NN')], [(u'correct', 'NN'), (u'pixel', 'NN'), (u'dimens', 'NNS'), (u'apple-touch-icon', 'NN'), (u'im', 'NN'), (u'sure', 'NN'), (u'correct', 'NN'), (u'size', 'NN'), (u'mani', 'NN'), (u'site', 'NN'), (u'seem', 'NN'), (u'repeat', 'NN'), (u'apple-touch-icon', 'NN'), (u'x', 'NN'), (u'pixel', 'NN'), (u'cite', 'NN'), (u'broken', 'NN'), (u'link', 'NN'), (u'sourc', 'NN'), (u'hanselman', 'NN'), (u'playgroundbluess', 'NN'), (u'comment', 'NN'), (u'suggest', 'NN'), (u'differ', 'NN'), (u'size', 'NN'), (u'includ', 'NN'), (u'x', 'NN'), (u'x', 'NN'), (u'appl', 'NN'), (u'applecom', 'NN'), (u'icon', 'NN'), (u'x!', 'NN'), (u'relat', 'NN'), (u'question', 'NN'), (u'web', 'NN'), (u'site', 'NN'), (u'icon', 'NN'), (u'iphon', 'NN')], [(u'best', 'JJS'), (u'way', 'NN'), (u'copi', 'NN'), (u'databa', 'NN'), (u'creat', 'NN'), (u'new', 'JJ'), (u'empti', 'NN'), (u'databas', 'NN'), (u'backup', 'NN'), (u'restor', 'NN'), (u'exist', 'NN'), (u'databas', 'NN'), (u'realli', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'seem', 'NN'), (u'error', 'NN'), (u'prone', 'NN'), (u'complic', 'NN')], [(u'mechan', 'NN'), (u'track', 'NN'), (u'db', 'NN'), (u'schema', 'NN'), (u'chang', 'NN'), (u'best', 'JJS'), (u'method', 'NN'), (u'track', 'NN'), (u'and/or', 'NN'), (u'autom', 'NN'), (u'db', 'NN'), (u'schema', 'NN'), (u'chang', 'NN'), (u'team', 'NN'), (u'use', 'NN'), (u'subvers', 'NNS'), (u'version', 'NN'), (u'control', 'NN'), (u'weve', 'NN'), (u'abl', 'NN'), (u'autom', 'NN'), (u'task', 'NN'), (u'way', 'NN'), (u'push', 'NN'), (u'build', 'NN'), (u'stage', 'NN'), (u'server', 'NN'), (u'deploy', 'NN'), (u'test', 'NN'), (u'code', 'NN'), (u'product', 'NN'), (u'server', 'NN'), (u'databas', 'NN'), (u'updat', 'NN'), (u'manual', 'JJ'), (u'creat', 'NN'), (u'solut', 'NN'), (u'work', 'NN'), (u'effici', 'NN'), (u'server', 'NN'), (u'differ', 'NN'), (u'environ', 'NN'), (u'continu', 'NN'), (u'use', 'NN'), (u'subvers', 'NNS'), (u'backend', 'NN'), (u'code', 'NN'), (u'db', 'NN'), (u'updat', 'NN'), (u'push', 'NN'), (u'variou', 'NN'), (u'server', 'NN'), (u'mani', 'NN'), (u'popular', 'JJ'), (u'softwar', 'NN'), (u'packag', 'NN'), (u'includ', 'NN'), (u'auto-upd', 'NN'), (u'script', 'NN'), (u'detect', 'NN'), (u'db', 'NN'), (u'version', 'NN'), (u'appli', 'NN'), (u'necessari', 'NN'), (u'chang', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'larger', 'JJR'), (u'scale', 'NN'), (u'multipl', 'NN'), (u'project', 'NN'), (u'sometim', 'NN'), (u'multipl', 'NN'), (u'environ', 'NN'), (u'languag', 'NN'), (u'exist', 'NN'), (u'code', 'NN'), (u'simplifi', 'NN'), (u'process', 'NN'), (u'best', 'JJS'), (u'roll', 'NN'), (u'solut', 'NN'), (u'anyon', 'NN'), (u'implement', 'NN'), (u'someth', 'NN'), (u'similar', 'JJ'), (u'integr', 'NN'), (u'subvers', 'NNS'), (u'post-commit', 'NN'), (u'hook', 'NN'), (u'bad', 'JJ'), (u'idea', 'NN'), (u'solut', 'NN'), (u'support', 'NN'), (u'multipl', 'NN'), (u'platform', 'NN'), (u'prefer', 'NN'), (u'definit', 'NN'), (u'need', 'NN'), (u'support', 'NN'), (u'linux/apache/mysql/php', 'NN'), (u'stack', 'NN'), (u'major', 'JJ'), (u'work', 'NN'), (u'platform', 'NN')], [(u'logic', 'NN'), (u'reorder', 'NN'), (u'column', 'NN'), (u'tabl', 'NN'), (u'im', 'NN'), (u'ad', 'NN'), (u'column', 'NN'), (u'tabl', 'NN'), (u'microsoft', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'control', 'NN'), (u'column', 'NN'), (u'display', 'NN'), (u'logic', 'NN'), (u'queri', 'NN'), (u'dont', 'NN'), (u'want', 'NN'), (u'mess', 'NN'), (u'physic', 'NN'), (u'layout', 'NN'), (u'column', 'NN'), (u'disk', 'NN'), (u'logic', 'NN'), (u'group', 'NN'), (u'column', 'NN'), (u'togeth', 'NNS'), (u'possibl', 'NN'), (u'tool', 'NN'), (u'sql', 'NN'), (u'server', 'NN'), (u'manag', 'NN'), (u'studio', 'NN'), (u'list', 'NN'), (u'content', 'NN'), (u'tabl', 'NN'), (u'conveni', 'NN'), (u'way', 'NN'), (u'sql', 'NN'), (u'manag', 'NN'), (u'studio', 'NN'), (u'"design"', 'NN'), (u'mode', 'NN'), (u'tabl', 'NN'), (u'drag', 'NN'), (u'order', 'NN'), (u'column', 'NN'), (u'id', 'NN'), (u'abl', 'NN'), (u'raw', 'NN'), (u'sql', 'NN'), (u'perform', 'NN'), (u'order', 'NN'), (u'script', 'NN'), (u'command', 'NN'), (u'line', 'NN')], [(u'modifi', 'NN'), (u'xfdl', 'NN'), (u'file', 'NN'), (u'updat', 'NN'), (u'xfdl', 'NN'), (u'file', 'NN'), (u'extens', 'NNS'), (u'identifi', 'NN'), (u'xfdl', 'NN'), (u'format', 'NN'), (u'document', 'NN'), (u'file', 'NN'), (u'belong', 'NN'), (u'xml-base', 'NN'), (u'document', 'NN'), (u'templat', 'NN'), (u'format', 'NN'), (u'standard', 'NN'), (u'format', 'NN'), (u'exactli', 'NN'), (u'xml', 'NN'), (u'file', 'NN'), (u'format', 'NN'), (u'howev', 'NN'), (u'contain', 'NN'), (u'level', 'NN'), (u'encrypt', 'NN'), (u'use', 'NN'), (u'secur', 'NN'), (u'commun', 'NN'), (u'view', 'NN'), (u'xfdl', 'NN'), (u'file', 'NN'), (u'use', 'NN'), (u'file', 'NN'), (u'viewer', 'NN'), (u'found', 'NN'), (u'modifi', 'NN'), (u'file', 'NN'), (u'filesave/sav', 'NN'), (u'id', 'NN'), (u'howev', 'NN'), (u'modifi', 'NN'), (u'file', 'NN'), (u'fli', 'NN'), (u'suggest', 'NN'), (u'possibl', 'NN'), (u'updat', 'NN'), (u'success', 'NN'), (u'decod', 'NN'), (u'unzip', 'NN'), (u'xfdl', 'NN'), (u'xml', 'NN'), (u'file', 'NN'), (u'edit', 'NN'), (u'look', 'NN'), (u'way', 'NN'), (u're-encod', 'NN'), (u'modifi', 'NN'), (u'xml', 'NN'), (u'file', 'NN'), (u'base-gzip', 'NN'), (u'use', 'NN'), (u'rubi', 'NN'), (u'command', 'NN'), (u'line', 'NN')], [(u'folder', 'NN'), (u'project', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'solut', 'NN'), (u'splite', 'NN'), (u'solut', 'NN'), (u'logic', 'NN'), (u'layer', 'NN'), (u'best', 'JJS'), (u'use', 'NN'), (u'separ', 'NN'), (u'project', 'NN'), (u'group', 'NN'), (u'folder', 'NN')], [(u'xml', 'NN'), (u'editing/view', 'NN'), (u'softwar', 'NN'), (u'softwar', 'NN'), (u'recommend', 'NN'), (u'work', 'NN'), (u'edit', 'NN'), (u'larg', 'NN'), (u'xml', 'NN'), (u'schema', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'window', 'NN'), (u'linux', 'NN'), (u'softwar', 'NN'), (u'doesnt', 'NN'), (u'cross', 'NN'), (u'platform', 'NN'), (u'want', 'NN'), (u'suggest', 'NN'), (u'help', 'NN'), (u'deal', 'NN'), (u'huge', 'JJ'), (u'xml', 'NN'), (u'file', 'NN')], [(u'good', 'JJ'), (u'technolog', 'NN'), (u'podcast', 'NN'), (u'ye', 'NN'), (u'podcast', 'NN'), (u'nice', 'JJ'), (u'littl', 'NN'), (u'audiobook', 'NN'), (u'listen', 'NN'), (u'way', 'NN'), (u'work', 'NN'), (u'current', 'JJ'), (u'amount', 'NN'), (u'podcast', 'NN'), (u'search', 'NN'), (u'needl', 'NN'), (u'haystack', 'NN'), (u'haystack', 'NN'), (u'internet', 'NN'), (u'fill', 'NN'), (u'mani', 'NN'), (u'"hot', 'NN'), (u'new', 'JJ'), (u'gadgets"', 'NN'), (u'stuff', 'NN'), (u'mainli', 'NN'), (u'net', 'NN'), (u'nowaday', 'NN'), (u'mayb', 'NN'), (u'anyon', 'NN'), (u'good', 'JJ'), (u'podcast', 'NN'), (u'peopl', 'NN'), (u'regard', 'NN'), (u'whole', 'JJ'), (u'softwar', 'NN'), (u'lifecycl', 'NN'), (u'unit', 'NN'), (u'test', 'NN'), (u'contin', 'NN'), (u'integr', 'NN'), (u'document', 'NN'), (u'deploy', 'NN'), (u'guy', 'NN'), (u'gal', 'NN'), (u'listen', 'NN'), (u'pleas', 'NNS'), (u'note', 'NN'), (u'categor', 'NN'), (u'subject', 'NN'), (u'%', 'NN'), (u'accur', 'NN'), (u'mani', 'NN'), (u'podcast', 'NN'), (u'cover', 'NN'), (u'sever', 'NN'), (u'area', 'NN'), (u'categor', 'NN'), (u'consid', 'NN'), (u'"main"', 'NN'), (u'area', 'NN'), (u'gener', 'NN'), (u'softwar', 'NN'), (u'engin', 'NN'), (u'/', 'NN'), (u'product', 'NN'), (u'stack', 'NN'), (u'overflow', 'NN'), (u'inact', 'NN'), (u'good', 'JJ'), (u'listen', 'NN'), (u'tekpub', 'NN'), (u'requir', 'NN'), (u'paid', 'NN'), (u'subscript', 'NN'), (u'softwar', 'NN'), (u'engin', 'NN'), (u'radio', 'NN'), (u'folder', 'NN'), (u'perspect', 'NN'), (u'dr', 'NN'), (u'dobb', 'NN'), (u'video', 'NN'), (u'feed', 'NN'), (u'pragmat', 'NN'), (u'podcast', 'NN'), (u'inact', 'NN'), (u'matter', 'NN'), (u'agil', 'NN'), (u'toolkit', 'NN'), (u'podcast', 'NN'), (u'stack', 'NN'), (u'trace', 'NN'), (u'inact', 'NN'), (u'parley', 'NN'), (u'techz', 'NN'), (u'startup', 'NN'), (u'success', 'NN'), (u'podcast', 'NN'), (u'berkeley', 'NN'), (u'cs', 'NN'), (u'class', 'NN'), (u'lectur', 'NN'), (u'floss', 'NN'), (u'weekli', 'NN'), (u'life', 'NN'), (u'net', 'NN'), (u'/', 'NN'), (u'visual', 'JJ'), (u'studio', 'NN'), (u'/', 'NN'), (u'microsoft', 'NN'), (u'herd', 'NN'), (u'code', 'NN'), (u'hanselminut', 'NN'), (u'net', 'NN'), (u'rocks!', 'NN'), (u'deep', 'NN'), (u'fri', 'NN'), (u'byte', 'NN'), (u'altnet', 'NN'), (u'podcast', 'NN'), (u'inact', 'NN'), (u'polymorph', 'NN'), (u'podcast', 'NN'), (u'inconsist', 'NN'), (u'sparkl', 'NN'), (u'client', 'NN'), (u'silverlight', 'NN'), (u'podcast', 'NN'), (u'dnrtv!', 'NN'), (u'spaghetti', 'NNS'), (u'code', 'NN'), (u'aspnet', 'NN'), (u'podcast', 'NN'), (u'channel', 'NNS'), (u'radio', 'NN'), (u'tf', 'NN'), (u'powerscript', 'NN'), (u'podcast', 'NN'), (u'thirsti', 'NN'), (u'eleg', 'NN'), (u'code', 'NN'), (u'inact', 'NN'), (u'connectedshow', 'NN'), (u'crafti', 'NN'), (u'coder', 'NN'), (u'code', 'NN'), (u'qa', 'NN'), (u'jqueri', 'NN'), (u'yayqueri', 'NN'), (u'offici', 'NN'), (u'jqueri', 'NN'), (u'podcast', 'NN'), (u'java', 'NN'), (u'/', 'NN'), (u'groovi', 'NN'), (u'java', 'NN'), (u'poss', 'NN'), (u'grail', 'NN'), (u'podcast', 'NN'), (u'java', 'NN'), (u'technolog', 'NN'), (u'insid', 'NN'), (u'basement', 'NN'), (u'coder', 'NN'), (u'rubi', 'NN'), (u'/', 'NN'), (u'rail', 'NN'), (u'railscast', 'NN'), (u'rail', 'NN'), (u'envi', 'NN'), (u'rubi', 'NN'), (u'rail', 'NN'), (u'podcast', 'NN'), (u'rubivers', 'NNS'), (u'rubi', 'NN'), (u'web', 'NN'), (u'design', 'NN'), (u'/', 'NN'), (u'javascript', 'NN'), (u'/', 'NN'), (u'ajax', 'NN'), (u'webdevradio', 'NN'), (u'boagworld', 'NN'), (u'rissington', 'NN'), (u'podcast', 'NN'), (u'ajaxian', 'JJ'), (u'yui', 'NN'), (u'theater', 'NN'), (u'unix', 'NN'), (u'/', 'NN'), (u'linux', 'NN'), (u'/', 'NN'), (u'mac', 'NN'), (u'/', 'NN'), (u'iphon', 'NN'), (u'mac', 'NN'), (u'network', 'NN'), (u'hacker', 'NN'), (u'public', 'NN'), (u'radio', 'NN'), (u'linux', 'NN'), (u'outlaw', 'NN'), (u'mac', 'NN'), (u'os', 'NN'), (u'lugradio', 'NN'), (u'linux', 'NN'), (u'radio', 'NN'), (u'show', 'NN'), (u'inact', 'NN'), (u'linux', 'NN'), (u'action', 'NN'), (u'show!', 'NN'), (u'linux', 'NN'), (u'kernel', 'NNS'), (u'mail', 'NN'), (u'list', 'NN'), (u'lkml', 'NN'), (u'summari', 'NN'), (u'podcast', 'NN'), (u'stanford', 'NN'), (u'iphon', 'NN'), (u'program', 'NN'), (u'class', 'NN'), (u'advanc', 'NN'), (u'iphon', 'NN'), (u'cours', 'NNS'), (u'madison', 'NN'), (u'area', 'NN'), (u'technic', 'NN'), (u'colleg', 'NN'), (u'wwdc', 'NN'), (u'session', 'NN'), (u'video', 'NN'), (u'requir', 'NN'), (u'appl', 'NN'), (u'registr', 'NN'), (u'system', 'NN'), (u'administr', 'NN'), (u'secur', 'NN'), (u'infrastructur', 'NN'), (u'runa', 'NN'), (u'radio', 'NN'), (u'secur', 'NN'), (u'now!', 'NN'), (u'crypto-gram', 'NN'), (u'secur', 'NN'), (u'podcast', 'NN'), (u'hak', 'NN'), (u'vmware', 'NN'), (u'vmtn', 'NN'), (u'window', 'NN'), (u'weekli', 'NN'), (u'pauldotcom', 'NN'), (u'secur', 'NN'), (u'regist', 'NN'), (u'semi-coher', 'NN'), (u'comput', 'NN'), (u'feathercast', 'NN'), (u'gener', 'NN'), (u'tech', 'NN'), (u'/', 'NN'), (u'busi', 'NN'), (u'tekzilla', 'NN'), (u'week', 'NN'), (u'tech', 'NN'), (u'guardian', 'NN'), (u'tech', 'NN'), (u'weekli', 'NN'), (u'pcmag', 'NN'), (u'radio', 'NN'), (u'podcast', 'NN'), (u'inact', 'NN'), (u'entrepreneurship', 'NN'), (u'corner', 'NN'), (u'manag', 'NN'), (u'tool', 'NN'), (u'/', 'NN'), (u'misc', 'NN'), (u'/', 'NN'), (u'podcast', 'NN'), (u'network', 'NN'), (u'convers', 'NNS'), (u'retrobit', 'NN'), (u'podcast', 'NN'), (u'agenda', 'NN'), (u'netcast', 'NN'), (u'cranki', 'NN'), (u'geek', 'NN'), (u'command', 'NN'), (u'line', 'NN'), (u'freelanc', 'NN'), (u'radio', 'NN'), (u'ibm', 'NN'), (u'developerwork', 'NN'), (u'regist', 'NN'), (u'open', 'JJ'), (u'season', 'NN'), (u'drunk', 'NN'), (u'retir', 'NN'), (u'technometria', 'NNS'), (u'sod', 'NN'), (u'radionerd', 'NN'), (u'hacker', 'NN'), (u'medley', 'NN')], [(u'learn', 'NN'), (u'write', 'NN'), (u'compil', 'NN'), (u'prefer', 'NN'), (u'languag', 'NN'), (u'c/c++', 'NN'), (u'java', 'NN'), (u'rubi', 'NN'), (u'look', 'NN'), (u'help', 'NN'), (u'books/tutori', 'NN'), (u'write', 'NN'), (u'compil', 'NN'), (u'simpli', 'NN'), (u'educ', 'NN'), (u'purpos', 'NN'), (u'familiar', 'JJ'), (u'c/c++', 'NN'), (u'java', 'NN'), (u'rubi', 'NN'), (u'prefer', 'NN'), (u'resourc', 'NN'), (u'involv', 'NN'), (u'good', 'JJ'), (u'resourc', 'NN'), (u'accept', 'NN')], [(u'calcul', 'NN'), (u'statist', 'NN'), (u'im', 'NN'), (u'write', 'NN'), (u'app', 'NN'), (u'help', 'NN'), (u'facilit', 'NN'), (u'research', 'NN'), (u'part', 'NN'), (u'involv', 'NN'), (u'statist', 'NN'), (u'calcul', 'NN'), (u'right', 'NN'), (u'research', 'NN'), (u'use', 'NN'), (u'program', 'NN'), (u'call', 'NN'), (u'spss', 'NN'), (u'part', 'NN'), (u'output', 'NN'), (u'care', 'NN'), (u'look', 'NN'), (u'theyr', 'NN'), (u'realli', 'NN'), (u'concern', 'NN'), (u'valu', 'NN'), (u'problem', 'NN'), (u'background', 'NN'), (u'statist', 'NN'), (u'cant', 'NN'), (u'figur', 'NN'), (u'test', 'NN'), (u'call', 'NN'), (u'calcul', 'NN'), (u'thought', 'NN'), (u'valu', 'NN'), (u'result', 'NN'), (u'f-test', 'NN'), (u'step', 'NN'), (u'wikipedia', 'NN'), (u'result', 'NN'), (u'differ', 'NN')], [(u'aspnet', 'NN'), (u'built', 'NN'), (u'user', 'NN'), (u'profil', 'NN'), (u'vs', 'NN'), (u'old', 'JJ'), (u'stile', 'NN'), (u'user', 'NN'), (u'class/tabl', 'NN'), (u'look', 'NN'), (u'guidanc', 'NN'), (u'regard', 'NN'), (u'best', 'JJS'), (u'practic', 'JJ'), (u'use', 'NN'), (u'profil', 'NN'), (u'featur', 'NN'), (u'aspnet', 'NN'), (u'decid', 'NN'), (u'kept', 'NN'), (u'built-in', 'NN'), (u'user', 'NN'), (u'profil', 'NN'), (u'creat', 'NN'), (u'db', 'NN'), (u'tabl', 'NN'), (u'column', 'NN'), (u'desir', 'NN'), (u'field', 'NN'), (u'exampl', 'NN'), (u'user', 'NN'), (u'zip', 'NN'), (u'code', 'NN'), (u'zip', 'NN'), (u'code', 'NN'), (u'tabl', 'NN'), (u'webconfig', 'NN'), (u'xml', 'NN'), (u'profil', 'NN'), (u'access', 'NN'), (u'user', 'NN'), (u'profil', 'NN'), (u'aspnet', 'NN'), (u'mechan', 'NN'), (u'pros/con', 'NN'), (u'think', 'NN'), (u'sinc', 'NN'), (u'dont', 'NN'), (u'profil', 'NN'), (u'bit', 'NN'), (u'matrix', 'NN'), (u'right', 'NN'), (u'probabl', 'NN'), (u'whatev', 'NN'), (u'want', 'NN'), (u'tabl', 'NN'), (u'rout', 'NN'), (u'eg', 'NN'), (u'sql', 'NN'), (u'user', 'NN'), (u'zip', 'NN'), (u'code', 'NN'), (u'current', 'JJ'), (u'user;', 'NN'), (u'dont', 'NN'), (u'use', 'NN'), (u'aspnet', 'NN'), (u'profil', 'NN')], [(u'pass', 'NN'), (u'enumer', 'NN'), (u'valu', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'dilemma', 'NN'), (u'basic', 'JJ'), (u'share', 'NN'), (u'enumer', 'NN'), (u'applic', 'NN'), (u'user', 'NN'), (u'upload', 'NN'), (u'document', 'NN'), (u'front-end', 'NN'), (u'applic', 'NN'), (u'web', 'NN'), (u'applic', 'NN'), (u'call', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'back-end', 'NN'), (u'applic', 'NN'), (u'pass', 'NN'), (u'document', 'NN'), (u'back-end', 'NN'), (u'app', 'NN'), (u'document', 'NN'), (u'insert', 'NN'), (u'row', 'NN'), (u'document', 'NN'), (u'tabl', 'NN'), (u'document', 'NN'), (u'type', 'NN'), (u'possibl', 'NN'), (u'document', 'NN'), (u'type', 'NN'), (u'invoic', 'NN'), (u'contract', 'NN'), (u'etc', 'NN'), (u'pass', 'NN'), (u'paramet', 'NN'), (u'web', 'NN'), (u'servic', 'NN'), (u'uploaddocu', 'NN'), (u'method', 'NN'), (u'question', 'NN'), (u'type', 'NN'), (u'possibl', 'NN'), (u'valu', 'NN'), (u'paramet', 'NN'), (u'sinc', 'NN'), (u'need', 'NN'), (u'hardcod', 'NN'), (u'valu', 'NN'), (u'applic', 'NN'), (u'think', 'NN'), (u'ok', 'NN'), (u'use', 'NN'), (u'descript', 'NN'), (u'string', 'NN'), (u'invoic', 'NN'), (u'contract', 'NN'), (u'workord', 'NN'), (u'signedworkord', 'NN'), (u'mayb', 'NN'), (u'approach', 'NN'), (u'creat', 'NN'), (u'documenttyp', 'NN'), (u'enumer', 'NN'), (u'applic', 'NN'), (u'reproduc', 'NN'), (u'second', 'JJ'), (u'applic', 'NN'), (u'pass', 'NN'), (u'correspond', 'NN'), (u'integ', 'NN'), (u'valu', 'NN'), (u'web', 'NN'), (u'servic', 'NN')], [(u'singl', 'NN'), (u'influenti', 'NN'), (u'book', 'NN'), (u'everi', 'NN'), (u'programm', 'NN'), (u'read', 'NN'), (u'time', 'NN'), (u'tell', 'NN'), (u'read', 'NN'), (u'specif', 'NN'), (u'book', 'NN'), (u'begin', 'NN'), (u'career', 'NN'), (u'book', 'NN'), (u'list', 'NN'), (u'vari', 'NN'), (u'cover', 'NN'), (u'wide', 'JJ'), (u'rang', 'NN'), (u'thing', 'NN'), (u'search', 'NN'), (u'use', 'NN'), (u'search', 'NN'), (u'box', 'NN'), (u'upper-right', 'JJ'), (u'corner', 'NN'), (u'search', 'NN'), (u'answer', 'NN'), (u'current', 'JJ'), (u'question', 'NN'), (u'use', 'NN'), (u'exampl', 'NN')], [(u'experi', 'NN'), (u'protocol', 'NN'), (u'buffer', 'NN'), (u'look', 'NN'), (u'inform', 'NN'), (u'googl', 'NN'), (u'protocol', 'NN'), (u'buffer', 'NN'), (u'data', 'NNS'), (u'interchang', 'NN'), (u'format', 'NN'), (u'anyon', 'NN'), (u'play', 'NN'), (u'code', 'NN'), (u'creat', 'NN'), (u'project', 'NN'), (u'im', 'NN'), (u'current', 'JJ'), (u'use', 'NN'), (u'xml', 'NN'), (u'python', 'NN'), (u'project', 'NN'), (u'structur', 'NN'), (u'content', 'NN'), (u'creat', 'NN'), (u'hand', 'NN'), (u'text', 'NN'), (u'editor', 'NN'), (u'wonder', 'NN'), (u'gener', 'NN'), (u'opinion', 'NN'), (u'protocol', 'NN'), (u'buffer', 'NN'), (u'user-fac', 'JJ'), (u'input', 'NN'), (u'format', 'NN'), (u'speed', 'NN'), (u'breviti', 'NN'), (u'benefit', 'NN'), (u'definit', 'NN'), (u'seem', 'NN'), (u'mani', 'NN'), (u'factor', 'NN'), (u'actual', 'JJ'), (u'gener', 'NN'), (u'process', 'NN'), (u'data', 'NNS')], [(u'match', 'NN'), (u'use', 'NN'), (u'preg_replac', 'NN'), (u'php', 'NN'), (u'tri', 'NN'), (u'grab', 'NN'), (u'capit', 'NN'), (u'letter', 'NN'), (u'coupl', 'NN'), (u'word', 'NN'), (u'wrap', 'NN'), (u'span', 'NN'), (u'tag', 'NN'), (u'use', 'NN'), (u'preg_replac', 'NN'), (u'extract', 'NN'), (u'wrap', 'NN'), (u'purpos', 'NN'), (u'output', 'NN'), (u'anyth', 'NN')], [(u'net', 'NN'), (u'unit', 'NN'), (u'test', 'NN'), (u'packag', 'NN'), (u'bit', 'NN'), (u'net', 'NN'), (u'few-year', 'JJ'), (u'use', 'NN'), (u'full-tim', 'NN'), (u'wonder', 'NN'), (u'good', 'JJ'), (u'unit', 'NN'), (u'test', 'NN'), (u'packag', 'NN'), (u'day', 'NN'), (u'im', 'NN'), (u'familiar', 'JJ'), (u'nunit', 'NN'), (u'year', 'NN'), (u'play', 'NN'), (u'briefli', 'NN'), (u'ironrubi', 'NN'), (u'goal', 'NN'), (u'someth', 'NN'), (u'rspec', 'NN'), (u'dont', 'NN'), (u'much', 'JJ'), (u'realis', 'NN'), (u'googl', 'NN'), (u'call', 'NN'), (u'day', 'NN'), (u'believ', 'NN'), (u'im', 'NN'), (u'inform', 'NN'), (u'respons', 'NNS'), (u'ask', 'NN'), (u'question', 'NN'), (u'suggest', 'NN')], [(u'ternari', 'NN'), (u'express', 'NN'), (u'work', 'NN'), (u'tri', 'NN'), (u'set', 'NN'), (u'flag', 'NN'), (u'show', 'NN'), (u'hide', 'NN'), (u'page', 'NN'), (u'element', 'NN'), (u'display', 'NN'), (u'express', 'NN'), (u'fals', 'NNS')], [(u'feder', 'NN'), (u'sync', 'NN'), (u'subvers', 'NNS'), (u'server', 'NN'), (u'possibl', 'NN'), (u'creat', 'NN'), (u'"federated"', 'NN'), (u'subvers', 'NNS'), (u'server', 'NN'), (u'server', 'NN'), (u'locat', 'NN'), (u'locat', 'NN'), (u'b', 'NN'), (u'sync', 'NN'), (u'local', 'JJ'), (u'version', 'NN'), (u'repositori', 'NN'), (u'automat', 'NN'), (u'way', 'NN'), (u'someon', 'NN'), (u'locat', 'NN'), (u'interact', 'NN'), (u'repositori', 'NN'), (u'access', 'NN'), (u'respect', 'NN'), (u'local', 'JJ'), (u'server', 'NN'), (u'therefor', 'NN'), (u'faster', 'NN'), (u'respons', 'NNS'), (u'time', 'NN')], [(u'menu', 'NN'), (u'requir', 'NN'), (u'user', 'NN'), (u'press', 'NN'), (u'enter', 'NN'), (u'select', 'NN'), (u'ive', 'JJ'), (u'menu', 'NN'), (u'python', 'NN'), (u'part', 'NN'), (u'easi', 'NN'), (u'im', 'NN'), (u'use', 'NN'), (u'select', 'NN'), (u'user', 'NN'), (u'problem', 'NN'), (u'input', 'NN'), (u'requir', 'NN'), (u'user', 'NN'), (u'press', 'NN'), (u'enter', 'NN'), (u'select', 'NN'), (u'way', 'NN'), (u'program', 'NN'), (u'act', 'NN'), (u'immedi', 'NN'), (u'keystrok', 'NN'), (u'ive', 'JJ'), (u'great', 'JJ'), (u'someth', 'NN')], [(u'wiggl', 'NN'), (u'mous', 'JJ'), (u'ok', 'NN'), (u'bit', 'NN'), (u'vaniti', 'NN'), (u'app', 'NN'), (u'situat', 'NN'), (u'today', 'NN'), (u'work', 'NN'), (u'train', 'NN'), (u'class', 'NN'), (u'machin', 'NN'), (u'set', 'NN'), (u'lock', 'NN'), (u'everi', 'NN'), (u'minut', 'NN'), (u'trainer', 'NN'), (u'excit', 'NN'), (u'talk', 'NN'), (u'oppos', 'NN'), (u'chang', 'NN'), (u'slide', 'NN'), (u'machin', 'NN'), (u'lock', 'NN'), (u'id', 'NN'), (u'write', 'NN'), (u'teeni', 'NN'), (u'app', 'NN'), (u'taskbar', 'NN'), (u'icon', 'NN'), (u'move', 'NN'), (u'mous', 'JJ'), (u'pixel', 'NN'), (u'everi', 'NN'), (u'minut', 'NN'), (u'way', 'NN'), (u'delphi', 'NN'), (u'strong', 'JJ'), (u'languag', 'NN'), (u'im', 'NN'), (u'move', 'NN'), (u'c#', 'NN'), (u'work', 'NN'), (u'id', 'NN'), (u'path', 'NN'), (u'least', 'JJS'), (u'resist', 'NN')], [(u'locat', 'NN'), (u'text', 'NN'), (u'imag', 'NN'), (u'current', 'JJ'), (u'work', 'NN'), (u'project', 'NN'), (u'goal', 'NN'), (u'locat', 'NN'), (u'text', 'NN'), (u'imag', 'NN'), (u'ocr', 'NN'), (u'text', 'NN'), (u'intent', 'NN'), (u'want', 'NN'), (u'basic', 'JJ'), (u'bound', 'NN'), (u'text', 'NN'), (u'imag', 'NN'), (u'use', 'NN'), (u'aforgenet', 'NN'), (u'imag', 'NN'), (u'compon', 'NN'), (u'manipul', 'NN'), (u'assist', 'NN'), (u'sens', 'NNS'), (u'updat', 'NN'), (u'//', 'NN'), (u'ive', 'JJ'), (u'sinc', 'NN'), (u'rout', 'NN'), (u'project', 'NN'), (u'howev', 'NN'), (u'attempt', 'NN'), (u'text', 'NN'), (u'use', 'NN'), (u'modi', 'NN'), (u'microsoft', 'NN'), (u'offic', 'NN'), (u'document', 'NN'), (u'imag', 'NN'), (u'ocr', 'NN'), (u'imag', 'NN'), (u'pull', 'NN'), (u'text', 'NN'), (u'eas', 'NNS')], [(u'python', 'NN'), (u'os', 'NN'), (u'need', 'NN'), (u'look', 'NN'), (u'im', 'NN'), (u'window', 'NN'), (u'unix', 'NN'), (u'etc', 'NN')], [(u'tool', 'NN'), (u'peopl', 'NN'), (u'use', 'NN'), (u'creat', 'NN'), (u'data', 'NNS'), (u'dictionari', 'NN'), (u'project', 'NN'), (u'work', 'NN'), (u'coupl', 'NN'), (u'databas', 'NN'), (u'tabl', 'NN'), (u'column', 'NN'), (u'databas', 'NN'), (u'descript', 'NN'), (u'set', 'NN'), (u'extend', 'NN'), (u'properti', 'NN'), (u'sql', 'NN'), (u'part', 'NN'), (u'document', 'NN'), (u'client', 'NN'), (u'need', 'NN'), (u'produc', 'NN'), (u'data', 'NNS'), (u'dictionari', 'NN'), (u'show', 'NN'), (u'tabl', 'NN'), (u'column', 'NN'), (u'collect', 'NN'), (u'meta', 'NN'), (u'data', 'NNS'), (u'data-typ', 'NN'), (u'option', 'NN'), (u'constraint', 'NN'), (u'anyon', 'NN'), (u'use', 'NN'), (u'tool', 'NN'), (u'automat', 'NN'), (u'creat', 'NN'), (u'kind', 'NN'), (u'document', 'NN'), (u'tool', 'NN'), (u'use', 'NN'), (u'use', 'NN'), (u'data', 'NNS'), (u'dictionari', 'NN'), (u'creator', 'NN'), (u'awesom', 'NN'), (u'doesnt', 'NN'), (u'seem', 'NN'), (u'data', 'NNS'), (u'type', 'NN'), (u'option', 'NN'), (u'want', 'NN'), (u'custom', 'NN'), (u'field', 'NN'), (u'fill', 'NN')], [(u'tripl', 'NN'), (u'quot', 'NN'), (u'delimit', 'NN'), (u'databound', 'NN'), (u'javascript', 'NN'), (u'string', 'NN'), (u'paramet', 'NN'), (u'aspnet', 'NN'), (u'delimit', 'NN'), (u'javascript', 'NN'), (u'databound', 'NN'), (u'string', 'NN'), (u'paramet', 'NN'), (u'anchor', 'NN'), (u'onclick', 'NN'), (u'event', 'NN'), (u'anchor', 'NN'), (u'tag', 'NN'), (u'aspnet', 'NN'), (u'repeat', 'NN'), (u'control', 'NN'), (u'onclick', 'NN'), (u'event', 'NN'), (u'anchor', 'NN'), (u'contain', 'NN'), (u'call', 'NN'), (u'javascript', 'NN'), (u'function', 'NN'), (u'javascript', 'NN'), (u'funciton', 'NN'), (u'string', 'NN'), (u'input', 'NN'), (u'paramet', 'NN'), (u'string', 'NN'), (u'paramet', 'NN'), (u'popul', 'NN'), (u'databound', 'NN'), (u'valu', 'NN'), (u'repeat', 'NN'), (u'need', 'NN'), (u'doubl', 'NN'), (u'quot', 'NN'), (u'containerdataitem', 'NN'), (u'need', 'NN'), (u'singl', 'NN'), (u'quot', 'NN'), (u'onclick', 'NN'), (u'need', 'NN'), (u'delimit', 'NN'), (u'tripl', 'NN'), (u'quot', 'NN'), (u'input', 'NN'), (u'string', 'NN'), (u'paramet', 'NN'), (u'javascript', 'NN'), (u'function', 'NN'), (u'call', 'NN'), (u'sinc', 'NN'), (u'cant', 'NN'), (u'use', 'NN'), (u'singl', 'NN'), (u'quot', 'NN'), (u'ensur', 'NN'), (u'javascript', 'NN'), (u'function', 'NN'), (u'input', 'NN'), (u'paramet', 'NN'), (u'string', 'NN'), (u'integ', 'NN'), (u'extra', 'JJ'), (u'quot', 'NN'), (u'input', 'NN'), (u'string', 'NN'), (u'paramet', 'NN'), (u'javascript', 'NN'), (u'function', 'NN'), (u'think', 'NN'), (u'im', 'NN'), (u'pass', 'NN'), (u'integ', 'NN'), (u'cheer', 'NN'), (u'advanc', 'NN'), (u'knowledg', 'NN'), (u'drop', 'NN'), (u'anchor', 'NN'), (u'javascript', 'NN')], [(u'csv', 'NN'), (u'file', 'NN'), (u'import', 'NN'), (u'net', 'NN'), (u'realiz', 'NN'), (u'newbi', 'NN'), (u'question', 'NN'), (u'im', 'NN'), (u'look', 'NN'), (u'simpl', 'NN'), (u'solut', 'NN'), (u'seem', 'NN'), (u'best', 'JJS'), (u'way', 'NN'), (u'import', 'NN'), (u'csv', 'NN'), (u'file', 'NN'), (u'strongly-typ', 'NN'), (u'data', 'NNS'), (u'structur', 'NN'), (u'simpl', 'NN'), (u'=', 'NN')], [(u'map', 'NN'), (u'latitude/longitud', 'NN'), (u'distort', 'NN'), (u'map', 'NN'), (u'bunch', 'NN'), (u'latitude/longitud', 'NN'), (u'pair', 'NN'), (u'map', 'NN'), (u'x/i', 'NN'), (u'coordin', 'NN'), (u'geograph', 'NN'), (u'distort', 'NN'), (u'map', 'NN'), (u'latitude/longitud', 'NN'), (u'pair', 'NN'), (u'want', 'NN'), (u'plot', 'NN'), (u'map', 'NN'), (u'best', 'JJS'), (u'possibl', 'NN'), (u'decid', 'NN'), (u'creat', 'NN'), (u'system', 'NN'), (u'linear', 'NN'), (u'equat', 'NN'), (u'nearest', 'JJS'), (u'lat/long', 'NN'), (u'point', 'NN'), (u'comput', 'NN'), (u'transform', 'NN'), (u'doesnt', 'NN'), (u'work', 'NN'), (u'sinc', 'NN'), (u'linear', 'NN'), (u'system', 'NN'), (u'cant', 'NN'), (u'use', 'NN'), (u'nearbi', 'NN'), (u'point', 'NN'), (u'cant', 'NN'), (u'assum', 'NN'), (u'north', 'NN'), (u'exist', 'NN'), (u'lat/long->x/i', 'NN'), (u'map', 'NN'), (u'edit', 'NN'), (u'mercat', 'NN'), (u'project', 'NN'), (u'anyth', 'NN'), (u'arbitrarili', 'NN'), (u'distort', 'NN'), (u'readabl', 'NN'), (u'think', 'NN'), (u'subway', 'NN'), (u'map', 'NN'), (u'want', 'NN'), (u'use', 'NN'), (u'nearest', 'JJS'), (u'map', 'NN'), (u'distort', 'NN'), (u'part', 'NN'), (u'map', 'NN'), (u'doesnt', 'NN'), (u'affect', 'NN'), (u'map', 'NN'), (u'im', 'NN'), (u'tri', 'NN'), (u'comput', 'NN'), (u'entir', 'NN'), (u'map', 'NN'), (u'small', 'JJ'), (u'geograph', 'NN'), (u'area', 'NN'), (u'need', 'NN'), (u'worri', 'NN'), (u'globe--flat-earth', 'NN'), (u'assumpt', 'NN'), (u'good', 'JJ')], [(u'redirecttoact', 'NN'), (u'aspnet', 'NN'), (u'mvc', 'NN'), (u'request', 'NN'), (u'data', 'NNS'), (u'use', 'NN'), (u'aspnet', 'NN'), (u'mvc', 'NN'), (u'situat', 'NN'), (u'form', 'NN'), (u'submiss', 'NN'), (u'requir', 'NN'), (u'situat', 'NN'), (u'encount', 'NN'), (u'valid', 'JJ'), (u'error', 'NN'), (u'form', 'NN'), (u'submiss', 'NN'), (u'need', 'NN'), (u'redirect', 'NN'), (u'form', 'NN'), (u'url', 'NN'), (u'reflect', 'NN'), (u'url', 'NN'), (u'form', 'NN'), (u'action', 'NN'), (u'page', 'NN'), (u'submit', 'NN'), (u'requir', 'NN'), (u'form', 'NN'), (u'contain', 'NN'), (u'origin', 'NN'), (u'ed', 'NN'), (u'data', 'NNS'), (u'user', 'NN'), (u'conveni', 'NN'), (u'valid', 'JJ'), (u'purpos', 'NN'), (u'pass', 'NN'), (u'data', 'NNS'), (u'redirecttoact', 'NN'), (u'use', 'NN'), (u'viewdata', 'NNS'), (u'paramet', 'NN'), (u'paramet', 'NN'), (u'chang', 'NN'), (u'paramet', 'NN')], [(u'multipl', 'NN'), (u'datacontext', 'NN'), (u'class', 'NN'), (u'appropri', 'NN'), (u'order', 'NN'), (u'fulli', 'NN'), (u'use', 'NN'), (u'linqtosql', 'NN'), (u'aspnet', 'NN'), (u'applic', 'NN'), (u'necessari', 'NN'), (u'creat', 'NN'), (u'datacontext', 'NN'), (u'class', 'NN'), (u'usual', 'JJ'), (u'use', 'NN'), (u'design', 'NN'), (u'vs', 'NN'), (u'ui', 'NN'), (u'perspect', 'NN'), (u'datacontext', 'NN'), (u'design', 'NN'), (u'section', 'NN'), (u'databas', 'NN'), (u'expos', 'NN'), (u'linqtosql', 'NN'), (u'integr', 'NN'), (u'set', 'NN'), (u'orm', 'NN'), (u'featur', 'NN'), (u'linqtosql', 'NN'), (u'question', 'NN'), (u'set', 'NN'), (u'project', 'NN'), (u'use', 'NN'), (u'larg', 'NN'), (u'databas', 'NN'), (u'tabl', 'NN'), (u'interconnect', 'NN'), (u'way', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'inclin', 'NN'), (u'huge', 'JJ'), (u'datacontext', 'NN'), (u'class', 'NN'), (u'model', 'NN'), (u'entir', 'NN'), (u'databas', 'NN'), (u'way', 'NN'), (u'theori', 'NN'), (u'dont', 'NN'), (u'need', 'NN'), (u'practic', 'JJ'), (u'use', 'NN'), (u'foreign', 'JJ'), (u'key', 'NN'), (u'connect', 'NN'), (u'gener', 'NN'), (u'linqtosql', 'NN'), (u'easili', 'NN'), (u'relat', 'NN'), (u'object', 'NN'), (u'code', 'NN'), (u'insert', 'NN'), (u'relat', 'NN'), (u'object', 'NN'), (u'etc', 'NN'), (u'howev', 'NN'), (u'thought', 'NN'), (u'think', 'NN'), (u'sens', 'NNS'), (u'creat', 'NN'), (u'multipl', 'NN'), (u'datacontext', 'NN'), (u'class', 'NN'), (u'relat', 'NN'), (u'specif', 'NN'), (u'namespac', 'NN'), (u'logic', 'NN'), (u'interrel', 'NN'), (u'section', 'NN'), (u'databas', 'NN'), (u'main', 'JJ'), (u'concern', 'NN'), (u'instanti', 'NN'), (u'dispos', 'NN'), (u'huge', 'JJ'), (u'datacontext', 'NN'), (u'class', 'NN'), (u'time', 'NN'), (u'individu', 'NN'), (u'oper', 'NN'), (u'relat', 'NN'), (u'specif', 'NN'), (u'area', 'NN'), (u'databas', 'NN'), (u'impos', 'NN'), (u'unnecessari', 'NN'), (u'imposit', 'NN'), (u'applic', 'NN'), (u'resourc', 'NN'), (u'addit', 'NN'), (u'easier', 'JJR'), (u'creat', 'NN'), (u'manag', 'NN'), (u'smaller', 'JJR'), (u'datacontext', 'NN'), (u'file', 'NN'), (u'big', 'JJ'), (u'thing', 'NN'), (u'distant', 'NN'), (u'section', 'NN'), (u'databas', 'NN'), (u'navig', 'NN'), (u'linqtosql', 'NN'), (u'chain', 'NN'), (u'relationship', 'NN'), (u'connect', 'NN'), (u'actual', 'JJ'), (u'databas', 'NN'), (u'addit', 'NN'), (u'tabl', 'NN'), (u'class', 'NN'), (u'exist', 'NN'), (u'datacontext', 'NN'), (u'thought', 'NN'), (u'experi', 'NN'), (u'multipl', 'NN'), (u'datacontext', 'NN'), (u'correspond', 'NN'), (u'db', 'NN'), (u'namespac', 'NN'), (u'appropri', 'NN'), (u'place', 'NN'), (u'addit', 'NN'), (u'larg', 'NN'), (u'datacontext', 'NN'), (u'class', 'NN'), (u'correspond', 'NN'), (u'whole', 'JJ'), (u'db', 'NN')], [(u'languag', 'NN'), (u'use', 'NN'), (u'postgresql', 'NN'), (u'trigger', 'NN'), (u'store', 'NN'), (u'procedur', 'NN'), (u'postgresql', 'NN'), (u'interest', 'NN'), (u'support', 'NN'), (u'sever', 'NN'), (u'languag', 'NN'), (u'write', 'NN'), (u'store', 'NN'), (u'procedur', 'NN'), (u'use', 'NN')], [(u'best', 'JJS'), (u'way', 'NN'), (u'avoid', 'NN'), (u'sql', 'NN'), (u'inject', 'NN'), (u'attack', 'NN'), (u'ive', 'JJ'), (u'provid', 'NN'), (u'solut', 'NN'), (u'python', 'NN'), (u'pleas', 'NNS'), (u'flesh', 'NN'), (u'exampl', 'NN'), (u'languag', 'NN')], [(u'cpu', 'NN'), (u'throttl', 'NN'), (u'c++', 'NN'), (u'wonder', 'NN'), (u'eleg', 'NN'), (u'way', 'NN'), (u'set', 'NN'), (u'maximum', 'NN'), (u'cpu', 'NN'), (u'load', 'NN'), (u'particular', 'JJ'), (u'thread', 'NN'), (u'intens', 'NNS'), (u'calcul', 'NN'), (u'right', 'NN'), (u'locat', 'NN'), (u'time', 'NN'), (u'consum', 'NN'), (u'loop', 'NN'), (u'thread', 'NN'), (u'compress', 'NN'), (u'use', 'NN'), (u'hardcod', 'NN'), (u'valu', 'NN'), (u'sure', 'NN'), (u'loop', 'NN'), (u'continu', 'NN'), (u'certain', 'JJ'), (u'period', 'NN'), (u'time', 'NN'), (u'sleep', 'NN'), (u'certain', 'JJ'), (u'minim', 'NN'), (u'time', 'NN'), (u'job', 'NN'), (u'ie', 'NN'), (u'guarante', 'NN'), (u'thread', 'NN'), (u'use', 'NN'), (u'%', 'NN'), (u'cpu', 'NN'), (u'howev', 'NN'), (u'behavior', 'NN'), (u'depend', 'NN'), (u'number', 'NN'), (u'cpu', 'NN'), (u'core', 'NN'), (u'huge', 'JJ'), (u'disadvantag', 'NN'), (u'simpli', 'NN'), (u'ugli', 'NN'), (u'smaller', 'JJR'), (u'disadvantag', 'NN'), (u'idea', 'NN')], [(u'python', 'NN'), (u'differ', 'NN'), (u'use', 'NN'), (u'mani', 'NN'), (u'place', 'NN'), (u'use', 'NN'), (u'interchang', 'NN'), (u'use', 'NN')]]
# In[11]:
'''
Set of all possible tags
'''
def set_of_tags(tag_column):
tags = []
for row in tag_column:
for t in row:
if t not in tags:
tags.append(t)
return tags
# In[13]:
'''
Reads the postag file
'''
def readfile(filename):
f = open(filename,'r')
software_object = []
for line in f.readlines():
print line
# In[12]:
'''
Creating post frame
'''
def create_post_frame(pos_tag_list, tag_column):
posts = []
tags = []
for i in range(len(pos_tag_list)):
post_row = []
ptl = pos_tag_list[i]
tc = tag_column[i]
tags.append(tc)
for p in ptl:
post_row.append(p[0])
posts.append(post_row)
frame = pd.DataFrame({0 : posts,
1 : tags})
return frame
# In[17]:
# c = create_post_frame(ds, p[4])
# In[33]:
# def bic(set_tags, posts, tags):
# corpus = []
# labels = []
# labelset = []
# for post in posts:
# row_p = []
# for p in post:
# p_u = unicode(p, "utf-8")
# row_p.append(p_u)
# corpus.append(row_p)
# for tag in tags:
# row_t = []
# for t in tag:
# t_u = unicode(t, "utf-8")
# row_t.append(t_u)
# labels.append(row_t)
# for st in set_tags:
# st_u = unicode(st, "utf-8")
# labelset.append(st_u)
# llda = LLDA(options.K, options.alpha, options.beta)
# llda.set_corpus(labelset, corpus, labels)
# return llda
# In[34]:
t = set_of_tags(p[4])
# b = BIC(t,p[3],p[4])
# o = open('bic.txt','w')
# o.write(str(b))
# o.close()
print t
print type(p[4])
# In[20]:
# t = set_of_tags(p[4])
# so = [(u'set', 'NN'), (u'form', 'NN'), (u'opac', 'NN'), (u'use', 'NN'), (u'decim', 'NN'), (u'doubl', 'NN'), (u'want', 'NN'), (u'use', 'NN'), (u'track-bar', 'NN'), (u'chang', 'NN'), (u'form', 'NN'), (u'opac', 'NN'), (u'code', 'NN'), (u'tri', 'NN'), (u'build', 'NN'), (u'error', 'NN'), (u'cannot', 'NN'), (u'implicitli', 'NN'), (u'convert', 'NN'), (u'type', 'NN'), (u'decim', 'NN'), (u'doubl', 'NN'), (u'tri', 'NN'), (u'control', 'NN'), (u'doesnt', 'NN'), (u'work', 'NN'), (u'code', 'NN'), (u'work', 'NN'), (u'fine', 'NN'), (u'vbnet', 'NN'), (u'past', 'NN')]
# probability(so, t, c)
# In[19]:
'''
Compute Probability - FREPOS
'''
def probability(so, tags, post_frame):
s_prob_t = {}
for tag in tags:
s_prob = {}
count = 0
for word in so:
s_prob[word] = 0
for i in range(len(post_frame)):
row = post_frame[i]
if word in post_frame[0] and tag in post_frame[1]:
s_prob[word] = 1
count += 1
break
if count > 0:
s_prob_t[tag] = count/len(s_prob)
return s_prob_t
# In[17]:
'''
Spreading Activation Algorithm
'''
def spreading_activation(G, hops):
main_nodes = [n for n in G.nodes() if G.node.get(n, 0)]
for node in main_nodes:
nodes = [(node, 0)]
while nodes:
n, k = nodes.pop(0)
if k > hops:
break
adjNodes = G.neighbors(n)
for adjNode in adjNodes:
# if adjNode in main_nodes:
# continue
val = G.node[n].get('value', 0) * G.get_edge_data(n, adjNode)['weight']
if val > G.node[adjNode].get('value', 0):
G.node[adjNode]['value'] = val
nodes.append((adjNode, k + 1))
return G.nodes(data=True)
# In[18]:
'''
Finding associated tags
'''
def find_assoc_tags():
G = nx.Graph()
G.add_edges_from([('java', 'eclipse'), ('python', 'eclipse'), ('java', 'linux'), ('python', 'ide'), ('ide', 'linux'), ('ide', 'project')], {'weight': 0.85})
G.node['java']['value'] = 0.5
G.node['python']['value'] = 0.6
max_hops = 2
assoc_tags = process(G, max_hops)
return assoc_tags