Full Code of jeniyat/StackOverflowNER for AI

master d1f408d235fc cached
66 files
82.7 MB
3.3M tokens
280 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (13,188K chars total). Download the full file to get everything.
Repository: jeniyat/StackOverflowNER
Branch: master
Commit: d1f408d235fc
Files: 66
Total size: 82.7 MB

Directory structure:
gitextract_71vcekvo/

├── License
├── Readme.md
├── code/
│   ├── Attentive_BiLSTM/
│   │   ├── HAN.py
│   │   ├── Word_Freqency_Mapper.py
│   │   ├── auxilary_inputs_ner/
│   │   │   ├── ctc_pred.tsv
│   │   │   └── segmenter_pred/
│   │   │       ├── segmenter_pred_dev.txt
│   │   │       ├── segmenter_pred_test.txt
│   │   │       └── segmenter_pred_train.txt
│   │   ├── config_so.py
│   │   ├── conlleval_py.py
│   │   ├── evaluation/
│   │   │   └── conlleval
│   │   ├── gaussian_binner.py
│   │   ├── loader_so.py
│   │   ├── make_segment_pred.py
│   │   ├── make_vocab.py
│   │   ├── model.py
│   │   ├── other_files/
│   │   │   ├── Freq_Vector.txt
│   │   │   ├── oov_words.txt
│   │   │   └── vocab.tsv
│   │   ├── print_result.py
│   │   ├── sorted_entity_list_by_count_all.json
│   │   ├── test_char_embeddings.py
│   │   ├── test_script.py
│   │   ├── tolatex.py
│   │   ├── train_so.py
│   │   └── utils_so.py
│   ├── BERT_NER/
│   │   ├── E2E_SoftNER.py
│   │   ├── Freq_Vector.txt
│   │   ├── softner_ner_predict_from_file.py
│   │   ├── softner_segmenter_preditct_from_file.py
│   │   ├── utils_ctc/
│   │   │   ├── binning.py
│   │   │   ├── config_ctc.py
│   │   │   ├── features.py
│   │   │   ├── model.py
│   │   │   ├── prediction_ctc.py
│   │   │   └── rules.py
│   │   ├── utils_ner.py
│   │   ├── utils_preprocess/
│   │   │   ├── __init__.py
│   │   │   ├── anntoconll.py
│   │   │   ├── fix_char_encoding.py
│   │   │   ├── format_markdown.py
│   │   │   ├── map_text_to_char.py
│   │   │   ├── sentencesplit.py
│   │   │   ├── ssplit.py
│   │   │   ├── stokenizer.py
│   │   │   ├── stokenizer_base_rules.py
│   │   │   └── tokenize_base_rules.py
│   │   ├── utils_seg.py
│   │   └── xml_filted_body.txt
│   ├── DataReader/
│   │   ├── Posts_Small.xml
│   │   ├── loader_so.py
│   │   ├── read_so_post_info.py
│   │   ├── temp_xml.xml
│   │   └── text_files/
│   │       ├── 13347179.txt
│   │       ├── 13352832.txt
│   │       └── 1528_1533.txt
│   ├── Readme.md
│   └── SOTokenizer/
│       ├── ark_twokenize.py
│       └── stokenizer.py
└── resources/
    ├── annotated_ner_data/
    │   ├── GitHub/
    │   │   └── GH_test_set.txt
    │   ├── Readme.md
    │   └── StackOverflow/
    │       ├── dev.txt
    │       ├── test.txt
    │       ├── train.txt
    │       └── train_merged_labels.txt
    └── pretrained_word_vectors/
        └── Readme.md

================================================
FILE CONTENTS
================================================

================================================
FILE: License
================================================
MIT License

Copyright (c) 2020 JeniyaTabassum

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

================================================
FILE: Readme.md
================================================
# Dataset and Model for Fine-grained Software Entity Extraction

This repository contains all the code and data proposed in the paper:  **Code and Named Entity Recognition in  StackOverflow. (ACL 2020)**.  [[Paper PDF](https://arxiv.org/pdf/2005.01634.pdf)]


For the source code of our NER tagger, check the `code/NER/` folder.

For our annotated data with software-domain named entities, check the `resources/annotated_ner_data/` folder.

To cite the data or the code included in this repository, please use the following bibtex entry:


      @inproceedings{Tabassum20acl,
          title = {Code and Named Entity Recognition in StackOverflow},
          author = "Tabassum, Jeniya and Maddela, Mounica and  Xu, Wei  and Ritter, Alan",
          booktitle = {The Annual Meeting of the Association for Computational Linguistics (ACL)},
          year = {2020}
      }



================================================
FILE: code/Attentive_BiLSTM/HAN.py
================================================
import torch
import torch.nn as nn
import torch.autograd as autograd
import torch.nn.functional as F

from utils_so import *
from config_so import parameters

torch.backends.cudnn.deterministic = True
torch.manual_seed(parameters["seed"])





class Embeeding_Attn(nn.Module):
  def __init__(self):
    super(Embeeding_Attn, self).__init__()
    
    self.max_len = 3
    self.input_dim = 1824
    self.hidden_dim = 150
    self.bidirectional = True
    self.drop_out_rate = 0.5 

    self.context_vector_size = [parameters['embedding_context_vecotr_size'], 1]
    self.drop = nn.Dropout(p=self.drop_out_rate)

    self.word_GRU = nn.GRU(input_size=self.input_dim,
                               hidden_size=self.hidden_dim,
                               bidirectional=self.bidirectional,
                               batch_first=True)
    
    self.w_proj = nn.Linear(in_features=2*self.hidden_dim ,out_features=2*self.hidden_dim)

    self.w_context_vector = nn.Parameter(torch.randn(self.context_vector_size).float())

    self.softmax = nn.Softmax(dim=1)

    init_gru(self.word_GRU)

  def forward(self,x):
    
    
    x, _ = self.word_GRU(x)
    Hw = torch.tanh(self.w_proj(x))
    w_score = self.softmax(Hw.matmul(self.w_context_vector))
    x = x.mul(w_score)
    x = torch.sum(x, dim=1)
    return x








class Word_Attn(nn.Module):
  def __init__(self):
    super(Word_Attn, self).__init__()
    
    self.max_len = 92
    self.input_dim = 300
    self.hidden_dim = 150
    self.bidirectional = True
    self.drop_out_rate = 0.5 

    self.context_vector_size = [parameters['word_context_vecotr_size'] , 1]
    self.drop = nn.Dropout(p=self.drop_out_rate)

    self.word_GRU = nn.GRU(input_size=self.input_dim,
                               hidden_size=self.hidden_dim,
                               bidirectional=self.bidirectional,
                               batch_first=True)
    
    self.w_proj = nn.Linear(in_features=2*self.hidden_dim ,out_features=2*self.hidden_dim)

    self.w_context_vector = nn.Parameter(torch.randn(self.context_vector_size).float())

    self.softmax = nn.Softmax(dim=1)

    init_gru(self.word_GRU)

  def forward(self,x):
    
    
    x, _ = self.word_GRU(x)
    Hw = torch.tanh(self.w_proj(x))
    w_score = self.softmax(Hw.matmul(self.w_context_vector))
    x = x.mul(w_score)
    # print(x.size())
    return x











================================================
FILE: code/Attentive_BiLSTM/Word_Freqency_Mapper.py
================================================
from gaussian_binner import GaussianBinner
import numpy as np
from collections import Counter

class Word_Freqency_Mapper:
	"""docstring for ClassName"""
	def __init__(self,bins=100, w=5.0):
		self.Train_Word_Counter=Counter()
		self.set_of_freq=set()
		self.binner = GaussianBinner(bins=bins, w=w)

		self.all_word_w_freq_vector={}
		self.Test_Set_Words=set()

	def Find_Freq_Vector_for_words(self):
		
		ip_array=np.array([0])

		for word in self.Train_Word_Counter:
			word_freq=np.array([self.Train_Word_Counter[word]])
			temp_ip_array = np.vstack((ip_array,word_freq))
			freq_vector= self.binner.transform(temp_ip_array,1)[1]
			self.all_word_w_freq_vector[word]=freq_vector
			# print(freq_vector.shape)
			# print(word)
			# print(freq_vector[1])
		# print(self.Test_Set_Words - (set()))
		# print(len(self.Train_Word_Counter.keys()))
		for word in self.Test_Set_Words:
			if word in self.Train_Word_Counter:
				# continue
				# word_freq1= self.all_word_w_freq_vector[word]
				word_freq=np.array([self.Train_Word_Counter[word]])
				# print(np.subtract(word_freq1, word_freq1))
				# print("\n\n\n")
				continue
			else:
				word_freq=np.array([0])
				# print(word, word_freq)

			temp_ip_array = np.vstack((ip_array,word_freq))
			freq_vector= self.binner.transform(temp_ip_array,1)[1]
			# print(word, freq_vector)
			self.all_word_w_freq_vector[word]=freq_vector
		# print(self.all_word_w_freq_vector)

	def Read_File(self, ip_file):
		list_of_sentence_words_in_file=[]
		list_of_sentence_labels_in_file=[]
		list_of_markdown_markdowns_in_file=[]
		current_sent_words=[]
		current_sent_labels=[]
		current_sent_markdowns=[]

		for line in open(ip_file):
			#print(line)
			if line.strip()=="":
				if len(current_sent_words)>0:
					output_line = " ".join(current_sent_words)
					#print(output_line)
					if "code omitted for annotation" in output_line and "CODE_BLOCK :" in output_line:
						current_sent_words=[]
						current_sent_labels=[]
						current_sent_markdowns=[]
						continue
					elif "omitted for annotation" in output_line and "OP_BLOCK :" in output_line:
						current_sent_words=[]
						current_sent_labels=[]
						current_sent_markdowns=[]
						continue
					elif "Question_URL :" in output_line:
						current_sent_words=[]
						current_sent_labels=[]
						current_sent_markdowns=[]
						continue
					elif "Question_ID :" in output_line:
						current_sent_words=[]
						current_sent_labels=[]
						current_sent_markdowns=[]
						continue
					else:
						list_of_sentence_words_in_file.append(current_sent_words)
						list_of_sentence_labels_in_file.append(current_sent_labels)
						list_of_markdown_markdowns_in_file.append(current_sent_markdowns)
						current_sent_words=[]
						current_sent_labels=[]
						current_sent_markdowns=[]
					
					
			else:
				line_values=line.strip().split()
				gold_word=line_values[0]
				gold_label=line_values[1]
				raw_word=line_values[2]
				raw_label=line_values[3]

				word=gold_word
				label=gold_label

				current_sent_words.append(word)
				current_sent_markdowns.append(raw_label)
				current_sent_labels.append(label)
				
		return (list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file)

	def Read_Test_Data(self, input_test_file):
		(list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file) = self.Read_File(input_test_file)
		

		for list_of_words in list_of_sentence_words_in_file:
			for word in list_of_words:
				self.Test_Set_Words.add(word)

	def Read_Dev_Data(self, input_dev_file):
		(list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file) = self.Read_File(input_dev_file)
		

		for list_of_words in list_of_sentence_words_in_file:
			for word in list_of_words:
				self.Test_Set_Words.add(word)


	def Find_Train_Data_Freq(self, input_train_file):

		(list_of_sentence_words_in_file, list_of_sentence_labels_in_file, list_of_markdown_markdowns_in_file) = self.Read_File(input_train_file)
		for list_of_words in list_of_sentence_words_in_file:
			for word in list_of_words:
				self.Train_Word_Counter[word]+=1

		for word in self.Train_Word_Counter:
			self.set_of_freq.add(self.Train_Word_Counter[word])

		# print(min(self.set_of_freq))


	def Find_Gaussian_Bining_For_Training_Data_Freq(self):
		freq_array=np.array([0])

		for word in self.Train_Word_Counter:
			word_freq =np.array([self.Train_Word_Counter[word]])
			freq_array = np.vstack((freq_array,word_freq ))


		self.binner.fit(freq_array, 1)

	def Write_Freq_To_File(self,output_file):
		fout= open(output_file,'w')
		for word in self.all_word_w_freq_vector:
			word_freq=self.all_word_w_freq_vector[word].tolist()
			word_freq_str=[str(x) for x in word_freq]
			# print(word_freq)
			# word_freq_str = np.array2string(word_freq, formatter={'str':lambda x: float(word_freq)})
			# print(word_freq_str)
			# print("\n\n\n")
			opline=word+" "+" ".join(word_freq_str)+"\n"
			# print(opline)
			fout.write(opline)
		fout.close()





if __name__ == '__main__':
	input_train_file="../../StackOverflow_Input_Data/train_gold_raw_merged.txt"
	input_dev_file="../../StackOverflow_Input_Data/dev_gold_raw_merged.txt"
	input_test_file="../../StackOverflow_Input_Data/test_gold_raw_merged.txt"
	output_file="Freq_Vector.txt"

	freq_mapper = Word_Freqency_Mapper()
	freq_mapper.Find_Train_Data_Freq(input_train_file)
	freq_mapper.Read_Dev_Data(input_dev_file)
	freq_mapper.Read_Test_Data(input_test_file)
	freq_mapper.Find_Gaussian_Bining_For_Training_Data_Freq()
	freq_mapper.Find_Freq_Vector_for_words()
	freq_mapper.Write_Freq_To_File(output_file)











================================================
FILE: code/Attentive_BiLSTM/auxilary_inputs_ner/ctc_pred.tsv
================================================
If	0
I	0
would	0
have	0
2	0
tables	0
How	0
do	0
get	0
this	0
result	0
The	0
following	0
query	0
needs	0
to	0
be	0
adjusted	0
,	0
but	0
dont	0
know	0
how	0
SQLFIDDLE	1
:	0
http://sqlfiddle.com/#!9/11093	0
You	0
are	0
very	0
close	0
.	0
Just	0
add	0
a	0
where	0
clause	0
A	0
more	0
traditional	0
approach	0
uses	0
NOT	0
EXISTS	1
Here	0
is	0
SQL	0
Fiddle	0
illustrating	0
that	0
the	0
first	0
works	0
'm	0
trying	0
make	0
little	0
chat	0
program	0
after	0
reading	0
Beej	0
's	0
guide	0
programming	0
And	0
then	0
was	0
thinking	0
about	0
basics	0
of	0
itself	0
and	0
n't	0
print	0
output	0
recv()	1
input	0
for	0
send()	1
at	0
same	0
time	0
because	0
client	0
can	0
always	0
write	0
something	0
send	0
it	0
possible	0
also	0
while	0
he	0
?	0
thought	0
threads	0
learned	0
bit	0
them	0
created	0
simple	0
one	0
prints	0
sentence	0
every	0
3	0
seconds	0
second	0
of-course	0
had	0
lot	0
issues	0
ex	0
if	0
you	0
started	0
typing	0
other	0
thread	0
will	0
simply	0
take	0
what	0
wrote	0
with	0
code	0
tried	0
recreate	0
hope	0
guys	0
help	0
me	0
undefined	1
behavior	0
in	0
your	0
haven	0
an	0
uninitialized	1
pointer	0
getinput	1
Uninitialized	0
(	0
non-static	0
)	0
local	0
variables	0
indeterminate	0
value	0
seem	0
random	0
As	0
seemingly	0
scanf	1
call	0
some	0
unknown	0
place	0
memory	0
overwriting	0
whatever	0
there	0
could	0
easily	0
solve	0
by	0
making	0
array	0
C#	0
/.NET	1
application	0
multiple	0
i.e	0
concurrently	0
6	0
tries	0
perform	0
update	0
This	0
piece	0
run	0
transaction	0
Both	0
3+mio	0
records	0
Clustered	0
key	0
on	0
[	0
Id	0
]	0
field	0
non-clustered	0
indexes	0
as	0
well	0
Funny	0
thing	0
manually	0
checked	0
my	0
particular	0
example	0
cWrh	1
Options	0
cStg	1
so	0
end	0
not	0
necessary	0
attaching	0
deadlog	0
graph	0
redacted	0
values	0
say	0
DB.wrh.Cars	1
Deadlock	0
Yes	0
concurrency	0
really	0
adding	0
any	0
"	0
Reset	0
;	0
Recalculate	0
which	0
does	0
calculation	0
bulk	0
inserts	0
back	0
into	0
updates	0
later	0
concurrent	0
mode	0
speeds	0
up	0
significantly	0
just	0
like	0
stick	0
regardless	0
task	0
reset	0
vs	0
CPU	0
intensive	0
work	0
Any	0
suggestion	0
around	0
deadlock	0
appreciated	0
suggested	0
@KamranFarzami	1
answer	0
@Grantly	1
solved	0
problem	0
point	0
answering	0
question	0
goes	0
Transaction	0
Isolation	0
Level	0
SNAPSHOT	0
prevents	0
deadlocks	0
from	0
ocurring	0
am	0
accomplish	0
why	0
struggling	0
Create	0
new	0
fiddle	0
contains	0
button	0
text	0
x2	0
number	0
1	0
Use	0
Javascript	0
each	0
clicked	0
above	0
double	0
Send	0
link	0
thus	0
far	0
targeting	0
via	0
JS	0
cannot	0
figure	0
out	0
return	0
updated	0
when	0
Try	0
Look	0
doing	0
multiplying	0
element	0
two	0
want	0
use	0
innerHTML	1
or	0
textContent	1
That	0
returns	0
string	0
parseInt()	1
parseFloat()	1
we	0
override	0
parent	0
class	0
method	0
super()	1
avoid	0
mention	0
name	0
-	0
clear	0
But	0
case	0
subclass	0
function	0
defined	0
What	0
preferable	0
way	0
super().parent_method()	1
self.parent_method()	1
Or	0
no	0
difference	0
actually	0
syntactic	0
sugar	0
its	0
purpose	0
invoke	0
implementation	0
certain	0
instead	0
overwrite	0
extra	0
aka	0
execution	0
before	0
original	0
completely	0
different	0
ca	0
self.method_name()	1
recursion	0
error	0
!	0
RuntimeError	1
maximum	0
depth	0
exceeded	0
Example	0
Given	0
base	0
m	0
B	0
extends	0
overriding	0
C	0
D	0
generates	0
EDIT	0
realized	0
methods	0
test_a	1
test_b	1
My	0
still	0
valid	0
regarding	0
specific	0
scenario	0
should	0
self.test_a()	1
unless	0
override/overwrite	0
execute	0
implementation.	0
calling	0
super().test_a()	1
given	0
'll	0
never	0
test_a()	1
subclasses.	1
however	0
nonsense	0
Usually	0
inherited	0
However	0
rare	0
situations	0
might	0
even	0
though	0
seems	0
They	0
're	0
equivalent	0
they	0
To	0
explore	0
differences	0
lets	0
versions	0
kind	0
classes	0
further	0
extend	0
When	0
test_b()	1
C1	0
C2	0
instances	0
results	0
B1	1
B2	0
behave	0
B2.test_b	1
tells	0
Python	0
skip	0
version	0
derived	0
Actually	0
suppose	0
sibling	0
inheritance	0
situation	0
getting	0
obscure	0
Like	0
said	0
top	0
usually	0
allow	0
more-derived	0
Cs	1
less-derived	0
means	0
most	0
using	0
self.whatever	1
go	0
only	0
need	0
super	0
fancy	0
'd	0
change	0
object	0
parameter	0
decide	0
sample	0
changed	0
Alternatively	0
choose	0
..	0
switch	0
statement	0
Is	0
good	0
direction	0
pretty	0
sure	0
has	0
already	0
been	0
discussed	0
internet	0
've	0
read	0
everything	0
functions	0
find	0
solution	0
guess	0
searching	0
wrong	0
keywords	0
Carinherits	1
NSObject	1
key-value-coding	0
free	0
setValue:forKey	1
create	0
KVC	0
inherit	0
func	1
guards	0
again	0
bad	0
property	0
names	0
Keep	0
mind	0
crash	0
enter	0
Hope	0
answers	0
haskell	0
now	0
understand	0
most/some	0
concepts	0
exactly	0
haskells	0
type	0
system	0
another	0
statically	0
typed	0
language	0
intuitively	0
better	0
imaginable	0
compared	0
C++	0
java	0
explain	0
logically	0
primarily	0
lack	0
knowledge	0
systems	0
between	0
languages	0
Could	0
someone	0
give	0
examples	0
helpful	0
static	0
Examples	0
terse	0
succinctly	0
expressed	0
nice	0
Haskell	0
features	0
all	0
exist	0
rarely	0
combined	0
within	0
single	0
consistent	0
sound	0
meaning	0
errors	0
guaranteed	0
happen	0
runtime	0
without	0
needing	0
checks	0
Caml	0
SML	0
almost	0
Java	0
Lisp	0
peforms	0
reconstruction	0
programmer	0
types	0
wants	0
compiler	0
reconstruct	0
own	0
supports	0
impredicative	0
polymorphism	0
higher	0
kinds	0
unlike	0
production-ready	0
known	0
support	0
overloading	0
Whether	0
those	0
open	0
discussion	0
—	0
quite	0
few	0
programmers	0
who	0
strongly	0
dislike	0
prefer	0
module	0
On	0
hand	0
lacks	0
elegantly	0
dispatch	0
Julia	0
existential	0
GADTs	0
these	0
both	0
GHC	0
extensions	0
dependent	0
Coq	0
Agda	0
Idris	0
Again	0
whether	0
desirable	0
general-purpose	0
One	0
major	0
OO	0
ability	0
side	0
effects	0
represented	0
data	0
monad	1
such	0
IO	1
allows	0
pure	0
verify	0
side-effect-free	0
referentially	0
transparent	0
generally	0
easier	0
less	0
prone	0
bugs	0
It	0
makes	0
think	0
carefully	0
parts	0
I/O	0
mutable	1
Also	0
although	0
part	0
fact	0
definitions	0
expressions	0
rather	0
than	0
lists	0
statements	0
subject	0
type-checking	0
In	0
often	0
introduce	0
logic	0
writing	0
order	0
since	0
determine	0
must	0
precede	0
For	0
line	0
modifies	0
state	0
important	0
based	0
ensure	0
things	0
correct	0
ordering	0
dependency	0
tends	0
through	0
composition	0
e.g	0
f	1
g	1
x	0
check	0
against	0
argument	0
composed	0
https://www.youtube.com/watch?v=XPpsI8mWKmg	0
video	0
closed	0
captions	0
response	0
isCC	1
=	0
false	0
happens	0
videos	0
Can	0
anyone	0
tell	0
https://developers.google.com/youtube/v3/docs/captions	0
Thank	0
set	0
got	0
believe	0
player	0
CC	0
see	0
referring	0
subtitles	0
There	0
distinction	0
captioning	0
here	0
Therefore	0
true	0
include	0
intended	0
people	0
able	0
hear	0
happening	0
opposed	0
general	0
put	0
onto	0
their	0
cases	0
high	0
quality	0
paid	0
movies	0
YouTube	0
sense	0
supposed	0
syntax	0
maybe	0
much	0
experience	0
youtube	0
api	0
checking	0
documentation	0
found	0
learning	0
Collection	0
Framework	0
website	0
http://way2java.com/collections/hashtable-about/	0
After	0
Hashtable	1
access	0
table	0
keys	0
Set	0
keys()	1
Returns	0
containing	0
keySet()	1
similarity	0
duplicates	0
Adding	0
removing	0
elements	0
reflects	0
Anyone	0
Enumeration<K>	1
legacy	0
longer	0
recommended	0
replaced	0
HashMap	1
ConcurrentHashMap	1
†	0
existed	0
JCF	0
did	0
therefore	0
standard	0
start	0
Enumeration	1
interface	0
moving	0
collection	0
objects	0
Then	0
came	0
1.2	0
retrofitted	0
Map	0
returned	0
introduced	0
retained	0
compatibility	0
reasons	0
achieves	0
conveys	0
intent	0
reinforces	0
mathematical	0
implements	0
Iterable	1
<T>,	1
replaces	0
Enumerable<T>	1
From	0
enumeration	1
hashtable	0
record	0
mongoDb	1
i	0
May	0
lend	0
helping	0
upsert	1
insert	0
missing	0
{	0
document	0
$set	1
student_record}	1
convert	0
student_grade	1
float	0
By	0
default	0
False	1
specify	0
Your	0
simplify	0
flag.lower()	1
==	0
'	0
y	0
Last	0
least	0
deprecated	0
API	0
update_one	1
Rails	0
1.2.3	0
project	0
Upgrading	0
rails	0
option	0
test	0
web-service	0
tested	0
scaffold	0
generate	0
problems	0
setup	0
.NET	0
ASP.NET	0
Web	0
App	0
Reference	0
URL	0
wizard	0
receive	0
Are	0
ActionWebService	1
probably	0
answered	0
elsewhere	0
pops	0
google	0
actionwebservice	1
requests	0
AWS	0
refuses	0
non-POST	0
Specifically	0
action_controller_dispatcher.rb	1
reads	0
Basically	0
either	0
request	0
POST	0
GETting	0
handling	0
GET	0
try	0
editing	0
inside	0
gem	0
1)	0
overwritten	0
2)	0
idea	0
3)	0
former	0
likely	0
appropriate	0
control	0
generating	0
Zack	0
Chandler	0
workaround	0
QuickBooks	0
connection	0
quoting	0
below	0
url	0
changes	0
Obviously	0
dispatch_web_service_request	1
helps	0
reposting	0
large	0
file	0
Let	0
compare	0
3rd	0
symbol	0
c'	1
counter	0
grep	0
suite	0
So	0
advice	0
More	0
extract	0
vector	0
4	0
4:10	0
symbols	0
advance	0
P.S	0
best	0
script	0
R	0
curious	0
adequate	0
Edited	0
provide	0
fast	0
larger	0
strings	0
long	0
millions	0
nucleotides	0
lookbehind	1
assertion	0
too	0
slow	0
practical	0
splits	0
apart	0
character	0
characters	0
fill	0
three	0
row	0
matrix	0
extracts	0
takes	0
0.2	0
process	0
3-million	0
Original	0
substr()	1
Compare	0
third	0
c	0
Extract	0
10	0
install	0
ckeditor	1
configuration	0
describe	0
edit	0
HTML	0
alfresco	0
content	0
area	0
empty	0
blank	0
anything	0
Help	0
please	0
:(	1
downloaded	0
ckeditor-forms-master	0
github	0
cmd	0
folder	0
commands	0
ant	0
clean	0
dist-jar	1
-Dtomcat.home	1
C:/Alfresco/tomcat	1
hotcopy-tomcat-jar	1
were	0
successfully	0
executed	0
Restarted	0
tomcat	0
server	0
Now	0
create/edit	0
context	0
4.2.f	0
browser	0
chrome	0
learn	0
Sencha	0
Touch	0
stuck	0
obvious	0
tabPanel	1
event	0
tap	0
load	0
maptestPanel	1
panel	0
map	0
loaded	0
js	0
looks	0
ok	0
seeing	0
properly	0
Thanks	0
steer	0
right	0
classic	0
sencha	1
mapPanel	1
hidden	0
handler	0
show	0
hiding	0
Besides	0
speaking	0
layouts	0
precise	0
layout	0
card	0
definition	0
several	0
fix	0
Maps	0
Since	0
child	0
item	0
fit	0
Only	0
fullscreen	1
outermost	0
items	0
containers	0
dynamically	0
container	0
add()	1
doLayout()	1
trigger	0
functionality	0
Instead	0
directly	0
btnPanel	1
4)	1
possibly	0
vbox	0
questions	0
kinesis	0
shard	0
consumers	0
stream	0
consume	0
lambda	0
independently	0
iterator	1
stream/shard	1
shards	0
limit	0
invocations	0
executions	0
Seethis	0
doc	0
details	0
enum	1
EnumDropDownListFor	1
page	0
Employee	0
form.But	0
firstly	0
Evaluation.My	1
decision	0
changing	0
whole	0
working	0
.So	0
easly	0
ideas	0
Slideshow	0
reason	0
endless	0
times	0
http://jsfiddle.net/2VQ9A/	0
jsfiddle	1
being	0
recognized	0
weird	0
silly	0
appreciate	0
:)	0
files	0
definetely	0
probme.Try	1
Check	0
added	0
jquery	1
CDN	0
Google	0
Microsoft	0
Add	0
existing	0
called	0
temp_09.jwn	1
column	0
cobrand_bank_id	1
ALTER	0
TABLE	0
step	0
No	0
Schema-less	0
databases	0
NoSQL	0
RDBMS	0
scheme	0
altered	0
saying	0
bought	0
shoes	0
bin	0
store	0
toss	0
corner	0
appear	0
options	0
achieve	0
schema	0
flexibility	0
Entity	0
–	0
attribute	0
model	0
JSON	0
Depending	0
volume	0
etc	0
nosql	0
db	0
choice	0
sometimes	0
schema-flexible	1
relational	0
Some	0
flexible	0
E.g	0
SAP	0
HANA	0
CREATE	0
WITH	0
SCHEMA	0
FLEXIBILITY	0
Internet	0
virtual	0
machine	0
CentOS	0
7	0
network	0
adapter	0
NAT	0
Host	0
ping	0
among	0
machines	0
slave1	1
slave2	1
...	0
fine	0
8.8.8.8	1
->	1
PING	0
56(84)	0
bytes	0
message	0
nothing	0
comes	0
out.	0
google.com	0
says	0
unkown	0
host	0
enp0s3	1
NAT(on)	1
inet	0
10.0.2.15	1
netmask	1
255.255.255.0	1
enp0s8	1
host(on)	1
192.168.56.101	1
Where	0
Please	0
spending	0
17	0
hours	0
Netwrok	0
adaptateur	0
Enabled	0
Attached	0
Bridge	0
Adapter	0
Network	0
Connections	0
configure	0
Obtain	0
IP	0
address	0
automatically	0
DNS	0
login	0
register	0
PHP	0
MySQL	0
fragment	0
loginfragment	1
loginlayout	1
android	0
develop	0
tutorials	0
activity	0
asked	0
involved	0
especially	0
mentioned	0
source	0
official	0
Android	0
Developers	0
training	0
http://developer.android.com/training/basics/network-ops/connecting.html	0
copy	0
relevant	0
Having	0
done	0
bite	0
implement	0
requires	0
calls	0
web	0
background	0
http://developer.android.com/training/multiple-threads/index.html	0
going	0
authentication	0
used	0
Drupal	1
framework	0
Session	0
auth	0
CRLF	1
token	0
OAuth	1
similar	0
Authentication	0
involve	0
steps	0
**	0
Sign	0
Retrieve	0
cookie	0
along	0
headers	0
Finally	0
sort	0
encapsulation	0
layer	0
folks	0
XML	0
GSON	0
library	0
https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html	0
user	0
beginner	0
friendly	0
practice	0
built-in	0
JSONArray	1
JSONObject	1
http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/	0
Overall	0
Web-service	0
Call	0
form	0
Fragment	1
Get	0
parse	0
Show	0
Result	0
User	0
Fragments	1
rich	0
QComboBox	1
Perhaps	0
unsure	0
custom	0
delegate	0
replace	0
drawing	0
routine	0
QLabel	1
QListView/QListWidget	1
widgets	0
validating	0
DOMDocument	1
warning	0
Warning	0
DOMDocument::schemaValidate()	1
Element	0
foo	1
expected	0
Expected	0
{url}foo	1
{url}bar	1
'{url}foo'	1
notation	0
refer	0
expanded	0
whose	0
namespace	0
referred	0
Clark	0
James	0
promoted	0
unqualified	0
{}foo	1
telling	0
location	0
expecting	0
namespace-qualfied	1
named	0
bar	0
Probable	0
cause	0
instance	0
required	0
declaration	0
classify	0
r	0
structure	0
distinguish	0
day	0
/	0
month	0
year	0
strsplit	1
str_split	1
categorize	0
pattern	0
dates	0
stringr	1
rebus	0
packages	0
intuitive	0
move	0
MVC	0
Azure	0
in-house	0
export	0
SSL	0
certificate	0
associated	0
NO	0
Windows	0
Question	0
appeared	0
certainly	0
uploaded	0
magic	0
developer	0
packed	0
deployment	0
package	0
reference	0
thumbprint	0
service	0
administrator	0
co-admin	1
contact	0
whom	0
ask	0
lost	0
issuer	0
certification	0
authority	0
originally	0
requested	0
behind	0
indices	0
nearest	0
non-coprime	0
GCD(Ai,	1
Aj)	1
>	0
Ai	1
Aj	0
!=	1
j	1
let	0
written	0
brute	0
force	0
O(n^2))	0
Binary	0
GCD	0
efficient	0
wondering	0
faster	0
Particularly	0
O(NlogN)	1
max	0
numbers	0
afford	0
keep	0
list	0
primes	0
factoring	0
may	0
average/random	0
Otherwise	0
worst	0
complexity	0
O(N*N)	1
Approach	0
factor	0
Map[N]	1
+	0
int	1
closestNeigh[]	1
O(N)	0
closest	0
contain	0
prefix/sufix	0
sums	0
eliminate	0
maps	0
next	0
Adjust	0
neighbor	0
index	0
bring	0
relief	0
O	0
N*	1
<num_distict_factors>	1
N	0
willing	0
factorization	0
traverse	0
once	0
left	0
hashing	0
prime	0
updating	0
seen	0
course	0
noting	0
traversal	0
miss	0
conduct	0
nearer	0
shared	0
saved	0
image	0
colors	0
images	0
formats	0
WriteableBitmap.GetPixels()	1
cloned	0
pixel	0
putting	0
writeablebitmap	1
position	0
cloning	0
fault	0
Writeablebitmap	1
Ex	0
compiled	0
downloadable	0
1.0.2	0
others	0
until	0
V	0
1.0.5	0
untested	0
sourcecode	0
writeablebitmapex	1
Version	0
iterating	0
tr	0
click	0
X	0
iterated	0
Y	0
controller	0
angular	1
per	0
$rootScope	1
pass	0
scope	0
populate	0
$scope	1
ones	0
accessible	0
http://jsfiddle.net/ae8neq3k/	0
multidimensional	0
$responses	1
print_r	1
foreach	1
loop	0
print_r($output)	1
Seems	0
transformation	0
var_dump	1
view	0
variable	0
inheriting	0
iter	0
iterators	0
exported	0
reproducible	0
runnable	0
pairsRef	1
loops	0
mine	0
Test2	1
unexported	0
import	0
Biostrings	1
With	0
fresh	0
session	0
loading	0
running	0
Results	0
Error	0
attempt	0
apply	0
non-function	0
internal	0
suggestions	0
greatly	0
necessarily	0
Ben	0
nextElem	1
imported	0
additional	0
unique	0
visible	0
MongoDB	0
SUM	0
incoming	0
11	0
12	0
500	0
Mongo	0
Shell	0
llovet	0
aggregation	0
look	0
shape	0
resulting	0
sum	0
$project	1
operator	0
pipeline	0
json	1
ran	0
ID	0
prefectly	0
jsonString	1
stops	0
gives	0
nullpoiterexeption	1
info	0
"W1121000-00002":	1
"clnt":1023	1
"srvr":870	1
}	0
clnt	0
Pyhton3.4.1	1
win7	0
txt	0
software	0
python	0
notepad	0
space	0
save	0
mac	0
windows	0
ans	0
textedit	1
doubting	0
coding	0
Plus	0
reported	0
mac(Python3.4.1,OS10.9)	0
Notepad	0
reencoded	0
encoding	0
installation	0
auto-detected	0
opened	0
opens	0
Quoting	0
open()	1
explicitly	0
wanted	0
utf-8-sig	1
auto-detect	0
UTF-16	1
plain	0
UTF-8	1
encodings	0
encoded	0
ANSI	0
codepage	1
exact	0
configured	0
936	0
GBK	0
See	0
codecs	0
supported	0
Compile	0
gcc	0
-fdump-class-hierarchy	1
emits	0
significance	0
nearly-empty	0
mean	0
differentiate	0
compile	0
members	0
hasa	0
vtable	1
else	0
ABI	0
provides	0
nearly	0
interesting	0
affect	0
construction	0
across	0
researching	0
effect	0
bases	0
size	0
overhead	0
NSJSONSerialization	1
obj	1
props	0
success	0
boolean	0
String	0
indicates	0
timeout	0
null	0
html	0
requiring	0
http://screencast.com/t/chDMshKPl	0
CSS	0
vertical	0
scrollbar	1
Firefox	0
Does	0
technique	0
Safari	0
Opera	0
otherwise	0
11.01	0
5.0.3	0
rest	0
rule	0
overflow-y	1
scroll	0
10.10	0
Chrome	0
3.0.195.38	0
Mozilla	0
3.5.6	0
obviously	0
Explorer	0
shown	0
engine	0
chances	0
Kendo	0
UI	0
&	0
Codeigniter	0
trouble	0
codeigniter	1
display	0
grid	0
Below	0
screen	0
shoot	0
debug	0
shot	0
http://prntscr.com/5bmn3n	0
recived	0
http://prntscr.com/5bmne5	0
prntscr.com/5bmnib	1
prntscr.com/5bmnni	1
jsonp	1
cross-domain	0
MVC5	1
having	0
server-side	0
validation	0
fields	0
culture	0
de-CH	1
feels	0
defaulting	0
German	0
format	0
web.config	1
globalization	0
resource	0
uiCulture	1
come	0
play	0
jquery.globalize	1
correctly	0
reports	0
proper	0
Locally	0
validates	0
100.00	0
All	0
Win7	0
IIS7	0
Though	0
Win8	0
anymore	0
client-side	0
0.00	0
rejects	0
invalid	0
Date	0
ARE	0
adds	0
confusion	0
wonder	0
somehow	0
falling	0
de-DE	1
date	0
0	0
00	0
enabled/installed	0
figured	0
Apparently	0
registry	0
settings	0
de-AT	0
These	0
honored	0
Web.Config	1
HTTP	0
Request	0
Scrapy	0
copy/paste	0
Burp	0
scrapy.http.Request	1
corresponding	0
Clearly	0
information	0
error-prone	0
edge	0
understanding	0
converts	0
Twisted	0
writes	0
body	0
TCP	0
transport	0
away	0
UPDATE	0
1.0	0
http.py	1
1.1	0
http11.py	0
sent	0
duplicating	0
Scrapy/Twisted	1
frameworks	0
scrapy	1
plenty	0
extension	0
points	0
doable	0
finally	0
assembled	0
scrapy/core/downloader/handlers/http11.py	1
ScrapyAgent.download_request	1
https://github.com/scrapy/scrapy/blob/master/scrapy/core/downloader/handlers/http11.py#L270	0
hook	0
dump	0
monkey	0
patching	0
ScrapyAgent	1
logging	0
HTTP11DownloadHandler	1
Agent	0
DOWNLOAD_HANDLER	1
http	0
https	0
settings.py	1
https://doc.scrapy.org/en/latest/topics/settings.html#download-handlers	0
opinion	0
packet	0
sniffer	0
proxy	0
overkill	0
Assigning	0
width	0
height	0
dimensions	0
rectangle	0
circle	0
assign	0
draw	0
surface	0
Every	0
Rect	0
erase	0
attempting	0
up-sample	0
icosahedron	0
MATLAB	1
vertices	0
mid-points	0
recomputing	0
faces	0
managed	0
recompute	0
vertex	0
connect	0
neighbours	0
up-sampled	0
Sample	0
Code	0
triangle	0
3}	0
subdividing	0
b	0
c}	1
creates	0
coordinates	0
triangles	0
followed	0
First	0
size(S.vertices)+1	1
total	0
3*size(S.faces)	1
group	0
face	0
together	0
us	0
Vx(f,:)	1
Vx(:,1)	1
Vx(:,3)<-	1
Vx(:,2)	1
cat	1
permute	0
reshape	0
gets	0
ugly	0
incomprehensible	0
9	0
plug	0
m*3	1
S	1
app	0
command	0
nodemon	1
server.js	1
deploy	0
Bitnami	0
powered	0
compute	0
installed	0
log	0
nodejs	0
ssh-ing	0
perimision	0
port	0
27017	1
gcloud	1
firewall-rules	1
allow-mongodb	1
--allow	1
tcp:27017	1
mongodb.config	1
bind_ip	1
0.0.0.0	1
Still	0
frustating	0
apreciate	0
explicit	0
helped	0
printer	0
shreds	0
shredder	0
saves	0
printed	0
securely	0
deletes	0
shows	0
driver	0
VB.Net	0
nul	1
worked	0
DOS	0
printing	0
http://www.markmmanning.com/blog/2009/01/creating-fake-printer-devnull-for.html	0
PDF	0
old	0
iText	1
Unix	0
Everything	0
exploitation	0
team	0
contacted	0
storage	0
troubles	0
temp	0
indicate	0
Acroaxxxxx	1
under	0
/tmp	1
modify	0
delete	0
tmp	0
during	0
Thnks	0
apache_setenv	1
'sessionID'	1
session_id()	1
TRUE	1
BUT	0
sessionID	1
GETs	0
including	0
jpg	0
gif	0
setting	0
apache	0
environment	0
available	0
p.s	0
note	0
Getting	0
Gateway	0
Unable	0
post	0
payments	0
authorize.net	1
Authorize.net	0
coming	0
provider	0
payment	0
verified	0
trans	1
cURL	0
firewalls	0
blocking	0
connections	0
testmode	1
debugging	0
exception.log	1
enabled	0
Test	0
Mode	0
System->Configuration->PaymentMethods	0
Turns	0
issue	0
nameservers	0
http://www.magentocommerce.com/boards/viewthread/50611/	0
referenced	0
viewed	0
archive	0
https://web.archive.org/web/20150315055800/http://www.magentocommerce.com/boards/viewthread/50611	0
received	0
blocked	0
ip	0
accounts.authorize.net	1
Tools	0
menu	0
Fraud	0
Suite	0
Authorized	0
AIM	0
addresses	0
last	0
database	0
university	0
previous	0
id	0
$_POST['ids']	1
cicle	0
submit	0
$service_info	1
var_dump()	1
echoing	0
wo	0
passed	0
latest	0
made	0
Mobile	0
Service	0
__createdAt	1
planning	0
according	0
tracks	0
Hi	0
Tree	0
node	0
preorder	1
thank	0
ListView	1
Store	0
selects	0
template	0
dataTemplateSelector	1
ItemTemplate	1
adjust	0
displayed	0
bigger	0
big	0
Following	0
XAML	1
VerticalContentAlignment	1
Stretch	0
stretches	0
ListViewItem	1
Item	0
increases	0
selected	0
ItemTemplateSelector	1
Grid	0
Row	0
Number	0
<Grid	1
Grid.Row="1"	1
stretch	0
cross	0
word	0
bind	0
binding	0
Height	1
DataTemplate	1
ActualHeight	1
ListView.ItemContainerStyle	1
style	0
setter	0
Definition	0
applied	0
Auto	0
OrderAmount	1
assuming	0
orders	0
product	0
realise	0
enough	0
extracted	0
build	0
publish	0
Rubygems	0
main	0
Gemfile	0
discover	0
small	0
bug	0
interacts	0
Each	0
building	0
installing	0
locally	0
15	0
minimise	0
quick	0
develop/test	0
cycle	0
built	0
contradict	0
pushed	0
leading	0
guides	0
bundler	0
gems	0
rubygems	1
git	0
repository	0
conveniently	0
path	0
header.tpl	1
product.tpl	1
SEO	0
purposes	0
modifiy	0
meta	0
Currently	0
$description	1
<?php	1
echo	0
$heading_title	1
?>	1
essentially	0
header	0
accessing	0
model/controller	0
wasting	0
noted	0
comments	0
Once	0
impossible	0
contents	0
preg_replace()	1
processing	0
eliminates	0
paradox	0
Which	0
leave	0
looking	0
benefit	0
simpler	0
maintain	0
Even	0
seperation	0
concerns	0
functional	0
.html.erb	1
@consumer	1
.name	0
facebook_consumer.js	1
liked	0
<%=	1
@consumer.name	1
%>	1
saving	0
js.erb	1
thoughts	0
inline	0
Ruby	0
.js	1
.js.erb	0
render	0
partial	0
bet	0
app-wide	0
At	0
linked	0
scripts	0
multi	0
threaded	0
handles	0
events	0
starts	0
operations	0
loads	0
data-table	0
strongly-typed	1
dataset	0
DataGridView	1
bound	0
DataTable	1
ready	0
invokes	0
refresh()	1
lines	0
fits	0
crashes	0
datalines	0
occurs	0
3.5	0
XP	0
Win	0
64	0
becomes	0
unresponsive	0
resize	0
window	0
appears	0
attached	0
refresh	0
operation	0
.cs	1
related	0
direct	0
DataSet	1
UiDataSource	1
CurrentSamples	1
manner	0
mistake	0
somewhere	0
@ChrisF	0
u	0
databinding	1
dataTable	1
raises	0
guessing	0
WinForms	1
STA	0
threading	0
located	0
needed	0
Likely	0
aware	0
receives	0
backwards	0
enterprise	0
adapters	0
GUI	0
BindingList	1
quote	0
credit	0
crashing	0
cross-thread	0
progressively	0
mp3	0
DataSource	1
td	0
zebra	0
photo	0
animals	0
select	0
quantity	0
lion	0
unsuccessful	0
finding	0
Maybe	0
xpath	0
tags	0
depending	0
inputs	0
prior	0
avail	0
className	1
locator	0
Name	0
cssselector	1
line_item	1
Zebra	0
WebElement	1
holds	0
four	0
<td>	1
WebElements	1
modes	0
docs	0
site	0
exit	0
component	0
unbinds	0
startService()	1
remain	0
bindService()	1
unbindService()	1
gone	0
Eventually	0
stop	0
kill	0
neither	0
immediately	0
upon	0
build.gradle	1
plugin	0
applicationId	1
manage	0
config	0
resolved	0
phase	0
alternative	0
constructor	0
100%	1
re-order	0
divs	1
tablets	0
http://getbootstrap.com/css/#grid-column-ordering	0
hack	0
mobile	0
Its	0
Place	0
viewports	1
reorder	0
Linux	0
Ubuntu	0
fell	0
short	0
argparse	1
arguments	0
toying	0
archives	0
action	0
compress	0
test1.txt	1
Archive.zip	1
feel	0
stupid	0
*	0
Changed	0
places	0
-c	1
python3	1
idiot	0
biggest	0
turned	0
https://docs.python.org/3.3/using/windows.html	0
https://docs.python.org/3.3/using/unix.html	0
interested	0
links	0
displaying	0
beans	0
email	0
password	0
role	0
bean	0
testing	0
enters	0
everytime	0
turn	0
off	0
rerun	0
entered	0
ofcourse	0
doLogin.jsp	1
formError.java	1
validate	0
Beans	1
currently	0
addGenError	1
setGenError	1
sending	0
loginFormData	1
desired	0
exists	0
individuals	0
personal	0
drive	0
Happens	0
executes	0
failing	0
paste	0
Bare	0
bones	0
throwing	0
noticed	0
instantiated	0
FileSystemObject	1
fso	1
Late	0
interrogate	0
Scripting.FileSystemObject	1
early	0
Scripting	0
Runtime	0
CreateObject	1
detailed	0
Stack	0
Overflow	0
https://stackoverflow.com/a/3236348/491557	0
actions	0
UITableViewCell	1
overlap	0
cell	0
National	0
Geographic	0
swiped	0
listener	0
contentView	1
track	0
frame	0
constant	0
unable	0
kinda	0
iOS	0
creating	0
swipe	0
gestures	0
yourself	0
proceed	0
tabview	1
xib	0
CustomCell	1
CustomCell.swift	1
past	0
tableview	0
100pt	0
storyboard	0
datasource	1
Bear	0
stackoverflow	0
various	0
search	0
engines	0
told	0
spreadsheet	0
myself	0
deleting	0
Sorry	0
prevent	0
implies	0
Either	0
protection	0
comment	0
entire	0
individual	0
sheets	0
areas	0
sheet	0
Reading	0
Implies	0
modified	0
basis	0
inserting	0
protect	0
hide	0
span	0
protected	0
onEdit(e)	0
detect	0
cells	0
Note	0
adding/deleting	0
rows	0
onEdit()	1
onChange()	1
Within	0
deleted	0
inserted	0
range	0
affected	0
spreadsheets	0
parameters	0
misunderstood	0
amend	0
Assuming	0
interest	0
late	0
reply	0
http://d.pr/86DH+	0
divide	0
price	0
Angular	1
directive	0
bootstrap	0
formatter	0
returning	0
ngClick	1
watch/monitor	0
DOM	0
processs/compile	0
directives	0
Another	0
ng-click	1
twice	0
Datagrid	1
easy	0
columns	0
mouse	0
released	0
current	0
VIEW	1
code-behind	0
leader	0
thru	0
properties	0
Omitted	0
exceed	0
proceeded	0
multibind	1
datagridcell	1
datacontext	1
An	0
aside	0
due	0
constraints	0
datagridrow	1
viewmodel	1
Did	0
trick	0
Alternative	0
DataGrid	1
and/or	0
define	0
supporting	0
job	0
SelectedItem	1
SelectedValue	1
CurrentItem	1
CurrentCell	1
Futhermore	0
couldnt	0
handled	0
triggers	0
Binding	0
transmit	0
ViewModel	1
communication	0
View	0
http://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid%28v=vs.110%29.aspx	0
http://msdn.microsoft.com/en-us/library/system.windows.controls.datagrid.currentitem%28v=vs.110%29.aspx	0
http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selectedvalue%28v=vs.110%29.aspx	0
http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.selector.selecteditem%28v=vs.110%29.aspx	0
bindable	1
Edit	0
Link	0
MSDN	0
MultiBinding	1
Page	0
http://msdn.microsoft.com/en-us/library/system.windows.data.multibinding%28v=vs.110%29.aspx	0
requirement	0
ICommand	1
Property	1
basic	0
this.	0
PropertyChangedCallback	1
attach	0
handle	0
PreviewKeyDown	1
@Value	1
@AID	1
stored	0
procedure	0
php	0
subscribe	0
section	0
pressing	0
asking	0
his	0
emails	0
users	0
subscription	0
implemented	0
totally	0
DB	0
clients	0
apps	0
voila	0
cloud	0
excel	0
Test.xlsx	1
formula	0
"='C:[Sample.xlsx]Sheet1'!B14"	1
Smaple.xlsx	1
B14	0
Excel	0
Options->	1
Advanced	0
->General	0
un-checking	0
Ask	0
automatic	0
vaiable	0
ReveiveSMS.class	1
ReceiveSMS.class	1
messageBody	1
thanks	0
SharedPreferences	1
ReceiveSMS	1
recently	0
switched	0
distributions	0
Anaconda	0
Continuum	0
Analytics	0
3.3	0
Sublime	0
runs	0
except	0
completion	0
enable	0
normal	0
live	0
unbuffered	0
-u	1
flag	0
VBA	0
macro	0
MS	0
Outlook	0
our	0
organization	0
signed	0
Not	0
self-cert	0
cert	0
We	0
My_Org_VBA_Macro_Cert	1
MMC	0
snap-in	0
digital	0
signature	0
certs	0
rebooting	0
Tools->Digital	1
Signature	0
press	0
Choose	0
Cert	0
7.1	0
2013	0
articles	0
deal	0
self	1
cover	0
signing	0
gloss	0
over	0
wish	0
data-item	1
data-variable	1
IE	0
Should	0
become	0
el	0
DEMO	0
UPD	0
replaceWith	1
thx	0
@Barmar	1
replacement	0
kept	0
https://github.com/vinkla/instagram	0
Laravel	1
5.1	0
instruction	0
Mac	0
OS	0
forget	0
moment	0
hints/suggestions	0
\Exceptions\Handler.php	1
Exception	0
laravel	1
5.2	0
<=	1
https://github.com/laravel/framework/issues/9650	0
Handler	0
Do	0
release	0
vendor/Illuminate/Foundation/Bootstrap/HandleExceptions	0
@handleException	1
dd($e)	1
developed	0
Word	0
Puzzle	0
Game	0
greater	0
20	0
MB	0
game	0
Unity	0
approx	0
APK	0
advise	0
Have	0
https://docs.unity3d.com/Manual/ReducingFilesize.html	0
afraid	0
minimal	0
embedding	0
mono	0
unity	0
puzzle	0
mostly	0
native	0
Manual	0
Reducing	0
forum	0
many	0
remember	0
IT	0
visits	0
Cake	1
revisit	0
auto	0
logged	0
$this->cookie->read('Auth.User')	1
browsers	0
FireFox	0
cookies	0
setcookie()	1
Cookie	0
resolve	0
bypasses	0
cake	0
cakes	0
creation	0
algorithm	0
cookie.php	1
encryption	0
began	0
funky	0
messages	0
create/save	0
count	0
prohibited	0
Has	0
experienced	0
upgraded	0
1.9	0
2.3.9	0
mistaken	0
changelog	0
ruby-on-rails-2-3-9-released	0
nuance	0
bunch	0
LudoCore/Singleton.h	1
included	0
earlier	0
Make	0
semicolons	0
Quick	0
#include	1
<class	1
C>	1
Singleton	1
predeclaration	1
complains	0
incomplete	0
LudoTimer	1
Singleton.h	1
defines	0
amount	0
VRAM	0
Visual	0
Studio	0
Graphics	0
Analyzer	0
graphic	0
Object	0
Table	0
Unfortunately	0
megabytes	0
require	0
SDK	0
ccavenue	0
prestashop	0
1.2.5.0	0
successful	0
shopping	0
cart	0
clearing	0
CCavenue	0
Payment	0
bluezeal.in	1
merchant	0
account	0
Return	0
http://myshop	0
/modules/ccavenue/validation.php	1
ccavenue.php	1
$Url	1
http://'.htmlspecialchars($_SERVER['HTTP_HOST'	1
ENT_COMPAT	1
.__PS_BASE_URI__	1
modules/ccavenue/validation.php	1
validation.php	1
Ie	0
AuthDesc	1
Order_Id	1
regenerating	0
settings.	1
directory	0
rm	1
capture	0
quotes	0
assignment	0
export_folder_path	1
slanted	0
Unicode	0
bash	0
treated	0
literals	0
copypasting	0
blogs	0
editor	0
macOS	0
Replace	0
regular	0
ASCII	0
disable	0
smart	0
care	0
spaces	0
Had	0
real	0
life	0
Why	0
naming	0
mutators	1
prefixes	0
understandable	0
myMember	1
Member	0
setMyMember	1
getMyMember	1
historical	0
get*	0
set*	1
specified	0
JavaBeans	0
specification	0
libraries	0
reflection	0
expect	0
Jackson	0
mapper	0
serialize	0
get/setters	0
annotations	0
styles	0
Perl	0
->someProperty()	1
getter	0
->someProperty($newValue)	1
Basic	0
Single-Row	0
Tile	0
Source	0
configurations	0
tile	0
sources	0
overlays	0
overlay	0
positioned	0
placed	0
way.	0
tileSources	1
independent	0
pages	0
console	0
TiledImage.imageToViewportRectangle	1
initialization	0
Codepen	0
https://codepen.io/hussainb/pen/QQPPvL	0
css	0
Looks	0
OpenSeadragon	0
ticket	0
https://github.com/openseadragon/openseadragon/issues/1412	0
storing	0
separately	0
viewer	0
https://codepen.io/iangilman/pen/aqgzJZ	0
plot	0
belong	0
x-axis	0
axis	0
markers	0
http://i.stack.imgur.com/FNcob.png	0
anybody	0
Viktor	0
Matplotlib	1
snaps	0
limits	0
factors	0
5	0
100	0
wind	0
boundary	0
ax.margins	1
padding	0
autoscaling	0
calculated	0
13	0
weeks	0
separate	0
linking	0
initial	0
confused	0
dateadd()	1
child_process	1
dns	1
configurable	0
Remove	0
modules	0
node.gyp	1
remove	0
lib	0
builtinLibs	0
lib/internal/module.js	1
Be	0
tests	0
benchmarks	0
child_proccess	1
lib/internal/v8_prof_polyfill.js	1
lib/internal/cluster/master.js	1
commence	0
stating	0
objective	0
13-bit	0
integers	0
<	1
trillions	0
imperative	0
optimize	0
utilizes	0
2.7	0
pyopencl	1
averaging	0
800	0
GFlops	0
ATI	0
Radeon	0
6870	0
caring	0
<,	1
>,	1
operators	0
byte	0
floats	0
(as	0
now),	1
bitwise	0
bits	0
increase	0
speed	0
models	0
orm	0
refrence	1
group_by	1
aggregates	0
annotate	0
django	0
person	0
person_name	1
Person	0
Car	0
car_owner	1
person_id	1
cars	0
belonging	0
group_by(person_name)	0
sorted	0
owner	0
%x%	1
car_id	1
>=	1
List	0
criteria	0
Cars	0
Owners	0
intend	0
https://reqres.in/api/users/2	0
sends	0
follows	0
wanna	0
grab	0
avatar	0
binary	0
Observable	1
approached	0
finish	0
final	0
switchMap	1
concatMap	1
mergeMap	1
pop-up	0
filled	0
Submit	0
Whenever	0
closes	0
target	0
_self	1
tab	0
yet	0
stay	0
AJAX	0
listed	0
non-AJAX	1
popup	0
clicks	0
underneath	0
JSP	0
backed	0
servlet	0
zoomPlot.generatePlot()	1
.png	1
displays	0
submits	0
recycle	0
init	1
Elsewhere	0
ways	0
Iframe	0
Target	0
iframe	0
Visually	0
visibility	0
none	0
latter	0
destroys	0
Prevent	0
submission	0
submitted	0
dialog	0
Wrap	0
div	1
#results	1
-container	1
NOTE	0
DO	0
FORGET	0
jQuery	0
PS	0
snippet	0
functioning	0
:::EDIT::	1
Respond	0
src	0
Especially	0
JavaScript	0
monitor	0
matchmaker	1
self()	1
Threads	0
trade	0
tids	1
make_match()	1
make_match	1
pair	0
sleep	0
mutex	1
condition	0
pthread.h	1
mustbe	0
evaluate	0
correctness	0
feedback	0
wether	0
Rg.Plugins.Popup	1
confirmation	0
Item1	1
pause	0
till	0
TaskCompletionSource	1
PopupAlert	1
async	0
usage	0
leverage	0
MessagingCenter	1
confirm	0
mat	0
first.mat	1
second.mat	1
third.mat	1
,..	0
variable1	1
<3400x1	1
double>	1
variable2<1143x1	1
variable3<1141x1	1
concatenate	0
somebody	0
Many	0
matlab	1
vectors	0
combine	0
disk	0
Something	0
playing	0
expansion	0
pack	0
stuff	0
downloader	0
special	0
values-v9/styles.xml	1
notification	0
causes	0
preAPI9	1
api9	0
<uses-sdk	1
android:minSdkVersion="8"	1
android:targetSdkVersion="9"	1
/>	1
AndroidManifest.xml	1
naively	0
eclipse	0
ignore	0
api8	0
deployed	0
market	0
values-9	0
phone	0
level	0
hoping	0
trivial	0
btw	0
Description	0
Resource	0
Path	0
Location	0
Type	0
retrieving	0
matches	0
android:TextAppearance.StatusBar.EventContent.Title	1
styles.xml	1
/Google	0
Play	0
Downloader	0
Library/res/values	0
-v9	1
AAPT	0
Problem	0
posted	0
apk	0
libs	0
stumped	0
Update	0
values-v9	1
rebuilt	0
DownloadManager	1
fixed	0
2.3.3	1
toolchain	1
buiding	0
android:minSdkVersion	1
8	0
values-v9/	1
Removing	0
dark	0
font	0
toolbar	0
besides	0
Toolbar	0
appcompat	1
xml	0
reflected	0
tutorial	0
http://developer.android.com/training/appbar/index.html	0
SLIDE	0
UP	0
animation	0
repeating	0
onAnimationEnd	1
fired	0
incremented	0
starting	0
tickerView.startAnimation(animSlideUp)	1
Method	0
Avoid	0
animations	0
animate	0
scaleY	1
LinearInterpolator	1
Repeat	0
sec	0
restart	0
OnAnimationEnd()	1
Firebug	0
ajax	0
yes	0
firebug	0
marks	0
yellow	0
dynamic	0
Sure	0
inspect	0
FireBug	0
recent	0
accounts	0
OSX	0
split	0
bottom	0
NSTabview	1
tabs	0
showing	0
bars	0
tabless	0
Qt	0
graphicsView	1
fitInView	1
nicely	0
lies	0
maximize	0
graphics	0
horizontal	0
talking	0
maximized	0
Quite	0
resizeEvent	1
relies	0
QGraphicsView	1
QGraphicsScene	1
zoom	0
;)	0
share	0
Instagram	0
Kingfisher	0
throughout	0
download	0
cache	0
UIImageViews	1
Download	0
objective-C	0
Swift	0
Rename	0
.igo	0
instagram	0
exclusive	0
depend	0
hooks	0
Documentation	0
scarce	0
specially	0
push	0
navigation	0
UIBarButtonItem	1
System	0
Action	0
IBAction	1
excludedActivityTypes	1
complete/exhaustive	0
UIActivityTypes	1
gleaned	0
code-complete	0
command-clicking	0
UIActivity	1
struct	0
uncomment	0
exclude	0
future	0
sounds	0
UIImage	1
documents	0
Saving	0
Retrieving	0
Sharing	0
DFD	0
pointed	0
VC	0
GDI+	0
contexts	0
includes	0
Font	0
SolidBrush	1
White	0
Black.	0
Pen.	0
strategy	0
hold	0
widely	0
read-only	0
avoids	0
create/dispose	0
took	0
thread-safety	0
accesses	0
accessed	0
basically	0
lifetime	0
200	0
short-life	0
disposed	0
asap	0
sometime	0
unexpected	0
resources	0
outage	0
exception	0
hopefully	0
exceptions	0
wiser	0
tons	0
real-world	0
conclusions	0
theses	0
strategies	0
Caching	0
System.Drawing	1
cheap	0
expensive	0
allocated	0
heap	0
processes	0
desktop	0
limited	0
65535	1
Creating	0
brush	0
pen	0
roughly	0
microsecond	0
miniscule	0
cost	0
involves	0
sizable	0
chunk	0
taken	0
caches	0
Other	0
hogging	0
needlessly	0
dangerous	0
blindly	0
applying	0
relying	0
finalizer	0
lots	0
heavy	0
painting	0
allocation	0
GC	0
exhaust	0
quota	0
GDI	0
10,000	0
wrappers	0
themselves	0
10000	0
finalizers	0
diagnose	0
Task	0
Manager	0
Select	0
Columns	0
tick	0
Objects	0
Might	0
USER	0
leaked	0
eye	0
counts	0
steadily	0
climbing	0
spells	0
doom	0
Sitecore	0
references	0
SPEAK	0
width/height	1
bears	0
resemblance	0
SheerResponse.ShowModalDialog	1
passing	0
suffixed	0
px	0
box	0
SPEAK-based	0
dialogs	0
7.5	0
8.0	0
customize	0
\sitecore\shell\Controls\jQueryModalDialogs.html	1
string.Empty	1
ForceDialogSize	1
designing	0
interfaces	0
abstract	0
suited	0
missed	0
considerations	0
design	0
domain	0
consider	0
choosing	0
abstracts	0
reasonable	0
common	0
boilerplate	0
concrete	0
implementations	0
Providing	0
greatest	0
latitude	0
implementers	0
abstraction	0
implementer	0
all--and	0
ensures	0
ALWAYS	0
occur	0
Negative	0
goo	0
pseudocode	0
IVehicle	1
Vehicle	0
PutCarInGear()	1
fulfill	0
expectation	0
matters	0
AND	0
CryptoJS	1
aes256	1
.net	0
javascript	0
Cordova	0
//.Net	1
//	0
encode	0
Base64	1
decode	0
Javascript(Cordova)	1
match	0
generated	0
.Net	1
data.frame	1
pairs	0
logged_in	1
deauthorize	0
logs	0
coercion	0
locate	0
advantage	0
pain	0
quickly	0
EventName	1
series	0
quicken	0
as.numeric(df$EventName)	1
diff(as.numeric(df$EventName))	1
imagine	0
-1	1
Data	0
recognition	0
detector	0
sqllite	0
studio	0
3.4	0
opencv	1
??	0
im	0
Indexing	0
zero-based	0
counting	0
36	0
38	0
authorization	0
access_token	1
Function	0
getUser	1
feed	0
fan	0
wall	0
cronjob	1
hour	0
CoreData	1
Background	0
downloading	0
caching	0
iPad	0
thumbnail	0
Transformable	0
triggered	0
callback	0
actual	0
hang	0
Doing	0
blocks	0
notice	0
Inspecting	0
sqlite	1
device	0
inform	0
core	0
row/cell	1
table/uicollectionview	1
NSURLConnection	1
callbacks	0
queue	0
locking	0
Core	0
rules	0
confinement	0
unfortunately	0
obsolete	0
block	0
Using	0
performBlock	1
performBlockAndWait	1
enqueued	0
serial	0
failure	0
Typically	0
NSFetchedResultsController	1
observes	0
fetch	0
populates	0
listen	0
informs	0
BufferedImage	1
copying	0
square	0
rotated	0
angle	0
equals	0
intersects	0
simplest	0
transform	0
Graphics2D	1
region	0
paint	0
Control	0
GridView1	1
GridView	1
tag	0
runat	1
Gridview	1
.aspx	0
contens	0
.aspx.vb	1
views	0
launching	0
whenever	0
initialize	0
status	0
present	0
modally	1
dictated	0
modalTransitionStyle	1
dismissViewControllerAnimated:completion	1
ViewController	1
iPhone	0
UINavigationController	1
pop	0
secondViewController	1
transition	0
performSegueWithIdentifier:sender	1
matter	0
segue	0
performed	0
instantiateViewControllerWithIdentifier	1
UIViewController	1
Avplayer	0
resume	0
stopped	0
global	0
CMtime	0
currenttime	1
seek(to:)	1
beginning	0
AVAudioPlayer	1
AVplayer	1
Audio	0
Unwind	1
2.in	0
viewdidload	1
perfect	0
re-download	0
audio	0
purse	0
wait	0
TextViews	1
copies	0
color	0
.gradlew	1
createCoverageReport	1
index.html	1
crashing.	0
98%	0
fail	0
nexus	0
connected	0
4.4.	0
plug-in	0
Bill	0
gradle	1
jacoco	1
packaged	0
broke	0
Couple	0
Instrumentation	0
failed	0
java.lang.VerifyError	1
upgrade	0
tools	0
21+	0
Hooray	0
testCoverageEnabled	1
.ec	0
Applying	0
hurt	0
reportsDir	1
report	0
build/outputs/reports/coverage/debug/index.html	0
craigslist	0
address(zip)	0
mapping	0
sites	0
city-wise/state	0
-wise	0
Indeed	0
Craigslist	0
sites/cities	0
prebuild	0
cities	0
geocoding	1
Tiny	0
Geocoder	0
Yahoo	0
Bing	0
offer	0
solutions	0
sort-by-nearest	0
geospatial	0
MongoDB's	0
reproduced	0
optimizations	0
replicates	0
optimization	0
straight	0
forward	0
commented	0
offending	0
concerned	0
assembler	0
perhaps	0
explanation	0
buggy	0
Env	0
VM	0
Server	0
2003	0
R2	0
SP1	0
VS2008	0
Team	0
Brian	0
expression	0
fatally	0
confuses	0
JIT	0
optimizer	0
41	0
concluded	0
passes	0
String.Concat()	1
comparison	0
moved	0
5c	0
connect.microsoft.com	0
beta	0
optimized	0
x86	0
disassembly	0
nobugz	0
highlighted	0
unoptimized	0
Forge	0
automation	0
forge	0
Package	0
dwg	0
preparing	0
conman	0
Summary	0
RVT	0
externalId	1
equal	0
Revit	0
UniqueId	1
RvtMetaProp	1
add-in	0
Oh	0
complete	0
succinct	0
Unique	0
IDs	0
Viewer	0
Elements	0
dealing	0
dbId	1
manipulate	0
.getProperties()	1
ElementID	1
exposed	0
title	0
12345	0
UniqueID	1
.getProperty()	1
surprised	0
straightforward	0
Nothing	0
SO	0
evoke	0
opening	0
understood	0
absolutely	0
nor	0
hitting	0
FEB	0
REST	0
Authorization	0
postman	0
perfectly	0
http://localhost/forms-basic/secure/org/data/f0720c16-d4b8-442f-8674-2d7fbdab8afc/F_Form1/8d4dfeed-aa11-45fc-a958-23d62d9328cc	0
accept	0
application/atom	1
+xml	1
drop	0
down	0
Combobox	1
dropdown	0
wich	0
combobox	1
applicable	0
theese	0
repeated	0
datavalidation	0
retrieved	0
NHibernate	1
WCF	0
ICollection	1
intitialized	0
PersistentGenericSet	1
-or	0
collections	0
ISet	1
Iesi.Collections	1
gap	0
serializing	0
mappings	0
Bag	1
IList	1
<T>	1
Set<T>	1
w	0
remote	0
facade	0
DTOs	0
endpoints	0
services	0
Jimmy	0
Bogards	0
Automapper	1
great	0
tool	0
re-reading	0
article	0
describes	0
David	0
Brion	0
follow	0
installer	0
Installshield	0
2012	0
depends	0
Registry	0
RegDBGetKeyValueEx	1
Installscript	1
trailing	0
backslash	0
serves	0
TARGETDIR	1
foreign	0
Chinese	0
Japanese	0
Korean	0
appended	0
backslash.This	1
pollutes	0
wrongly	0
translates	0
root-cause	0
purely	0
#define	1
UNICODE	1
anywhere	0
appends	0
fetches	0
currency	0
http://www.siao2.com/2005/09/17/469941.aspx	0
assigning	0
m_reqPath	1
treating	0
null-terminated	0
RegQueryValueEx()	1
writer	0
clearly	0
stated	0
Chances	0
buffer	0
possibility	0
allocate	0
terminator	0
terminated	0
redundant	0
leaking	0
RegOpenKeyEx()	1
succeeds	0
fails	0
altogether	0
RegGetValue()	1
deals	0
positioning	0
solvable	0
footer	0
disappears	0
sass	0
codepen	0
http://codepen.io/colintoh/pen/tGmDp	0
fixing	0
JSFiddle	0
https://jsfiddle.net/rq9nm772/1/	0
strange	0
parseResponse()	1
RecyclerView	1
onPostExecute	1
progressbar	1
invisible	0
notifydatasetchange	1
notifyDataSetChange()	1
AsyncTask	1
doInBackground()	1
communicate	0
onPostExecute()	1
private	0
suspicious	0
hard	0
cityList	1
activeOrders	1
Presumably	0
re-drawn	0
setNotifyOnChange(false)	1
mAdapter	1
delay	0
notifyDataSetChanged()	1
http://developer.android.com/reference/android/widget/ArrayAdapter.html#setNotifyOnChange(boolean)	0
parsed	0
Multi-threading	0
tricky	0
AsyncTasks	1
appearing/attempting	0
pitfalls	0
attempted	0
safety	0
privilege	0
listeners	0
ordersDatabase	1
RewriteRule	1
.htaccess	1
Condition	0
Force	0
www	0
secure-email	0
adapt	0
FYI	0
Apache	0
2.4	0
mod_rewrite	1
highly	0
recommend	0
HTTPS	0
particularly	0
Progressive	0
Apps	0
couple	0
synonyms	0
addition	0
synonym	0
construct	0
tuples	1
provided	0
tuple	0
difficulty	0
deciphering	0
mismatches	0
Of	0
useful	0
exercise	0
precedence	0
parsing	0
realize	0
avoided	0
wound	0
matching	0
composing	0
fst	1
snd	0
shaped	0
consumes	0
descriptive	0
improvement	0
observing	0
recursive	0
PGM	0
parentheses	0
$	1
low	0
lecture	0
semester	0
subset	0
Defines	0
tabular	0
chosen	0
break	0
\ifdefined	1
\fi	1
Incomplete	0
thrown	0
defining	0
outputs	0
char	0
elses	0
reach	0
goal	0
Plots	0
complicated	0
curved	0
book	0
picture	0
programs	0
recommendations	0
simple/basic	0
wrapped	0
Manipulate	0
parameterized	0
alpha	0
slider	0
accordingly	0
inspiration	0
Demonstrations	0
triangle-related	0
demonstrations	0
taking	0
geometry-related	0
Jay	0
Warendorff	0
He	0
structured	0
reuse	0
angleArc	1
helper	0
room	0
hierarchial	0
dimensional	0
obtained	0
Language	0
-3	0
root	0
Input	0
Output	0
&$a	1
non-root	0
nodes	0
parents	0
Access	0
recordset	1
declaring	0
asks	0
Enter	0
Parameter	0
Value	0
incorrect	0
picked	0
interpret	0
literal	0
immediate	0
Beyond	0
WHERE	0
DAO	0
Execute	1
dbFailOnError	1
Imagine	0
Regarding	0
logical	0
branching	0
ensured	0
evaluated	0
conditional	0
breaks	0
soon	0
efficent	0
retrace	0
interupt	0
do/while	1
invoking	0
arithmetic	0
leaving	0
bounds	0
ActingPointer	1
ends	0
OriginPointer	1
SOME_GIVEN_AMOUNT	1
iteration	0
behaviour	0
decremented	0
jsp	1
Gson	1
Write	0
toString()	1
Ljava.lang.String	1
@5527f4f9	1
ever	0
xmlHttpRequestObject.responseText	1
AngularJS	1
stores	0
$http.get().success	1
$.ajax({success})	1
eval	1
dual	0
thumbs	0
.change	1
console.log	1
full	0
https://fiddle.jshell.net/elliottjb7/fj9ot08v/	0
(.change())	1
8-10	0
JPanel	1
GameWindow	1
JFrame	1
panels	0
MainMenuPanel	1
label	0
directed	0
Tomcat	0
spent	0
days	0
beans.xml	1
logout	0
cached	0
employed	0
fixes	0
combination	0
Cache-Control	1
no-cache	1
no-store	1
reliable	0
forces	0
reload	0
Preferences	0
Security	0
subsequently	0
hit	0
fascinated	0
popular	0
love	0
newbie	0
ember.js	1
node.I	0
mailgun	0
Found	0
mailgun-js	1
express	0
parse-cloud	0
ember	0
mail	0
Ember	0
circumstances	0
hint	0
mail-sending	0
backend	0
jQuery-Ajax-Call	1
WPF	0
observable	1
Right	0
Mouse	0
Button	0
Click	0
Drag	0
Drop	0
external	0
Alt	0
Key	0
Left	0
initiate	0
DragDrop	1
irregular	0
selection	0
unclear	0
/Left	0
occurring	0
determined	0
clipboard	0
drag	0
Specially	0
DragLeave	1
delete/add	0
GridData	1
party	0
Telerik	0
shift	0
signal	0
disambiguate	1
mechanism	0
recognize	0
dropping	0
registered	0
respond	0
listening	0
satisfied	0
Override	0
preview	0
gather	0
bindings	0
organize	0
baseline	0
optionally	0
crc	0
head	0
round	0
checksum	0
replication	0
entry	0
MYSQL	0
duplicate	0
entries	0
lengthy	0
SERVER	0
checksum_binary	1
Alter	0
safe	0
hash	0
separator	0
concat	1
messing	0
node.js	1
npm	1
computer	0
package.json	1
dependencies	0
node_modules	1
near	0
https://npmjs.org/doc/json.html	0
placeholder	0
code.	0
Would	0
keyword	0
finalAnswer	1
Change	0
executing	0
breakpoints	0
Breakpoints	0
onResume()	1
Activity	0
doinbackground	1
luck	0
.gradle	1
.AndroidStudioPreview	1
folders	0
restarted	0
nuclear	0
dataframes	1
pool	0
filter	0
list1	1
dataframe	0
dplyr::filter	1
%in%	1
Richard	0
developing	0
single-page	0
Backbone	1
router	0
pushState	1
backbone	1
routing	0
problem/question	0
route	0
dashboard	0
Clients	0
Dash.Views.Dashboard	1
renderDashboard()	1
rendering	0
routes	0
rendered	0
/dashboard	1
afther	0
$el	1
$(this.el)	1
alway	0
assumption	0
Dashboard	0
.dashboard	1
this.el	1
setElement	1
params	0
merge	0
interpreted	0
response_status	1
redirect	0
hostname	1
redirecting	0
altbeacon	1
didEnterRegion	1
notifier	1
sees	0
beacon	0
scan	0
minutes	0
react	0
frequency	0
scans	0
detection	0
foreground	0
forewarned	0
battery	0
power	0
tweak	0
period	0
tolerance	0
drain	0
5*3600l	1
L	0
scanning	0
APIs	0
promise	0
improve	0
tradeoff	0
timers	0
for4.3	1
4.4	0
judgment	0
schedule	0
weeklyPlan	1
hasNext()	1
feature	0
slightly	0
closures	0
groovy-code	0
anonymous	0
applications	0
worry	0
pesky	0
weeklyPlan.add	1
=>	1
jumped	0
outside	0
LINQ	0
describing	0
constructs	0
rapidly	0
platform	0
largely	0
political	0
processor	0
waiting	0
scheduler	0
scheduled	0
brought	0
RAM	0
kernel	0
keeps	0
descriptor	0
addressing	0
Two	0
physical	0
otherwize	0
DLL	0
mapped	0
Login	0
Layout	0
mvc	0
Controller	0
Im	0
alert	0
Ajax	0
Form	0
Scripts	0
datatype	1
responding	0
data.Code	1
alert({}.Code)	1
whereas	0
{Code:''};alert(data.Code)	1
described	0
Probably	0
alerts	0
AFNetworking	1
2.0	0
german	0
letters	0
ä	0
ü	0
ö	0
devices	0
SIGABRT	1
PrevSpeedDic	1
circumstance	0
Local	0
initialized	0
nil	0
DriveInfoDic	1
branch	0
Engine	0
CSV	0
unicodecsv	1
daily	0
Blobstore	0
intention	0
Unforuntately	1
Tim	0
blobstore	1
entity	0
serve	0
cron	0
BlobstoreDownloadHandler	1
blob	0
keep/manage	0
yourapp	0
https://developers.google.com/appengine/docs/python/blobstore/overview#Writing_Files_to_the_Blobstore	0
Xcode	0
IPA	0
apple	0
capabilities	0
lazy	0
searched	0
Xcode6	0
entitlements	0
Identifier	0
UPDATED	0
project.pbxproj	1
@colinta	1
screenshot	0
gave	0
diff	0
Came	0
HTH	0
pagerank	0
mxm	0
iterations	0
Iteration	0
Looking	0
Variables	0
p	0
q	0
host_rank[k]	1
k	0
lol	1
eucl	0
infinite	0
suspect	0
do-while	1
d	0
n	0
sumPR	1
repeats	0
repeat	0
Say	0
US$	0
XX.xx	0
GBP£	1
YY.yy	1
GBP	0
conversion	0
ratio	0
prices	0
USD$	1
ending	0
.xx	0
Prices	0
cents	0
wrap	0
jquery.each()	1
jquery(this).html("GBP£YY.yy")	1
replacements	0
fire	0
ANY	0
titles	0
so.	0
benefits	0
compatible	0
alot	0
textnodes	1
benefitial	0
handlers	0
fastdom	0
dom	0
tasks	0
loose	0
edited	0
instant	0
iterate	0
numeric	0
converted	0
blade	0
templating	0
Due	0
limitations	0
fly	0
Oddly	0
ignoring	0
providing	0
Essentially	0
happy	0
ftp	0
Although	0
attempts	0
Clear	0
Blade	1
Servlets	0
5.5	0
webpage	0
30minutes	0
icon	0
throws	0
sayin	0
Sounds	0
timing	0
web.xml	1
60	0
symptom	0
indeed	0
timed	0
Because	0
fashioned	0
scriptlets	1
<%	1
servlets	0
request/response	0
business	0
harder	0
naildown	0
NullPointerException	1
homepage_jsp.java	1
107	0
trackback	0
homepage.jsp	1
request.getSession()	1
request.getSession(false)	1
etcetera	0
suggest	0
orientdb	1
spring	0
mvc-dispacher-servlet.xml	1
pom.xml	1
OrientDb	1
2.2.13	0
configuring	0
it.if	0
NT	0
operating	0
numerous	0
Office	0
Automation	0
states	0
suitable	0
sorts	0
saw	0
xls	0
xlsx	0
xlsm	0
suffer	0
threading/security/license	0
imposed	0
years	0
up/embraced	0
2007	0
impovement	0
2010	0
comparing	0
SpreadsheetGear.Net	1
purchase	0
Aspose.Cells	1
Evaluated	0
collegue	0
Appeared	0
fairly	0
performance	0
comparable	0
Interop	0
GemBox	1
Services	0
SharePoint	0
Mapper	0
SmartXls	1
ActiveXls	0
Fairly	0
Properties	0
preference	0
Methods	0
Despite	0
claim	0
1M	0
cheaper	0
FlexCel	0
decided	0
help/API	0
manual	0
useless	0
Koogra	1
documentations/information	0
FileHelpers	1
Flexcel	1
Lowest	0
proximity	0
technical	0
pick	0
SyncFusion	0
BackOffice	1
Medium	0
implementing	0
inconsistent	0
unit	0
Attempted	0
encourage	0
hovers	0
ie10	0
anchor	0
work-around	0
specifying	0
background-color	1
doesnt	0
non	0
IE10	0
Virtual	0
Machine	0
retarded	0
belive	0
Simply	0
<html>	1
Yep	0
Explorer.	0
:hover	1
<a>	1
<button>	1
SSIS	0
Application	0
crashed.I	0
eventviewer	1
pipelines	0
ordered	0
mutator	1
reaches	0
mutations	0
Quickly	0
scrapy.item.Item	1
touched	0
modifications	0
Items	0
chain	0
restructure	0
child-parent	0
relations	0
dimension	0
subarrays	0
played	0
multisort	0
Sort	0
multi-dimensional	0
labels	0
BorderLayout	1
JComponents	1
5th	0
completed	0
arrays	0
JLabels	1
GridLayout	1
JTable	1
JScrollPane	1
rich:dataTable	0
rendering.I	0
backing-bean	0
zero	0
JSF-2.0	0
RichFaces-4	1
datatable	1
EL	0
populated	0
nullpointerexception	1
easer	0
a4j:jsFunction	1
reRender	1
DOMXpath	1
research	0
lead	0
inputbox	1
event.In	0
calender	0
datepicker	1
integrate	0
integration	0
flawlessly	0
Lambda	0
Proxy	0
Integration	0
googled	0
despite	0
continue	0
un-check	0
okay	0
malformed	0
POJO	1
Ardent	0
US	0
customers	0
extending	0
Canadian	0
requirements	0
zip	0
5-9	0
strip	0
dash	0
punctuation	0
postal	0
codes	0
postal_codes	1
zip_code	1
offered	0
vice	0
versa	0
Theoretically	0
complex	0
regex	1
country	0
required_without	1
raspberry	0
pi	0
dies	0
Pi	0
distribution	0
/var/log/wtmp	1
retrieve	0
Explanation	0
flags	0
-F	1
handy	0
-R	1
suppresses	0
-x	0
shutdown	0
en	0
runlevel	1
filters	0
boot	0
recomend	0
append	0
flushed	0
Next	0
elapsed	0
shuts	0
recover	0
Context	0
GNU	0
4.4.12(1)-release	1
Powerline	0
2.5.2-1	0
PS1	1
Script	0
config.json	1
colors.json	1
colorschemes/shell/default.json	1
themes/shell/default.json	1
him	0
chars	0
wraps	0
ps	0
non-printable	0
powerline	0
notifications	0
scheduleNotification	1
pressed	0
4th	0
Relevant	0
Receiver	0
notifies	0
EmployeeNo	1
EngagementID	1
0507	0
Engagement	0
username	0
Die	0
die	0
brackets	0
getFaceValue	1
roll	1
rolling	0
rowA	1
=[	1
index-variable	1
reduce	0
duplicity	0
mandatory	0
perl	0
subroutines	0
Try_2.pl	1
subroutine	0
Try_1.pl	1
Try_1.pm	1
.pm	1
.pl	0
ArrayList	1
Vectors	0
HashMp	0
bank	0
ArrayList/Vector	1
key-value	0
go-to	0
trees	0
forest	0
Vector	0
subtle	0
2001	0
newest	0
considered	0
nowadays	0
synchronized	0
slower	0
unnecessary	0
rountine	0
0.1	0
hover	0
0.100000000000001	1
5.2.1	0
compiling	0
32	0
decimal	0
representable	0
IEEE	0
floating	0
representation	0
falls	0
camp	0
hardware	0
computing	0
approximation	0
0.5	1
0.25	1
in-depth	0
description	0
caused	0
fixed-sized	0
digits	0
inherent	0
converting	0
rid	0
precision	0
chop	0
presented	0
potentially	0
taps	0
deeper	0
viewWillAppear	1
viewDidLoad	1
nib	0
resident	0
caller	0
inelegant	0
clarify	0
unloaded	0
viewDidUnload	1
prerequisite	0
up-to-date	0
dealloc	1
low-memory	0
conditions	0
responsive	0
explained	0
-(void)viewDidUnload	1
-dealloc	1
setRootTableViewController	1
UITableViewController	1
*)	1
reloadData	1
CustomTableViewController	1
rootViewController	1
initWithRootViewController	1
stack	0
alias	0
Query	0
"",'',[]	1
https://support.microsoft.com/en-us/kb/298955	0
SELECT	0
TRANIN'AS	1
NAME	0
CASE	1
WHEN	0
ALT3.TRANINDT	1
BETWEEN	0
20150603	1
20150601	1
THEN	0
END	0
AS	0
CurrentMonth	1
20150501	1
20150531	1
LastMonth	1
FROM	0
ALT3	0
ago	0
Normally	0
rename	0
person__name	1
person__email	1
knows	0
causing	0
cant	0
Inside	0
http://jsfiddle.net/376fLujs/3/	0
Include	0
console.log("working")	1
forms	0
re-using	0
Always	0
http://jsfiddle.net/376fLujs/4/	0
brief	0
GitLab	0
repositories	0
specifically	0
bellow	0
downloads	0
unzip	0
MAC	0
.git	1
corrupted	0
nuisance	0
treats	0
honest	0
begin	0
10.8.4	0
apparently	0
newer	0
GroupMe	0
invite	0
friends	0
researched	0
Scringo	0
Group	0
imply	0
rooms	0
chats	0
customizing	0
invitation	0
ScringoCommentButton	1
http://www.scringo.com/docs/android-guides/popular/setup-chat-rooms-and-forums/#Adhoc	0
allowed	0
BTW	0
scringo_comment_button.xml	1
Library	0
csv	0
accountID	1
000005	1
000016	1
zeroes	0
webtest	0
MKV	0
subtitle	0
grouped	0
majority	0
4K	0
online	0
mkv	0
20GB	0
TV	0
media	0
FAT16/32	0
exFAT	0
Considering	0
limitation	0
4GB	0
FAT32	0
gb	0
2GB	0
3Gb	0
metadata	0
main.mkv	1
respective	0
movie	0
folder/	0
part1.dat	1
part2.dat	1
part3.dat	1
part4.dat	1
xen	0
win	0
xp	0
dedicated	0
pc	0
selenium-rc	0
selenium	0
pear	0
sits	0
remote-controlled	0
windowses	0
RC	0
gray	0
base64_decode()	1
os	0
corruption	0
Photoshop	0
wont	0
weigh	0
0.7k	0
unix	0
recognizes	0
PNG	0
1440	0
900	0
8-bit/color	0
RGB	0
non-interlaced	0
resolution	0
rc	0
ie	0
-jar	1
selenium-server.jar	1
symptoms	0
accross	0
Selenium	0
1.0.1	0
$this->selenium->windowMaximize()	1
$screenshot	1
$this->selenium->captureScreenshotToString()	1
Testing_Selenium	1
wrapper	0
regards	0
Andras	0
posting	0
forums	0
desperate	0
imput	0
apologies	0
upsets	0
:-)	1
16:38:24.562	1
INFO	0
Got	0
base64	0
a5304a287eb244028c8c843b294bf98f	0
java.net.SocketException	1
Software	0
abort	0
socket	0
java.net.SocketOutputStream.socketWrite0(NativeMethod)	1
java.net.SocketOutputStream.socketWrite(UnknownSource)	0
java.net.SocketOutputStream.write(UnknownSource)	1
org.mortbay.http.ChunkingOutputStream.bypassWrite(ChunkingOutputStream.java:151)	0
org.mortbay.http.BufferedOutputStream.write(BufferedOutputStream.java:142)	1
org.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:423)	1
org.mortbay.http.HttpOutputStream.write(HttpOutputStream.java:414)	1
org.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370)	1
org.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:125)	0
org.mortbay.http.HttpContext.handle(HttpContext.java:1530)	1
org.mortbay.http.HttpContext.handle(HttpContext.java:1482)	1
org.mortbay.http.HttpServer.service(HttpServer.java:909)	1
org.mortbay.http.HttpConnection.service(HttpConnection.java:820)	1
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)	1
org.mortbay.http.HttpConnection.handle(HttpConnection.java:837)	1
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)	1
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)	1
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)	1
captures	0
black	0
Without	0
knowing	0
creator	0
entirely	0
BrowserMob	0
monitoring	0
launch	0
screenshots	0
locations	0
VNC	0
startup	0
auto-logs	0
.bat	1
Program	0
Files->Startup	1
launches	0
ensuring	0
interacting	0
Good	0
adventures	0
outlined	0
star	0
stars	0
im1	1
im4	1
R.drawable.star	1
react-native	1
rnpm-install	1
ERR	0
went	0
linking.	0
Cannot	0
UIAppFonts	1
accidentally	0
Info.plist	1
ios	0
Restoring	0
marking	0
asterix	0
Surely	0
/n	1
Forms	0
wxWidgets	1
borderless	0
thin	0
movable	0
wxPanel	1
wxPython	1
article/question	0
firing	0
EVT_LEFT_DOWN	1
looked	0
http://docs.wxwidgets.org/2.6/wx_samples.html	0
http://docs.wxwidgets.org/2.6/wx_eventhandlingoverview.html#eventhandlingoverview	0
critical	0
lock	0
semaphores	0
granted	0
privileges	0
can't	0
MacOS	0
Lion	0
shell	0
10.6	0
host-part	0
%	1
GRANT	0
@'localhost'	1
connecting	0
Travis	0
.env	1
env-file	1
after_failure	1
/Users/travis/.opam/system/build/topkg.0.9.0/topkg	0
-19768-81a3ce.env	1
yml	0
before_install	1
reached	0
absolute	0
fastest	0
pulling	0
placing	0
hundreds	0
ideally	0
Processing	0
maintaining	0
numpy	1
bisect	0
AboveNumber	1
unordered	0
cut	0
SSO	0
Recently	0
discovered	0
Waffle	1
seams	0
Kerberos	0
trust	0
groups	0
do-loop	1
Thomas	0
SSPI	0
performs	0
involving	0
tickets	0
behalf	0
encrypted	0
secret	1
guarantees	0
Ticket	0
Granting	0
authenticated	0
security	0
Windows-specific	0
MIT	0
protocol	0
experimenting	0
elasticsearch	1
Regards	0
enron	0
localhost:9200/_search	1
localhist	1
urls	0
site:example.com	1
inurl	1
constrain	0
https://www.google.ca/search?site=webhp&source=hp&q=Car+site%3Aexample.com+AND+inurl%3A%26%2363%3B&oq=Car+site%3Aexample.com+AND+inurl%3A%26%2363%3B	0
Uncaught	1
TypeError	1
Spark	0
1.5.1	0
observation	0
DataFrame	1
backward	0
knwn	0
complicates	0
skipped	0
Scala	0
zero323	0
succeed	0
''	0
translate''	1
Pyspark	1
partitioned	0
pyspark	1
Load	0
Column	0
partitions	0
Convert	0
rdd	0
partition	0
Cloudera	0
spark-ts	1
offers	0
sequential	0
time-windowed	0
imputing	0
sequence	0
http://blog.cloudera.com/blog/2015/12/spark-ts-a-new-library-for-analyzing-time-series-data-with-apache-spark/	0
popup()function	1
contained	0
responses	0
eval()	1
nasty	0
popup()	1
Better	0
excel2007	0
poi.jar	1
jdk1.6.But	0
phenomenon	0
HashMap())	1
java.util.ArrayList	1
Map.clear()	1
ArrayList.add()	1
overridden	0
older	0
Snippets	0
rowForSheet(List)	1
Amazon	0
Redshift	0
analysis	0
unload	0
RedShift	0
S3	0
prefix	0
bucket	0
graceful	0
cleanup	0
enumerate	0
s3cmd	1
s3tools	0
http://s3tools.org/s3cmd	0
roles	0
consisting	0
net.tcp	1
808	0
810	0
811	0
endpoint	0
front	0
UserService	1
<AllowAllTraffic/>	1
<WhenSource	1
...>	1
Second	0
variations	0
FixedPort	1
PortRange	1
="*"	1
NetworkTrafficRules	1
WebRole.cs	1
sudden	0
receiving(Internal)	0
WebRole	1
IP-addresses	0
c:\data	1
\	0
escape	0
quotes/tabs/newlines	1
c:\\data	1
c:/data	1
slash	0
raw	0
r'c:\data'	1
careful	0
escaped	0
multiplication	0
3*	0
5)	1
backslah	0
unclosed	0
illegal	0
Refer	0
Javadoc	0
String.replaceFirst	1
sequences	0
untrusted	0
appropriately	0
modification	0
String.substring	1
StringBuilder	1
multi-digit	0
negative	0
Scanner	1
1D	0
Array	0
2D	0
positions	0
charArray	1
array.char[][]	0
char[6][6]	1
tips	0
guidance	0
6*6	0
easiest	0
Live	0
Demo	0
flat	0
keyField	1
valueField	1
CustomerNumbers	1
customer_number	1
Users	0
Groups	0
Need	0
CustomerNumbers.customer_number	1
Groups.name	1
plus	0
shoud	0
duplicated	0
@drmonkeyninja	1
Model	0
Customer	0
Numbers	0
CakePhp	1
soultion	0
difficult	0
concept	0
Solution	0
MyApp.Web	1
MyApp.Logic	1
MyApp.Data	1
gridview	1
tablename	1
dropdownlist	1
paging	0
Get_Data	1
tier	0
notion	0
create/load/consume	0
layers	0
specialize	0
Layer	0
responsible	0
communicating	0
populating	0
typically	0
represent	0
customer	0
hotel	0
booked	0
simplyfy	1
whats	0
recommendation	0
datatables	1
motivation	0
developers	0
member	0
books	0
craig	0
larman	0
uml	0
patterns	0
asp.net	1
IE8	0
IE11	0
4.5	0
trusted	0
intranet	0
UICollectionViewController	1
>2000	0
sections	0
scrolling	0
became	0
extremely	0
choppy	0
Instruments	0
lookup	0
layoutAttributesForElementsInRect	1
attributes	0
prepareLayout	1
~	0
25%	1
cpu	0
enumerating	0
NSIndexPath	1
isEqual	1
sectioned	0
UICollectionViewFlowLayout	1
smooth	0
Well	0
turns	0
dictionaries	0
filtering	0
NSPredicate	1
Django	1
1.5.4	0
pip	0
-U	1
-I	0
freeze	0
1.6.5	0
virtualen	1
v)	1
re-deploy	0
explains	0
happened	0
--upgrade	1
expert	0
Driven	0
Development	0
2nd	0
Ed	0
Windoze	0
W10	0
Cygwin	0
3.6	0
pip3	1
1.11.8	0
(?)	1
knowledgeable	0
talk	0
3.x	0
rate	0
streaming	0
weblogic	0
redis	0
real-time	0
rates	0
talks	0
dll	0
motors	0
30	0
While	0
MDI	0
Child	0
Multithreading	0
VCL	1
TThread	1
descendant	0
doubles	0
public	0
var	1
ChildForm	1
Synchronize	0
CriticalSection	1
PostMessage	1
intermediary	0
Thread	0
TThreadList	1
maintainable	0
readings	0
Define	0
instantiate	0
invest	0
FIFO	0
messaging	0
flow	0
puts	0
Delphi	0
showed	0
freely	0
TAnyValue	1
http://www.cromis.net/blog/downloads/	0
production	0
whereby	0
hits	0
emailing	0
checkboxes	0
checkbox	0
ticked	0
nee	0
dataname	1
push()	1
length	0
concat()	1
SOLUTION	0
oldish	0
Symfony2	1
2.0-RC6	0
__construct	1
RoleSecurityIdentity	1
December	0
Role	0
RoleInstance	1
ACL	0
night	0
ROLE_GROUP1	1
ROLE_GROUP	1
object-level	0
ACE	0
ROLE_GROUP2	1
identical	0
grant	0
permissions	0
Am	0
seemed	0
drilled	0
Symfony	0
permission	0
$sid->getRole()	1
this->role	1
mark	0
Foreign-key	1
FkOriginalTextId	1
OriginalText	1
key/value	0
customized	0
CustomText	1
Staff-member	1
Lambda/Linq	0
TextValue	1
overriden	0
CTE	0
normalized	0
heading	0
giving	0
percentages	0
<h1>,	1
<h2>	1
percentage	0
h2	0
H1	0
H2	0
falowing	0
FONT	0
SIZE	1
em	0
pt	0
anyways	0
one()	1
delegated	0
1.7	0
live()	1
non-dynamic	0
.one	1
sense.	1
Hiddenfield	1
value.	1
it.	0
http://jsfiddle.net/sushanth009/Fakb5/	0
.live	1
preferred	0
.on()	1
mistakes	0
sorry	0
dumb	0
playerHand	1
randint	1
Hence	0
confusingly	0
@IfProfileValue	1
@Profile	1
@ActiveProfiles	1
profile	0
active	0
sets	0
Spring	0
Environment	0
Wut	0
deprecate	0
@IfEnvironment	1
@IfProfile	1
@ActivateProfiles	1
Commentary	0
Boot	1
Answers	0
assume	0
activated	0
activeProfiles	1
speculate	0
ActiveProfiles	1
detail	0
https://stackoverflow.com/a/23627479/388980	0
yesterday	0
evolution	0
selectively	0
@Service	1
@Configuration	1
@Bean	1
profiles	0
ApplicationContext	1
annotation	0
designate	0
declared	0
aforementioned	0
3.1	0
term	0
misleading	0
considering	0
semantics	0
TestNG	1
JavaDoc	0
spring.profiles.active	1
AbstractEnvironment.ACTIVE_PROFILES_PROPERTY_NAME	1
harmony	0
consult	0
JIRA	0
join	0
discussions	0
https://jira.spring.io/browse/SPR-7754	0
https://jira.spring.io/browse/SPR-8982	0
https://jira.spring.io/browse/SPR-11677	0
clarifies	0
Sam	0
author	0
TestContext	1
nailed	0
accepted	0
propagate	0
JVM	0
usual	0
terminal	0
grabbing	0
System.property	1
assumeTrue/False	1
flyway/other	0
migrations	0
keeping	0
Form1	1
withDataGridView`	1
consists	0
SHORT	0
DESCRIPTION	0
Form2	1
textboxes	1
textBox1	1
textbox2	1
textbox4	1
\Form1	1
Move	0
Form_Load	1
mc	1
addon	0
AMO	0
editors	0
rejected	0
Addon	0
reviewing	0
unsafe	0
insertion	0
unsanitized	0
Parts	0
Ui	1
sanitized	0
firebase	0
realtime	0
divided	0
Step	0
Database	0
Oracle	0
11G	0
REGEXP_REPLACE	1
SUBSTR	1
^-	1
non-hyphen	1
hyphen	0
values.Something	1
array($my_arr)	1
everywhere	0
4($my_arr[0]....$my_arr[4])	1
array_slice	1
mixed	0
According	0
ksort	1
sql	0
dateStart	1
dateEnd	1
grouping	0
wrapping	0
tabled-valued	0
increment	0
ScalaTest	1
sbt	1
System.getProperty	1
Intellij	0
-Dmy.command-line.property	1
Run	0
Configuration	0
fork	0
:=	1
Dynamic	0
Url	0
optional	0
www.example.com/getTest/1/	1
None	0
Thus	0
facing	0
reverse	0
'yescourse:academypage_url'	1
args	1
None]	1
NoReverseMatch	1
Reverse	0
academypage_url	1
'{}'	1
Tell	0
firsty	0
rewrite	0
sub-pattern	0
numerics	0
kwargs	1
catch	0
During	0
http.authorizeRequests()'s	1
/bla	1
admins	0
bla	0
instantly	0
restarting	0
dynamicaly	0
spring-loaded	0
JRebel	1
authorisations	0
declare	0
Sphinx	0
charset_table	0
natural	0
vague	0
restated	0
collations	0
utf8_general_ci	1
decent	0
http://thefsb.wordpress.com/2010/12/	0
unsafeNew	1
https://hackage.haskell.org/package/vector-0.11.0.0/docs/src/Data-Vector-Generic-Mutable.html#new	0
basicInitialize	1
Jquery	1
Supersized	0
Magento	0
sustitute	0
supersized	0
jQuery.noConflict()	1
supersized()	1
Read	0
Full	0
‌	1
alert(document.getElementsByTagName('div')[0].innerHTML)	1
<div>This	1
zero-width&zwnj;non-joiner,	1
non-breaking&nbsp;space	1
&amp;	1
ampersand</div>	1
https://jsfiddle.net/yst1Lanv/	0
unicode	0
\u200c	1
document.getElementsByTagName	1
('div')[0]	1
.innerHTML.replace	1
\u200c/g	1
‌'	1
(/‌/	1
Yong	0
Quan	0
nicer	0
confusing	0
collect	0
sales	0
statistics	0
aggregated	0
million	0
22Gb	0
Plenty	0
sqlsrv	1
MSSQL	0
ERP	0
guessed	0
collecting	0
2016	0
2015	0
orders/transactions	0
pointers	0
Subqueries	0
WebApi	1
back-end	0
Admin	0
Order	0
Readonly	1
403	0
Forbidden	0
if(User.IsInRole("Readonly"))	1
Forbidden()	1
update-able	0
NotAuthorized	1
Authorize()	1
forbid	0
decorate	0
restricted	0
permitted	0
self-reference	0
relationship	0
children	0
parent_id	1
folloed	0
doctrine	1
persist	0
ALL	0
entities	0
Category->addChildren	1
category	0
Doctrine	0
Extensions	0
tree	0
LWJGL	0
stumbled	0
backups	0
8.1	0
suddenly	0
incompatibility	0
hav	0
world	0
inbuilt	0
GL11.glEnable(GL11.GL_DEPTH_TEST)	1
forgotten	0
-Kore	0
aswell	0
GL11	1
glClear(GL11	1
GL_COLOR_BUFFER_BIT|GL11	1
GL_DEPTH_BUFFER_BIT	1
);	0
Firstly	0
LocationManager	1
Gets	0
Calls	0
webservice	1
POIs	0
TabActivity	1
Bearing	0
docked	0
progress	0
switching	0
copes	0
orientation	0
focus	0
accuracy	0
chooses	0
mapview	1
accurate	0
initially	0
rough	0
listview	1
Martin	0
sussed	0
LocationListener	1
prepared	0
lopper	0
Looper.Loop()	1
requestLocationUpdates	1
kick	0
timer	0
locationmanager	1
responds	0
expires	0
looper.quit()	1
cancelling	0
looper	0
cancelled	0
UIImageView	1
imageView	1
alloc	1
initWithFrame:CGRectMake(0,40,100,100)	1
incorporate	0
http://placehold.it/250x250	0
http://placehold.it/100x100	0
imageView.layer.rasterizationScale	1
imageView.layer.shouldRasterize	1
NSData	1
dataWithContentsOfURL	1
NEVER	0
case.	0
uploading	0
test.doc	1
commons	0
jar	0
FormFile	1
doc.The	0
docx	0
Advance	0
mime	0
https://technet.microsoft.com/en-us/library/ee309278(office.12).aspx	0
Updated	0
ArrayBuffer	1
Blob	0
Encoding	0
Pop	0
Up	0
IF	0
OR	0
clauses	0
ORs	0
Stops	0
short-circuiting	0
http://en.wikipedia.org/wiki/Short-circuit_evaluation	0
https://developer.mozilla.org/en/JavaScript/Reference/Operators/Logical_Operators	0
Put	0
upper	0
copy/drag	0
sufficient	0
0s	0
Pick	0
zipcodes	0
chloropleth	0
ggplot	1
lat	0
havent	0
samples	0
dating	0
strangely	0
Eclipse	0
error/warning	0
Fit	0
Elizabeth	0
Bennett	0
90.0	0
Fitzwilliam	0
Darcy	0
90.55	0
Romeo	0
Montague	0
90.3	0
Juliet	0
Capulet	0
.......................................................	0
forth	0
appearing	0
concatenating	0
("+")	1
\n	1
extraneous	0
New	0
0.0	1
0.55	0
0.3	0
..............................................	0
thankfully	0
shorthand	0
leads	0
s	0
appearance	0
solid	0
conclusion	0
modifying	0
Multiple	0
Syntax	0
++	0
Invalid	0
Interestingly	0
sake	0
readability	0
clarification	0
unusual	0
massively	0
admittedly	0
left-associative	1
integer	0
unary	1
\t	1
operand	0
Unary	1
promotion	0
effectively	0
System.out.println	1
Hello	0
\t'	1
signs	0
ints	0
Remember	0
+2	1
-2	0
Hello9	0
rotating	0
rotation	0
fyi	0
Mandrill	1
composer	0
choices	0
trouble-shooting	0
Chris	0
M	0
https://mandrillapp.com/api/docs/messages.php.html	0
Ive	0
contacts	0
border	0
Fixed3D	1
sunken	0
FixedSingle	1
Magnifier	0
two-pixel	0
wide	0
borders	0
draws	0
two-pixel-wide	0
rectangles	0
Designer	0
AffectedControl	1
weirdly	0
flickering	0
resizing	0
controls	0
com.mysite.bookingmeeting.dao.implementation.UserProfileDaoImpl.findAllUsers(UserProfileDaoImpl.java:47)	1
org.apache.jsp.admin.ManageUsers_jsp._jspService(ManageUsers_jsp.java:133)	1
findAllUsers()	1
UserProfileDaoImpl()	1
ManageUsers.jsp	1
DeleteUserForm.jspf	1
DeleteUserForm.jsp	1
UserProfile	1
SpotDetails	1
drawn	0
programically	0
Untill	0
WindRose	0
AsynTask	1
Experience	0
suffering	0
DrawRose	1
Draw	1
SurfaceView	1
unlock	0
canvas	0
sharing	0
components	0
injectible	0
Subject	0
reactive	0
1.create	1
DTO	0
2.import	0
3.create	0
4.access	0
1.4.1	0
laptop	0
interactively	0
Homebrew	0
spark-submit	1
/usr/local/Cellar/apache-spark/1.4.1/	1
incorrectly	0
PYTHONPATH	1
@Def_Os	0
pointing	0
generic	0
drops	0
targets	0
AllowDrop	1
hooked	0
DragEnter	1
DragOver	1
UIElement	1
bubbling	0
enables	0
nesting	0
inter-application	0
potential	0
presses	0
Esc	1
cancel	0
routed	0
e.OriginalSource	1
Preview	0
hittesting	0
ItemsControl	1
Listbox	1
visuals	0
Grids	0
textblocks	0
happily	0
colour	0
definitely	0
finished	0
dragging	0
TreeView	1
expands	0
cancels	0
undoes	0
sensibly	0
ListBox	1
hopes	0
marked	0
PreviewMouseMove	1
distance	0
enacting	0
DoDragDrop	1
analyze	0
DataObject	1
DragEventArgs	1
e	0
listbox	1
holding	0
indicator	0
e.Source	1
DropTarget	1
True	0
DropOver	1
Protractor	0
repeater	1
summary	0
e2e	0
getText()	1
getText()'s	1
innodb	0
mysql	0
innodb_file_per_table	1
ibd	0
3GB	0
file(a.sql)	1
a.sql	1
2.5Gb	0
30GB	0
b.sql	1
ibdata1	1
dest	1
won	0
Coda	0
location.href	1
url.value	1
w3schools	1
throw	0
redirected	0
Manga	0
Someone	0
Most	0
REFERRER	0
homepage	0
HTTP-REFERRER	0
http://centraldemangas.com.br/	1
Estou	0
tentando	0
salvar	0
uma	0
imagem	0
que	0
vem	0
da	0
mas	0
sempre	0
cai	0
Assume	0
adjacent	0
technology/language	0
--what	1
automating	0
processing/summary	0
clean-up	0
eg	0
joins	0
summaries	0
post-processing	0
automate	0
method(s)	1
dbs	0
Similar	0
MAW	0
intervals	0
DBMS	0
jobs	0
procedures/commands	0
tagged	0
thats	0
http://dev.mysql.com/tech-resources/articles/event-feature.html	0
green	0
checklist	0
GREEN	0
city	0
York	0
data-city	1
corresponds	0
th	0
Based	0
tds	0
demo	0
http://jsbin.com/leqinun/1/edit?html,js,output	0
week	0
missmatch	0
generics	0
T	0
McKeown	0
BaseRequest	1
constrained	0
constraint	0
omit	0
casting	0
ListAlertsRequest	1
DoGetRequest	1
BaseRequest<BaseResponse>	1
<BaseResponse>	1
wa	0
upload	0
EDIT2	0
event.target.files	1
defaultImg	1
img	0
somthing	0
calculate	0
2nd-order	0
derivative	0
CRF	0
loss	0
Tensorflow	1
tf.contrib.crf.crf_log_likelihood	1
Second-order	0
gradient	0
Previously	0
RNN	0
imageupload	1
Best	0
Hendrik	0
http://malsup.com/jquery/form/#options-object	0
letter	0
F	0
clickable	0
diver	0
Html	0
CodePen	0
universal	0
Headers	0
paragraphs	0
pictures	0
ORDER	1
BY	0
underscores	0
equally	0
DISTINCT	0
applies	0
distinct	0
non-Abstract	0
heres	0
metronome	0
copied	0
http://www.cs.cmu.edu/~illah/CLASSDOCS/javasound.pdf	0
JButtton	1
ClickForSound	1
Class	0
PlsWork	1
PLEASE	0
actionPerformed	1
actionPreformed	1
@Override	1
non-compile	0
non-abstract	1
history	0
SHA	0
commit	0
Neither	0
merged	0
master	0
Find	0
--merges	1
commits	0
--ancestry-path	1
branches	0
gitk	1
entering	0
Git	0
masterthat	1
readable	0
disabled	0
AD	0
Deprovisioned	0
Okta	0
reactivate	0
PowerShell	1
Matt	0
Egan	0
https://github.com/mbegan/Okta-PSModule	0
deprovisioned	0
Provisioned	0
profiled	0
Active	0
Directory	0
deactivated	0
mastered	0
activate	0
/api/v1/users/{{userId}}/lifecycle/activate?sendEmail=false	0
activating	0
Import	0
reactivated	0
varbinary	1
XMl	0
cast	0
$multi_array[0][1]	1
count($ALPHABET[0][0])	1
Treat	0
$multiarray[0][1]	1
count($multiarray[$index])	1
doxygen	0
file(s)	1
Doxygen	0
Guid	1
ids	0
bigint	1
Guids	0
rebasing	0
rebase	1
-i	1
HEAD	0
removed	0
squash	0
commit-4	0
cherry	0
commit-2	1
assumed	0
conflicts	0
Commits	0
Enterprise	0
Guide	0
Created	0
sex	0
Will	0
datasets	0
100k	0
obs	1
surely	0
nHibernate	1
scenes	0
drawback	0
keyed	0
intermediate	0
concatenated	0
LK	0
vakue	1
queries	0
Laziale	0
combinations	0
assigns	0
met	0
keyboard	0
2d	0
barcode	0
scanner	0
mixture	0
Ctrl+v	1
v	0
detected	0
cursor	0
autofocus	0
Formatted	0
CFML	0
string/text/base64	1
overcome	0
CF	0
portability	0
exposes	0
bearing	0
Bot	0
right-click	0
designed	0
top-level	0
submodules	0
recorded	0
submodule	0
reporting	0
submodule-a.git	1
submodule-b.git	1
thinks	0
Top-level	0
Submodule	1
--all	1
&&	1
Platform/Version	0
GNU/Linux	0
4.2.6-200.fc22.x86_64	0
2.4.3	0
confirmed	0
2.5.0	0
re-confirmed	0
in-place	0
Fedora	0
24	0
2.7.4	0
filesystem	0
preserved	0
disappeared	0
retrospective	0
reproduce	0
CI	0
120+	0
unhandled	0
EE	0
JQuery	1
relative	0
BONUS	0
stabs	0
staring	0
http://www.[yourwebsite].com/src/main/webapp/resources/js/template/Event/EventMainTemplate.html	0
Hopefully	0
y'all	0
#messages	1
scroll-able	0
ul.messages	1
msg-con	1
competing	0
faced	0
canonical	0
expressive	0
intersection	0
converters	0
bidirectional	0
exchange	0
XSD	0
closely	0
resembles	0
renders	0
alter	0
simples	0
B/C	1
identified	0
deconstructed	0
formalized	0
schemes	0
nontrivial	0
desribed	0
arbitrary	0
convention	0
dead	0
mirrored	0
subspace	0
identifying	0
artifacts	0
transparently	0
conventions	0
reasoner	0
spot	0
incoherent	0
discuss	0
experts	0
Questions	0
ontologies	0
impression	0
ontology	0
relation	0
long-lived	0
coherent	0
semantic	0
constituents	0
managing	0
complexities	0
machinery	0
-taken	0
permanent	0
dissipating	0
reconnecting	0
effort	0
out-of-the-box	0
companies	0
off-the-shelf	0
generation	0
Abstracting	0
meta-model	0
Meta	0
Facility	0
MOF	0
Topic	0
References	0
InfoGrid	0
Graph	0
vocabulary	0
taxonomy	0
thesaurus	0
Specification	0
pdf	0
Introduction	0
TM4J	0
Generation	0
OpenDDS	0
Part	0
OCI	0
Paws	0
metacpan.org	0
sdk	0
integrated	0
GCM	0
tackle	0
registers	0
reviewed	0
sender	0
registration	0
irrelevant	0
alternate	0
fills	0
Account	0
Settings	0
btaylor	0
https://www.facebook.com/btaylor	0
https://graph.facebook.com/btaylor	0
wishlist	0
tracker	0
uploads/forms	0
FileField	1
File	0
Uploads	0
Cripsy	0
Bootstrap	0
.jar	0
fully	0
customise	0
transport.FileSender	1
MGBNSender	1
file.	0
class-path	0
Main	1
Sun	0
Oct	0
15:30:30	1
EST	0
Friday	0
20:00:00	1
MST	0
Answer	0
Sept	0
Sunday	0
21:00:00	1
Sep	0
25	0
14:30:30	1
DateTime	1
Carbon	0
https://packagist.org/packages/nesbot/carbon	0
Composer	0
Alex	0
Codecourse	0
Tutorial	0
stackexchange	0
Apologies	0
photos	0
reputation	0
.do	0
http://webapps2.rrc.state.tx.us/EWA/productionQueryAction.do	0
remains	0
obtain	0
copy-paste	0
county/query/submission	0
tedious	0
monthly	0
counties	0
districts	0
2-3	0
automate/ease	0
querying	0
automated	0
apologise	0
non-specific	0
prefixed	0
searchArgs	1
month/year/.	1
actionManager	1
imediately	0
crazy	0
queried	0
dog	0
introduction	0
worth	0
prevalent	0
Anusha	0
EF	0
templates	0
association	0
subclasses/types	0
TemplateType2	1
inherits	0
loan1	1
loan1.TemplateInstances.add(foo)	1
…	0
InstanceType2	1
scalar	0
exposing	0
worse	0
ended	0
solving	0
savingchanges	0
((Question)(Left_Node)(right_node))	1
segment	0
1.5	0
dictionary	1
half	0
traversed	0
recursively	0
leaf	0
parser	0
pyparsing	1
grammar	0
nested	0
Pyparsing	0
simplifies	0
gruping	0
pieces	0
varname	1
identifiers	0
operatorPrecedence	1
ternary	0
right-associative	0
4-function	0
math	0
eventually	0
sketchy	0
speech	0
simliar	0
quoted	0
matched	0
tokens	0
post-parsing	0
picking	0
chicken-and-egg	0
preface	0
Forward	0
<<	0
liberties	0
else-clause	1
Optional	1
Group(action)("elseAction")	1
dump()	1
parseString	1
http://pastebin.com/DnaNrx7j	0
stage	0
evaluating	0
wiki	0
SimpleBool.py	1
http://pyparsing.wikispaces.com/file/view/simpleBool.py	0
callable	0
localize	0
CurrentUICulture	1
CurrentCulture	1
CultureInfo("fr-FR")	1
Suppose	0
French	0
dictate	0
assigned	0
culture-specific	0
ToString()	1
satellite	0
English	0
speak	0
Russian	0
chose	0
=P	1
preferences	0
Preconditions	0
localized	0
satellites	0
""	1
constructed	0
Give	0
Languages	0
winforms	0
Easiest	0
Newbie	0
coder	0
dev	0
mini_magick20130627-17452-1k48fim.png	0
ImageMagick	0
Errno::ENOENT	1
SitesController	1
#create	1
identify	0
-quiet	1
-ping	0
/tmp/mini_magick20130627	1
-17452-1k48fim.png	1
development.rb	1
passenger	0
production.rb	1
Passenger	0
Carrierwave	0
Phusion	0
vars	0
httpd-vhosts.conf	1
http://blog.phusion.nl/2008/12/16/passing-environment-variables-to-ruby-from-phusion-passenger/	0
/etc/bashrc	1
/etc/profile	1
bashrc/profile	1
induction	0
explorer	0
Pass	0
Format	0
processDate.getFullYear()==>	1
processDate.getFullYear().toDateString()	1
evaluates	0
loses	0
<input	1
id="txt"	1
onchange="inputChange(this.value)"	1
@gurvinder372	1
onkeyup	1
type="text"	1
id="input">	1
collapsible	0
diagram	0
collapsed	0
http://bl.ocks.org/david4096/6168323	0
43.0.4	0
plunker	0
partially	0
collpased	0
non-working	0
getAllNetworkInfo()	1
getActiveNetworkInfo()	1
detecting	0
plots	0
plotted	0
intance	0
supermatrix(5:10,:,2:3)	1
legend	0
"supermatrix(5:10,:,2:3)"	1
dfig	0
F.Moisy	0
figures	0
plotting	0
overall	0
robust	0
Print	0
Thermal	0
Printer	0
web-view	0
Over	0
On-click	1
Out	0
Open	0
web-view.	0
Fine	0
Opens	0
Receive	0
Along	0
Web-view	0
Outside	0
Means	0
@Sujal	1
Mandal	0
Know	0
me.	0
kind.	0
text-view	1
CODE	0
getIntent().getStringExtra("STRING_DATA")	1
oncreate	1
15px	1
red	0
white	0
2px	0
angular5	1
2017	0
authenticating	0
azure	0
warn	0
Roles	0
serializeable	0
contract	0
figuring	0
moderately	0
sized	0
sub	0
http://json2csharp.com/	1
c#	0
http://json2csharp.com	0
Generated	0
players	0
scores	0
Name:Mike	1
Score:10	1
Name:Peter	0
Score:5	1
bronze	0
silver	0
gold	0
medal	0
Underneath	0
playername(s)	1
winners	0
TotalViewModel	1
ObservableCollection	1
Total	0
Scores	0
IEnumerable	1
score	0
DataContext	1
UserControl	1
1/2/3	0
linq	1
FirstOne	1
propertychanged	1
g++	1
5.4	0
clang	0
3.8	0
64-bit	0
diagnostics	0
vary	0
clash	0
clock	1
time.h	1
std	0
<ctime>	1
__BEGIN_NAMESPACE_STD	1
C-library	0
std::clock	1
::clock	1
<c*>	1
<*.h>	1
localhost	0
Struggling	0
Referring	0
markup	0
Label	0
Tab	0
Â	1
unintentional	0
templated	0
redoing	0
scratch	0
encounter	0
brso05	1
document.getElementById("myInput").value	1
document.getElementById("myDiv").innerHTML	1
group_concat	0
yii2	1
maths	0
g_sname	1
column()	1
wkhtmltopdf	1
OpenSCAP	0
SLES	0
W3C	0
http://www.w3schools.com/php/php_ajax_database.asp	0
collects	0
gotten	0
.txtHint	1
#sideWays	0
recognising	0
Trying	0
watch	0
MWE	0
MainActivity.java	1
activity_main.xml	1
Wear	0
WebView	1
concretely	0
examine	0
thereabouts	0
gyrations	0
guts	0
NullWebViewFactoryProvider	1
interval	0
/5	1
/home/user/test.pl	1
.   	0
minute	0
59	0
|	0
.  --	0
. ----	0
. -	0
jan	0
feb	0
mar	0
apr	0
.----	1
sun	0
mon	0
tue	0
wed	0
thu	0
fri	0
sat	0
Cronjobs	0
deamon	0
weekday	0
Bash	0
ScrollViewer	1
ListBoxItem	1
virtualization	0
viewers	1
ListBox.ItemTemplate	1
ItemsSource	1
Easy	0
Through	0
Xaml	0
Template	0
Behind	0
64bit	0
strlen()	1
size_t	1
strlen	1
commonly	0
multi-gigabyte	0
multi-terabyte	0
NULL	0
ridiculous	0
StrLenAsync()	1
ultra	0
40TB	0
Sound	0
Yea	0
proposed	0
joke	0
typedef	1
varies	0
architectures	0
largest	0
16	0
sizes	0
pupil	0
pythonwith	0
opencvpackage	1
presence	0
reflection/	0
glare	0
pixels	0
accurately	0
websocket	1
basicly	0
WebSocket	1
wss://192.168.1.8/ws	1
handshake	0
canceled	0
PRO	0
x6	0
clicking	0
reimplement	0
OK	0
self-signed	0
@BenDarnell	0
browse	0
flight	0
ITA	0
Matrix	0
http://matrix.itasoftware.com/	0
selecting	0
passengers	0
Clicking	0
arrow	0
teaching	0
clever	0
XPath	0
NUMBER_OF_PASSENGERS	1
unread	0
XMPPUserCoreDataStorageObject	1
cleaned.So	0
deep	0
window+alt+shift+	1
EMACS	0
24.3	0
recentf	0
makefiles	1
projects	0
sticky	0
persistent	0
bookmark	0
http://www.emacswiki.org/emacs/BookMarks	0
nutshell	0
C-x	1
bookmarks	0
dired	0
buffers	0
bookmarked	0
visit	0
regularly	0
http://www.emacswiki.org/emacs-es/RecentFiles	0
16.04	0
Composer.org	0
line->	0
-r	1
copy('https://getcomposer	1
.org/installer	0
composer-setup.php	1
Trough	0
apt	0
atp	0
trough	0
manager	0
namely	0
instructions	0
Personally	0
periodically	0
ComboTree	1
jeasyui.com	0
index.js	1
cshtml	1
loadData	1
tree_data1.json	1
comboTreeDirective	1
comboe	0
Async/Await	1
HTTPClient	1
@TheESJ	0
awaits	0
fashion	0
await	0
paused	0
awaiting	0
facilitate	0
kicked	0
parallel	0
Those	0
Consider	0
.ContinueWith	1
Task.WhenAll	1
Dear	0
Expert	0
tglawal	0
tglakhir	0
2016-12-04	1
2016-12-06	1
to_secs	1
3600	0
Liferays	1
input-date	1
successfull	0
messes	0
18.08.2017	1
d.08.2017	0
messed	0
undoing	0
erros	0
picker	0
Liferay.Form	1
normally	0
MOBILE	0
MAX	0
MIN	0
degradation	0
aim	0
progressive	0
enhancement	0
re-engineer	0
MIN-width	1
MAX-width	1
trimmed	0
95%	0
MAIN	0
--MEDIA	1
@media	1
Min-width	0
max-width	1
screens	0
min-width	1
smaller	0
minimum	0
effecting	0
740px	1
900px	1
reducing	0
produce	0
Things	0
-When	0
excluding	0
min/max	0
-sizes	0
re-sized	0
-Here	0
endeavours	0
http://css-tricks.com/snippets/css/media-queries-for-standard-devices/	0
400px	1
minumum	0
Very	0
optimizing	0
practices	0
Em	0
Px	0
font-size	1
units	0
proportionally	0
adjusts	0
Percentages	0
skinny	0
Absolutely	0
Positioned	0
difficuly	0
relatively	0
unittest	1
test_code	1
-m	0
inner	0
cartesian	0
additionally	0
$array1	1
$array2	1
angularjs	1
embedded	0
mywebservice.com	0
origin	0
allowing	0
ChoiceBox	1
pane	0
Later	0
Groovy	0
90,000	0
00-90	0
000	0
90000	0
Correct	0
moves	0
disappear	0
prepend	0
https://jsfiddle.net/rzpL34ef/3/	0
IDEA	0
JSDoc	1
Zimbra	0
frontend	0
DwtComposite	1
coverage	0
Jasmine	0
Working	0
3.2.2	0
JsTestDriver	1
metrics	0
JSCoverage	0
band	0
line.	0
JesCov	1
JRE	0
jescov-0.0.1.jar	1
one.js	0
two.js	1
three.js	1
months	0
Grails	0
hearing	0
Panel	1
GWT	0
amounts	0
Hidden	1
widget	0
type='hidden'>	1
file_get_Contents	1
file_get_contents	1
tagit	0
wise	0
men	0
this.Also	1
recording	0
frames	0
emulator	0
Juno	0
OpenCV4Android	1
ver	0
2.4.5	0
android-ndk	1
logcat	0
jniVideoCapture.cpp	1
Android.mk	1
dir	0
libopencv_java.so	1
jniVideoCapture	1
MainActivity	1
libs/	1
40M	0
Rows	0
chunks	0
occurance	0
table2	1
table1	1
cleanse	0
sanitised	0
quicker	0
Dump	0
pk/clustered	0
joining	0
lowest	0
quickest	0
identity	0
batches	0
uniqueness	0
component_summary	1
labref='A'	1
working.	0
Suggestions	0
CakePHP	1
lest	0
editAll	1
submitting	0
individually	0
children_ids	1
subquery	1
count_children	1
outer	0
find_in_set()	1
junction	0
Storing	0
comma	0
delimited	0
hotels	0
hotls1	1
hotels.id	1
hotels1.I	1
split()	1
ADBannerView	1
Cocos2d	0
banner	0
apears	0
landscape	0
rotate	0
M_PI	1
math.h	1
cocos2d	1
rect	0
shouldAutorotateToInterfaceOrientation	1
constantly	0
buttons	0
Upon	0
menus	0
opinions	0
AJ	0
Panels	0
activities	0
Ensure	0
initialised	0
swap	0
techniques	0
revalidate	1
Operating	0
Systems	0
adhere	0
typical	0
expectations	0
Further	0
SE	0
initalise	0
swaps	0
inital	0
opt	0
initalisation	0
Speaking	0
CardLayout	1
somewhat	0
171	0
$f	1
$data	1
$did	1
quotations	0
Learn	0
mysql_	1
mysqli	1
PDO	0
mysql_query	1
HttpClient	1
Storage	0
Xamarin.iOS	0
alright	0
Content-Length	1
TryAddWithoutValidation	1
workings	0
CheckName()	1
https://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs	0
known_headers	1
Add()	1
width:200px	1
http://jsfiddle.net/ebG9N/45/	0
white-space	1
nowrap	1
overflow	0
overflowing	0
i)	1
STRICTLY	0
WITHIN	0
overflow:auto	1
ii)	0
WRAP	0
display:table	1
Generally	0
wider	0
encountered	0
Syslog	0
wild	0
hay-wire	0
thousand	0
VIM	0
^M	1
vim	0
^J	1
0x0a	1
carriage	0
0x0d	0
separators	0
CR-LF	0
Unix-based	0
LF	0
treat	0
CR	0
Vim	0
detects	0
fileformats	1
ISO-8859-1	1
InputStreamReader	1
breaks.	0
BufferedReader.readLine()	1
\r	1
\r\n	1
Website	0
umbraco	0
Snippet	0
Status	0
Macro	0
Logged	0
Umbraco	1
inbound	0
Enable	0
Case	0
Email	0
CE	0
6.5.17	0
unchecked	0
.load	1
divs(non-nested)..	1
Ok	0
Else	0
selector	0
#div_1	1
drawables	1
Lolipop	0
svg	0
scaling	0
sharp	0
stretching	0
drawable	1
density	0
converter	0
5.0	0
Lollipop	0
PNGs	0
raster	0
yield	0
poor	0
assets	0
Illustrator	0
SVG	0
VectorDrawable	1
DPI	0
buckets	0
pre-5.0	0
postgresql	1
MockTable	1
labeled	0
pull	0
recieving	0
1st	0
all-lowercase	0
capitalization	0
Hours	0
HOURS	0
lowercase	0
double-quotes	0
reserved	0
alphabetical	0
magnitude	0
meaningless	0
merely	0
damned	0
non-numeric	1
arises	0
routing.yml	1
crawler	0
restrict	0
toy	0
represents	0
grows	0
downwards	0
Reingold-Tilford	0
http://igraph.sourceforge.net/doc/python/igraph.Graph-class.html#layout_reingold_tilford	0
<Text	1
style={{color:	1
'blue'}}	1
getHighlightColor	1
selectionColor='red'></Text>,	1
don't	0
prop	1
'blue'}}></Text>	1
getCurrentTextColor	1
setTextColor	1
snippets	0
SomeComponent.js	1
TextView	1
StyleSheets	1
dmg	0
uploader	0
ported	0
Browser	0
unidentified	0
Privacy	0
opted	0
inorder	0
errors/warnings	0
novice	0
kindly	0
requesting	0
unverified	0
right-clicking	0
DMG	0
doubled	0
http://osxdaily.com/2012/07/27/app-cant-be-opened-because-it-is-from-an-unidentified-developer/	0
pay	0
Apple	0
POSTMAN	0
Town	0
Province	1
Parent	0
Spring-data-jpa	1
POJOs	0
Entities	0
Swap	0
@JsonBackReference	1
@JsonManagedReference	1
256	0
case-insensitively	0
applepie()	1
255	0
caps	0
applepie	0
$@	1
fake	0
case-insensitive	1
trap	0
ApPlE	0
command_not_found_handle	1
lower-cases	0
obtuse	0
one-liner	0
bc	1
osx	0
2^n	0
Fiddles	0
toupper()	1
digit	0
reassembles	0
Assumes	0
Restful	0
restful	0
-servlet.xml	1
Above	0
MyApp/WebContent/images/logo.jpg	1
MyApp/WebContent/WEB-INF/view/home.jsp	1
<'img	1
src="<%=request.getContextPath()%>	1
/images/logo.jpg	1
>and	1
src="<'c:url	1
value='<%=request.getContextPath()%>/images/logo.jpg'>	1
webapp	0
hierarchy	0
MyApp	1
\src\main\webapp\images\logo.jpg	1
\src\main\webapp\web-inf\views\home.jsp	1
Really	0
http://www.tutorialspoint.com/spring/spring_static_pages_example.htm	0
servlet.xml	1
Mapping	0
springmvc-servlet.xml	1
nsmutablestring	1
@	0
hello	0
briefly	0
object1	1
object2	1
object3	1
object4	1
object5	1
NSArray	1
uiimageview	1
uniquely	0
NSString	1
representing	0
programm	0
constants	0
macros	0
UICollectionView	1
UITableView	1
setPrefetchingEnabled	1
vertically	0
align	0
UILabels	1
colon	0
Label1	1
label1	1
Label2	1
accomplished	0
AutoLayout	1
Title	0
Labels	0
Aligned	0
:1	1
:100	1
pin	0
widths	0
spacing	0
stringwithFormat	1
:%d	1
illustrates	0
Autolayout	0
UIView	1
centre	0
derives	0
subviews	1
pinned	0
edges	0
|[label1]-[label2]|	1
crashlytics	0
Xamarin	0
affects	0
80%	1
decipher	0
gist	0
dSYM	0
Crashlytics	1
AppDelegate.cs	1
Fabric	0
Bucket	0
CloudFront	0
cloudfront	0
zone	0
EC2	0
RTMP	0
pagination	0
Route	0
model-function	1
queryParams	1
http://emberjs.com/guides/routing/query-params/	0
param	0
http://yourdomain.com/someroute?limit=15	0
concern	0
Cart	1
$id	1
qty	1
rowId	1
Cart::search()	1
$cartItem	1
https://github.com/Crinsane/LaravelShoppingcart	0
CaseMilestone	1
Similarly	0
MilestoneType	1
CaseMilestones	1
Relationship	0
Lookup	0
calculating	0
loan	0
professor	0
ive	0
exiting	0
jigsaw	0
jumps	0
produces	0
loop.	0
continues	0
Same	0
tied	0
robustness	0
process()	1
Break	0
stopping	0
CMD	0
GOTO	0
ONIX	0
http://www.editeur.org/93/Release-3.0-Downloads/	0
3.0	0
http://www.editeur.org/files/ONIX%203/ONIX_BookProduct_XSD_schema+codes_Issue_25.zip	0
xsd	1
your.xsd	1
/classes	0
Xml	0
Serializer	1
drill	0
QT	0
coordinate	0
division	0
student	0
regisered	0
courses	0
PSY1	0
fufills	0
BOTH	0
Cond1	1
Cond	1
1004	1
psy1	1
Doesnt	0
ED	0
students	0
teh	0
ammount	0
OTHER	0
fufill	0
bot	0
cond1	1
cond2	1
Untested	0
starter	0
INNER	0
JOIN	1
LEFT	1
COUNT	1
COALESCE(COUNT))	1
Root/uploads/images	1
googling	0
helpfull	0
stuch	0
thankful	0
routes.rb	1
scalesPageToFit	1
YES	0
safari	0
completeness	0
multitouch	0
scalesPagesToFit	1
http://iphoneincubator.com/blog/windows-views/right-scale-for-a-uiwebview	0
6.0	0
Marshmallow	0
EditText	1
ImageView	1
RelativeLayout	1
layout_alignBaseline	1
observed	0
emulatr	0
Editor	0
solely	0
https://github.com/mikegr/baseline	0
https://code.google.com/p/android/issues/detail?id=73697&thanks=73697	0
API11	1
android:baselineAlignBottom	1
getBaseLine()	1
Support	0
23.2.1	0
huge	0
fread	0
separation	0
Setting	0
weirdness	0
Hadoop	0
HBase	0
cluster	0
Start	0
standalone	0
servers	0
linux	0
company	0
everyone	0
Followed	0
Kundera	0
distribute	0
doubt	0
definitive	0
analog	0
Arduino	0
Uno	0
voltage	0
5V	0
motor	0
pwm	0
127	0
2.5V	0
PWM	0
255pwm(5V)	0
127V	0
50%	1
twitch	0
lower	0
volts	0
D3	0
A3	0
driving	0
DC	0
servo	0
stepper	0
smoothing	0
capacitor	0
L*C	0
Noting	0
analogWrite	1
490Hz	0
cap	0
average	0
lows	0
duty	0
capacitance	0
impedance	0
supply	0
20ma	0
pulses	0
stall	0
periods	0
transistor	0
ON-OFF	0
inertia	0
adafruit-arduino-lesson-13-dc-motors/breadboard	0
-layout	1
menu-bar	1
Snow	0
Leopard	0
sooner	0
Anytime	0
TheWindowController	1
corrupt	0
Idea	0
Btw	0
ARC	0
NIB	0
10.7-specific	0
Cocoa	0
warnings	0
10.7	0
builds	0
post-10.6	0
Compatibility	0
connects	0
mongo	0
MONGOHQ_URL	1
http://docs.mongohq.com/languages/nodejs.html	0
Sabari	0
/.bash_profile	1
Node.js	1
dotenv	1
MongoHQ	0
mootools	1
outgoing	0
clickRecord(id)	1
onclick	1
=""	1
stranger	0
onmousedown	1
navigate	0
onclick()	1
synchronous	0
committing	0
breaking	0
onmousedownevent	1
firefox	0
navigates	0
unsolved	0
raised	0
1995	0
event.stop()	1
<div	1
id="1">	1
MetaTrader	0
Terminal	0
offline	0
chart	0
timezone	1
broker	0
MQL4	0
trully	0
offline-charts	0
charts	0
event-flow	1
MT4-Server	1
retaining	0
TOHLCV-data	1
TimeZone	1
shifts	0
synthetic	0
Bar(s)	1
additions	0
adaptations	0
transformed	0
TOHLCV-history	1
F2	1
facility	0
MT4	0
History	0
Centre	0
live-quote-stream	0
Trading	0
unwanted	0
reaching	0
anFxQuoteStreamPROCESSOR	1
inject	0
QuoteStreamDATA	1
MetaQuotes	0
Inc	0
postulated	0
Server/Terminal	0
reverse-engineer	0
unlawfull	0
violation	0
rights	0
legal	0
consequences	0
carefull	0
stepping	0
Anyway	0
risk	0
Ca	0
Quotes	0
fed	0
mt4	1
evented	0
metatrader	0
AnkhSVN	1
VS2012	0
Subversion	0
VS2010	1
2.4.11610.27	1
stable	0
Ultimate	0
presumably	0
plugins	0
TortoiseSVN	1
reinstalling	0
CollabNet	1
tools->options->source	1
uninstall/reinstall	0
repair	0
blank.ex	1
iex	1
weather	0
elixirc	1
beam	0
secondly	0
Elixir.Blank.Integer.beam	1
Elixir.Blank.List.beam	1
fallback	0
Openfire	0
live.Please	0
2017.08.23	1
09:37:35	1
org.jivesoftware.openfire.plugin.rest.exceptions.RESTExceptionMapper	1
UserAlreadyExistsException	1
ressource	0
atg	0
jivesoftware	0
openfire	0
PluginManager	1
loadPlugin(PluginManager	1
javaorg	0
PluginMonitor$MonitorTask$4	1
call(PluginMonitor	1
javaat	0
util	0
FutureTask	1
run(FutureTask	1
262	0
ThreadPoolExecutor	1
runWorker(ThreadPoolExecutor	1
ThreadPoolExecutor$Worker	1
run(ThreadPoolExecutor	1
lang	0
rank	0
Float	0
ReferenceError	1
ascending	0
descending	0
sorting	0
revert	0
re-clicking	0
ng-repeat	1
Retrofit	1
@Expose	1
teacherServiceId	1
840	0
PLC	0
Modbus	0
http://www.codeproject.com/Tips/16260/Modbus-TCP-class	0
Master.ReadHoldingRegister(ushortid,byteunit,ushortstartAddress,ushortnumInputs)	1
lenght	0
144	0
1680	0
125	0
Holding	0
Registers	0
spliting	0
study	0
reliably	0
build.xml	1
triggering	0
mvn	1
renaming	0
maven	0
snapshot	0
Ant	0
void	0
XButtonExit_Click	1
EventArgs	1
//This	0
Close()	1
;}	1
TextBoxes	1
tax	0
subtotal	0
Subtotal	0
//Take	0
xTextBoxTotal	1
FormatException	1
Convert.toInt16(xtextboxTotal.text)	1
formating	0
re-convert	0
curency	1
formatting	0
http://msdn.microsoft.com/en-us/library/3s27fasw.aspx	0
Maven	0
spring-boot-starter-ws	1
starter-web	0
log4j	0
logger	0
TRACE	0
logback	1
logback.xml	1
starter-logging	0
application.properties	1
WEB-INF	0
logging.level.org.springframework	1
logging.path	1
Endpoint	0
Basicly	0
shipped	0
DEBUG	0
trace	0
performant	0
//Update	1
reduced	0
base.xml	1
Blocks	0
before/after	0
centering	0
webpack	1
https://webpack.js.org/loaders/	0
\.css$/	1
front/back	0
slashes	0
meant	0
2.4.10	1
officials	0
clone	0
OpenCV	1
TortoiseGit	1
2.4.0.3	1
Clone	0
https://github.com/opencv/opencv.git	0
Switch/Checkout	0
OpenCV-2.4.10	1
Branch	0
Tag	1
subfolder	0
opencv-2.4.10	1
GitHub	0
equality	0
Join	0
Pig	0
Hive	0
inequality	0
CROSS	0
FILTER	0
reducer	0
improved	0
scale	0
ggnetwork	0
scaled	0
scale_size_area()	1
towards	0
shrink	0
boils	0
geoms	0
scale_size_area	1
max_size	1
scale_size_continuous	1
c(1,6))	1
Almost	0
ggplot2	1
dual-scaling	0
y-axes	0
scales	0
contradicts	0
CKEDITOR	0
base64_encode	1
-signs	0
whitespaces	1
CKEditor	0
var_dumped	1
clue	0
singleton	0
IntelliJ	0
horribly	0
flawed	0
multi-threading	0
holder	0
loader	0
synchronization	0
histograms	0
histogram	0
jam	0
datas	0
concurently	0
0-255	0
neglect	0
thermal	0
significant	0
unsigned	0
0-65535	1
hte	0
preallocated	0
circular	0
-notify	1
arrive	0
processed	0
reusable	0
familiar	0
toy.h	1
.cpp	1
difficulties	0
aspect	0
notify	0
get_buffer())	1
Buf_start	1
_Buf_end	1
seeking	0
overload	0
()	1
buffer()	1
unique_lock	1
_mtx_foreground	1
outbound	0
satisfy	0
remake	0
redo	0
deeply	0
toy2	1
Jobs	0
Job	1
Tasks	0
tasksCount	1
tricks	0
twig	0
hydrate	0
Gravatar	0
RSAPKCS1Signatureformatter	1
RSACryptoServiceProvider	1
sign	0
RSAPKCS1SignatureFormatter	1
RSACryptoServiceProvider.SignHash	1
Psychic	0
SignData	1
RSA	1
hashed	0
SignHash	1
pre-digested	0
toolset	0
controllers	0
1:1	0
Controller+View	1
modal	0
https://github.com/angular-ui/ui-router	0
heavily	0
tying	0
partials	0
ng-include	1
coupled	0
ng-controller	1
nest	0
expects	0
utilize	0
Plunker	1
swapping	0
feasibility	0
glance	0
costly	0
40-400	0
particles	1
particle	0
ParticleAI	1
Update()	1
newly	0
Particle	0
efficiency	0
100-2000	0
Lists	0
60FPS	0
nulls	0
AI	1
brain	0
constructing	0
unexpectedly	0
terms	0
sheer	0
particleAI	1
reusing	0
Null	0
LinkedList	1
lighter	0
to-be-replaced	0
Collections.emptyList()	1
safer	0
worthwile	0
algorithmic	0
Spending	0
Queues	0
Priorities	0
quests	0
hosted	0
quest	0
suits	0
timestamp	1
notepad++	1
Brackets	0
find/replace	0
Dialog	0
^	1
\[\]]*\[([^\]]+)\]	1
\1\n	1
RE	0
metacharacters	1
bracket	0
consist	0
closing	0
((	1
^\	1
+))	1
captured	0
\1	1
substitution	0
newline	0
windows-style	0
lineendings	1
LayoutManager	1
Leanback	0
leanback	1
focused	0
middle	0
setStackFromEnd(true)	1
setReverseLayout(true)	1
slashdot	0
story	0
tidbit	0
scoured	0
http://infoworld.com/d/developer-world/12-programming-mistakes-avoid-292	0
groovy	0
Project	0
Coin	0
https://wiki.openjdk.java.net/display/Coin/2009+Proposals+TOC	0
Elvis	0
Null-Safe	0
Operators	0
unpredictable	0
plan	0
setups	0
termed	0
coalesce	0
try-catch	1
rails4-application	0
heroku	0
github-repository	0
topic	0
Ruby/rails	0
debugger	0
Heroku	0
development	0
https://devcenter.heroku.com/articles/ruby-support#debugger-gems-fail-to-install	0
CodeIgniter	1
sqlserver	1
2008	0
ini	0
triying	0
givme	0
Php	0
conect	0
:S	0
wasnt	0
expired	0
igniter	0
becouse	0
database.php	1
Solved	0
https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone	0
--global	1
shortcut	0
synatax	0
didnt	0
aliases	0
literally	0
Notice	0
alias.<alias>	1
NEW	0
hp	1
IMABigBaboon	0
NotificationCenter	1
Closures	0
URLSession	1
closure	0
Response	0
interchangeable	0
observers	0
delegates	0
lightweight	0
positively	0
toPost	1
submit_data	1
Serialization	0
field_name_1	1
field_value_1&field_name_2	1
field_value_2	1
$_POST['field_name_1']	1
$_POST['field_name_2']	1
print_r($_POST)	1
row_selected	1
paths	0
.svn	0
directories	0
deas	0
-type	0
-rf	1
`find	0
-name	1
`	1
PostgreSQL	0
numeric(15,6)	1
DecimalField	1
http://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL	0
https://docs.djangoproject.com/en/1.8/ref/forms/fields/#decimalfield	0
solutions.MY	1
signup	0
administration.But	0
forms.py	1
views.py	1
models.py	1
"mail_base,provider=email.split("@")"	1
forms.py.Please	1
leaves	0
SignUp	0
EmailField(blank=True))	0
self.cleaned_data.get('email')	1
mail_base	1
email.split('@')	1
raise	0
email.split("@")	1
intellisense	0
u.Id	1
ug.UserId	1
ANSWER	0
Northwind	0
.sql	1
importing	0
stuff.sql	1
Statement	0
temporary	0
memory-only	0
SQLite	1
:MEMORY	1
MEMORY	1
HEAP	1
DDL	0
INNODB	1
MyISAM	1
1TB	0
prove	0
impractical	0
recreating	0
MPxCommand	1
MArgList	1
doIt()	1
MArgParser	1
asStringArray(index)	1
asIntArray(index)	1
self.myStr	1
cmds.myCommand	1
clears	0
reflect	0
OpenID	0
IdP	0
RP	0
working-	0
contacting	0
authenticate/authorize	0
verification	0
dug	0
hunch	0
Yadis	0
realm	0
shoots	0
302	0
Accept	0
application/xrds	1
issuing	0
X-XRDS-Location	1
rework	0
golden	0
http://blog.nerdbank.net/2008/06/why-yahoo-says-your-openid-site.html	0
UIPickerView	1
secondviewcontroller	1
firstviewcontroller	1
segues	0
rudimentary	0
brand	0
Unlock	0
Screen	0
home	0
DeviceAdminReceiver	1
CSS3	0
decreases	0
background-size	0
toggled	0
.active	1
http://jsfiddle.net/VQaGh/22/	0
http://jsfiddle.net/Sk2sX/	0
has_and_belongs_to_many	1
Orb	0
Book	1
_form	1
anywere	0
https://github.com/senayar/books	0
notresolved	0
TIMESTAMP	1
CURRENT_TIMESTAMP	1
Stackoverflow	1
Datetime	1
Timestamp	1
http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff	0
Rufinus	1
row-wise	0
#1	1
np.unique	1
#2	1
differentiation	0
Extending	0
extended	0
avoiding	0
pure-Python	0
ical	0
attachment	0
mentions	0
attachments	0
icalendar	0
https://www.addevent.com/	1
oriented	0
toward	0
invitations	0
100/day	0
Dealt	0
calendar	0
.ical	0
attache	0
2.0.1	0
wierd	0
fonts	0
FF	0
UiBinder	1
showcases	0
styling	0
.gwt.xml	0
GwtOverride.css	1
WinXP	0
SP	0
annoying	0
blue	0
nullify	0
Gentoo	0
amd6	0
reneders	0
odd	0
modeless	0
Desired	0
whichever	0
topmost	0
OnInitDialog()	1
SetWindowPos(&this->wndTop,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)	1
SetWindowPos(&this->wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE)	0
m_subDlg1->Create	1
SubDlg1::IDD	1
owned	0
owned/child	0
parent/owner	0
owner/child	0
covered	0
parent/child/owned	0
internally	0
MFC	0
BOOL	1
Wnd	1
::	1
CreateDlgIndirect(LPCDLGTEMPLATE	1
lpDialogTemplate	1
CWnd	1
pParentWnd	1
HINSTANCE	1
hInst	1
SetParent(NULL)	1
ASSERTs	0
CheckBoxes	1
ofc	0
nr	0
1.5.7	0
Checked	1
+check	1
SWT	0
awt	0
CheckBox	1
Checkbox	1
!!	1
Bottom	0
CheckboxGroup	1
experiment	0
measure	0
tf.idf	1
Geolocation	0
Harvesine	0
distance.	1
studying	0
Similarity	0
procede	0
IIUC	0
indexing	0
Extend	0
DefaultSimilarity	1
SimilarityDelegator	1
payloads	0
term-specific	0
lat-long	0
Similarity.setDefault(mySimilarity)	1
corpus	0
Searcher	0
Lucene	0
predict	0
prohibitive	0
nevertheless	0
Mining	0
Massive	0
Datasets	0
min	0
hashes	0
shingling	0
Patrick	0
Grant	0
Ingersoll	0
Dragons	0
Customizing	0
fun	0
spatial	0
paper	0
findability	0
relevance	0
.svc	1
Webservice	0
certficiate	0
WS	0
http://localhost/myws.svc/	0
Works	0
https://localhost/myws.svc/	1
http://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx	0
outdated	0
http://jcooney.net/post/2007/11/26/The-Black-Art-of-Writing-a-SQL-Server-Management-Studio-2005-Add-In.aspx	0
SMSS2008r2	1
SSMS	0
news	0
SSMS2008	1
Add-In	0
defbug	0
SSMS2012	1
ssmsboost	1
welcome	0
ssms	0
Memento	0
Pattern	0
behavioural	0
shed	0
light	0
roll-back/save	0
serialisation	0
byte[]	1
reverting	0
serialised	0
Conversely	0
Undo	0
transforming	0
<select>	1
std::condition_variable	1
spurious	0
wakeups	0
is_ready	1
notify_one()	1
notify_all())	1
condition_variable	1
duration	0
receiver	0
consumer	0
non-empty	0
get_from_queue	1
the_queue.empty()	1
simultaneously	0
releasing	0
race	0
wake	0
ups	0
atomic	0
atomics	0
polling	0
coded	0
99.6	0
infinitely	0
inefficiency	0
vendor	0
ought	0
grins	0
augmented	0
wakeup	0
demonstrate	0
5000	0
Autosuggestion	0
Filter	0
select2.css	1
select2.js	1
jquery-2.1.1.js	1
front-end	0
limiting	0
Front-End	0
challenge	0
html/css	1
50	0
<td>,	1
<th>	1
MAY	0
differently	0
powershell	0
cmdlet	1
cmdlets	0
adblock	0
Adblock	0
http://domain.com/ads/	0
AdBlock	0
Flash	0
embeds	0
roll-over	0
expecially	0
embed	0
announced	0
availability	0
DocumentDB	0
transactional	0
technological	0
ground	0
KnockBack	0
computed	0
underlying	0
Knockout	1
jsfiddles	0
preamble	0
Knockback	1
MVVM	1
VVM	0
dutifully	0
Alive	0
psql.exe	1
PGOPTIONS='-c	1
tcp_keepalives_idle	1
tcp_keepalives_interval	1
tcp_keepalives_count=10	1
reboot	0
psql	1
Vacuum	0
Copy	0
JDBC	0
ODBC	0
NpgSQL	1
Draft-JS	0
consumption	0
UL	1
LI	0
Textarea	1
Exporting	0
Redo	0
regenerate	0
You.	0
finance	0
branch_master	1
circumvented	0
@Thorsten	0
circumvent	0
Overview	0
DB2	0
IBM	0
logins	0
debugged	0
knock-on	0
disabling	0
inspection	0
inspected	0
TADOQuery.sql.add()	1
TADOQuery	1
propery	0
adoqry.sql.add	1
Server-SQL	0
Requests	0
Prepare	0
Describe	0
adoqry.active	1
Open/Describe	0
proof	0
traced	0
sql.add()	1
ConnectionString	1
ADOQuery	1
combines	0
undesirable	0
credentials	0
Separate	0
ADOConnection	1
Specify	0
ADOQuery.Connection	1
Additionally	0
ADOConnection.Open	1
separating	0
Today	0
87	0
Boy	0
claimed	0
CP	0
carry	0
borrow	0
conflict	0
SUB	1
Z80	0
typo	0
misunderstanding	0
ADD	1
complement	0
GameBoy	0
SBC	0
SUB/SBC/CP	1
Z-80	0
8080	0
MAME	0
MESS	0
ecommerece	0
magento	0
countries	0
india	0
singapore	0
usa	0
shipping	0
registerd	0
guest	0
Anybody	0
Thanx	0
Shipping	0
system->configuration->shipping	0
methods->your	1
method->Ship	0
Applicable	0
Countries	0
Ship	0
Specific	0
aviable	0
feald	1
JsonResult	1
REMOVE	0
PropertyToNOTExpose	1
Newtonsoft.Json.Linq.JObject	1
JObject.Remove	1
ScriptIgnore	1
JavaScriptSerializer	1
ignored	0
deserialization	0
<span>	1
diminished	0
stylesheet	0
unadorned	0
behaves	0
broadcast	0
PeriodSender	1
.Dynamically	0
registering	0
Manifest	0
MyReceiver21	1
MY_ACTION1	1
broadcasts	0
registerReceiver()	1
MainActivity.onCreate()	1
BroadcastIntents	1
Kivy	1
Earlier	0
widget.pos	1
hero	1
FLoatLayout	1
FloatLayout	1
co-ordinates	0
http://kivy.org/docs/api-kivy.uix.relativelayout.html	0
Peace	0
8.2	0
2005	0
referrer	0
advertisement	0
whoever	0
lowly	0
intern	0
varchar(50)	1
tasked	0
31	0
advisable	0
INET_ATON	1
one-off	0
IPAddress	1
frequent	0
camera	0
Camera	0
Roll	0
complained	0
Photo	0
Album	0
pickup	0
synced	0
iTunes	0
ALAssetsGroupLibrary	1
variants	0
ALAssetsGroupType	1
allAssets	1
allVideos	1
allPhotos	1
rack	0
aap	0
notified	0
puma	0
workers	0
worker	0
https://devcenter.heroku.com/articles/ruby-websockets	0
SublimeREPl	1
SublimeREPL	1
interactive	0
Objective-C	0
Apples	0
NSMutableArray	1
objectAtIndex:i	1
Yet	0
claiming	0
performing	0
frustrating	0
idiosyncrasies	0
Objective	0
borne	0
assistance	0
Walt	0
Williams	0
Possibly	0
dot	0
Wain	0
complaining	0
objectAtIndex	1
flash	0
buy	0
activeden	1
arabic	0
textfield	1
rtl	0
TLFTextfield	1
TLFTextField	1
as3	0
Build	0
TLF	0
filtered	0
57	0
display:none	1
non-functional	0
disables	0
1998	0
dangerously	0
occupied	0
deallocated	1
invalidate	0
arraylist	1
camel	0
uri	0
recieved	0
header.endpoints	1
recipient	1
EIP	0
N+	1
destinations	0
http://camel.apache.org/recipient-list.html	0
toD	0
1.N	1
as-is	0
destination	0
quads	0
shader	0
quad	0
colored	0
flagged	0
50x50	0
frag	0
texture	0
textures	0
coordinated	0
vert	0
x1	1
yellow/green	0
Dodd	0
screen-space	0
centers	0
gl_FragCoord	1
viewport	1
half-by-half	0
half-cut	0
interpolant	0
vec2	1
quadCoord	1
vertexes	0
quadCoordIn	1
quadCoord.xy	1
ArrayLists	1
achieving	0
clumsy	0
lists.	0
predictable	0
sophisticated	0
approaches	0
lineIsComment	1
addToList	1
<Integer>	1
NAnt	0
checkout	0
Nant	1
default.build	1
assembly	0
ActionResult	1
GlobalFilterCollection	1
System.Web.Mvc.dll	1
System.Web.MVC	1
VS	0
Sometimes	0
defaul	0
everybody	0
Assemblies	0
files(x86)	1
-->	1
msbuild	0
referencing	0
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4211	0
http://weblogs.asp.net/scottgu/archive/2011/05/03/asp-net-mvc-3-tools-update.aspx	0
tooling	0
improvements	0
binaries	0
allot	0
plagued	0
World	0
supplied	0
appspot.com	0
app.yaml	1
main.py	1
XAMPP	1
GAE	0
http://www.youtube.com/watch?v=IFuNNddWQIo	0
doubts	0
if("status".equalsIgnoreCase((nNode.getNodeName())))	1
nNode.setTextContent("2000000")	1
preppend	0
<span>word</span>	1
asynchronously	0
node.rendered	1
node.childrenrendered	1
Pretty	0
excludes	0
Arrays	0
JUST	0
explosion	0
hitTestObject	1
Explosion	1
movieclip	1
keyframe	0
stop()	1
1009	0
removes	0
truly	0
garbage	0
collected	0
fair	0
collector	0
AS3	0
Garbage	0
ionic	0
board	0
Tabs.ts	1
tabs.html	1
home.ts	1
home.html	1
trainning	0
yea	0
tabs.ts	1
this.navCtrl.push(TrainingPage,this.token)	1
this.navCtrl.select	1
this.token	1
search/highlight	0
CGPDFScanner	1
PDFKitten	0
hints	0
tamarin	0
2.x	0
Beta	0
Paginator	1
IE9	0
debuging	0
conclude	0
ASPX	0
F12	0
<head>	1
Interface	0
call.enqueue()	1
Glide	1
Pissaco	0
questuion	0
repeatable	0
Thats	0
material	0
Article	0
ArticleType	1
fewer	0
Contact	0
FirstName	1
LastName	1
bitten	0
projections	0
Transformers.AliasToBean	1
projection	0
Drive	0
Research	0
onsubmit	1
refreshes	0
minus	0
posts	0
HTML5	0
ultimately	0
sentences	0
filename	0
time()	1
rand()	1
tempnam()	1
banners	0
Default	0
Banner	1
Selectable	1
selectable	0
Special	0
carousel	0
selectablebanners	1
advanced	0
selectedbanners	1
ul	0
#sortable1	1
defaultbanner	1
selectablebanner	1
jsFiddle	1
win32	1
visual	0
cmd.exe	1
goto	0
External	0
Powershell	1
Startup	0
mixing	0
subsystem	0
offerring	0
consuming	0
ISE	0
-Oisin	0
cassandra	0
Node1	1
Node2	1
Node3	1
sync	0
nodetool	1
rebuild	1
replication_factor	1
1.You	0
topology	0
2.Your	0
Simple	0
datacenter	0
SimpleStrategy	1
replica	0
partitioner	1
Additional	0
replicas	0
clockwise	0
ring	0
Go	0
https://docs.datastax.com/en/cassandra/3.0/cassandra/architecture/archDataDistributeReplication.html	0
retrieves	0
TodoItem	1
unnamed	0
chronologically	0
Sorted	0
Whatever	0
translation	0
Reminder	0
sortInPlace	1
subtract	0
subtracted	0
Subtracting	0
Timespan	1
days/hours/mins/secs/milliseconds/ticks	0
occured	0
DateTimes	1
TimeSpan	1
procedures	0
AddDays	1
Similarlly	0
AddHours	1
AddMonths	1
AddMilliseconds	1
http://msdn.microsoft.com/en-us/library/system.datetime_members.aspx	0
plane	0
clustered	0
outliers	0
rectangular	0
visiting	0
visited	0
ideal	0
minimize	0
unvisited	0
minimizing	0
FileHandlers	1
slowing	0
poll	0
preformatted	0
FileHandler	1
realised	0
run()	1
publish()	1
LogRecord	1
traces	0
Formatter	1
continuing	0
AROUND	0
java.util.Logger	1
JDK	0
Logging	0
remarkable	0
asynchronous	0
Necessary	0
Log4j2.xml	1
loggign	0
SLF4J	1
intrusive	0
http://saltnlight5.blogspot.ca/2013/08/how-to-configure-slf4j-with-different.html	0
http://www.slf4j.org/manual.html	0
logwriters	1
levels	0
non-blocking	0
log(logLevel,	1
logOrigin,	1
logMessage)	1
hood	0
logwriter	0
queues	0
AVAssetReaderOutput	1
AVAsset	1
RemoteIO	0
AU	0
AudioOutputUnitStop	1
playback	0
AudioOutputUnitStart	1
copyNextSampleBuffer	1
AVAssetReader	1
AVAssetReaderStatusFailed	1
Domain	0
AVFoundationErrorDomain	1
-11847	0
Operation	0
Interrupted	0
UserInfo	1
0x1d8b6100	1
NSLocalizedRecoverySuggestion	1
Stop	0
NSLocalizedDescription	1
Interrupted}	1
reinitialize	0
Hoping	0
AVAssetReaders	1
survive	0
back.	0
Notes	0
entitled	0
interruptions	0
AVAudioSession	1
AVAudioSessionDelegates	1
endInterruptionWithFlags	1
AudioPlayer	1
AudioReader	1
Setup	0
Render	1
RenderCallback	1
AVReader	0
underpinnings	0
connected/linked	0
whatsoever	0
hibernate	0
decides	0
forced	0
beginBackgroundTaskWithName:expirationHandler	1
devs	0
QA	0
exits	0
WILL	0
reader	0
readerOutput	1
AVAssetReader.error.code	1
AVErrorOperationInterrupted	1
gapless	0
recovery	0
encapsulated	0
seek	0
AVAssetReader.timeRange	1
presto	0
kAudioUnitRenderAction_OutputIsSilence	1
Starting	0
Unless	0
serious	0
interruption	0
asset	0
lie	0
attack	0
AUGraph	1
tear	0
reconnect	0
Reconnect	0
Username	0
Password	0
incorrect.	0
password_verify	1
5.3.2	0
hence	0
$hashed	1
password_hash	1
$password	1
PASSWORD_BCRYPT	1
extent	0
pls	0
Clojure	0
Koans	0
https://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj	0
builtin	0
_	0
blanks	0
seq	1
parenthesis	0
Re-read	0
nth	0
solves	0
koan	0
Asking	0
friend	0
satisfactory	0
Image	0
Linq	0
inventive	0
Mark	0
100.0	0
oval	0
paintComponent	1
soultions	0
RacerMain.java	1
Dot.java	1
FlowLayout	1
respects	0
Dot	0
getPreferredSize	1
#setVisible	1
TYIA	0
Before	0
restore	0
backup	0
/bash_login	1
/.profile	1
/.bashrc	1
/bin/cat	1
properly-speaking	0
defaults	1
com.apple.Terminal	1
path/to/saved.plist	1
ruby	0
roleDefinitionBindings	1
:{	1
-2147024891	1
System.UnauthorizedAccessException	1
en-US	1
denied	0
}}}	1
getUserRole(appWeburl,	1
principalid,success,failed)	1
.ajax	1
appWeburl+	1
/_api/web/RoleAssignments	1
('	1
principalid	1
/roleDefinitionBindings	1
application/json	1
odata	1
verbose	0
function(data)	1
Success	1
data.d.results	1
Failed	0
failed()	1
Install	0
Info	0
sonarqube-6.7.1	1
sonar-scanner-3.0.3.778	0
sonar-scanner-msbuild-4.0.2.892	1
14	0
Kit	0
4.6.2	0
batch	0
scan(sonar)	0
Our	0
Build.bat	1
SonarQube	1
C:\Program	1
Files	0
\Jenkins\workspace\CSS_SQ>exit	1
CSS_SQ	1
Files(x86)\Jenkins\tools\hudson.plugins.sonar.MsBuildSQRunnerInstallation\SonarQube_Scanner_for_MSBuild\MSBuild.SonarQube.Runner.exe"	0
/d:sonar.login	1
******	0
********	0
MSBuild	1
4.0.2	0
Files(x86)\Jenkins\tools\hudson.plugins.sonar.MsBuildSQRunnerInstallation\SonarQube_Scanner_for_MSBuild\SonarQube.Analysis.xml	1
Loading	0
\Jenkins\tools\hudson.plugins.sonar.MsBuildSQRunnerInstallation\SonarQube_Scanner_for_MSBuild\SonarQube.Analysis.xml	1
Post-processing	0
sonar-properties	1
14:36:16.988	1
markdown	0
14:36:16.989	1
Exit	0
ERROR	0
Execution	0
Finished	0
FAILURE	0
About	0
Possible	0
.sonarqube	0
.sln	0
cd	1
Older	0
investigated	0
Slave	0
yours	0
/d:sonar.verbose	1
subfolders	0
C:\Windows	1
Jenkins	0
slave	0
agent	0
DFS	0
arraylists	1
adjacency	0
Graph.txt	1
viz	0
viz[node]	1
pop()	1
Integer	1
(array	1
stacks	0
peek()	1
Stacks	0
first-in	0
last-out	0
popping	0
Pushing	0
Charlie	0
Adam	0
sqlite3	1
Intel-PIN	0
PinCRT	0
Pin	0
_OS_RETURN_CODE	1
tens	0
Gigabytes	0
unpack	0
sequentially	0
mmap	1
ctypes	0
specialized	0
Cython-coded	0
Fortran	0
interfaced	0
humongous	0
peculiar	0
intrinsically	0
offsets	0
usable	0
compact	0
handily-formatted	1
auxiliary	0
lengths	0
compositions	0
gigabytes	0
Etc	0
GB	0
wow	0
thereof	0
generators	0
input.txt	1
berry	0
berries	0
simplistic	0
says.	0
original.txt	1
-v	1
sed	1
-n	1
loganberry	0
strawberries	0
Slider	1
emulation	0
tool-tips	0
IPhone	0
touch	0
6s	0
remarable	0
tooltips	0
gwtbootstrap3	1
tip	0
library.For	0
pending	0
MyThreadYield	1
workes	0
getcontext(&(save.context))	1
addToQueue(save)	1
thread-safe	0
suggests	0
multi-threaded	0
removeFromQueue()	1
addToQueue()	1
Aside	0
rear	0
queue[front]	1
grow	0
indefinitely	0
beyond	0
segmentation	0
superficially	0
long-term	0
array-based	0
terrible	0
inefficient	0
modulo	0
ahead	0
disaster	0
Definitely	0
tail	0
http://en.wikipedia.org/wiki/Queue_(abstract_data_type)#Queue_implementation	0
destroyed	0
subversion	0
svn	0
revisited	0
retract	0
propdel	1
svn:ignore	1
ingnores	0
Conflict	0
misinterpreting	0
JDT	0
AST	0
JAR	0
7+	0
JARs	0
NoClassDefFoundError	1
Trial	0
Ctrl-T	1
view/locate	0
analyzer	0
JarAnalyzer	1
Jars	0
graphical	0
Finding	0
unused	0
jars	0
ClassPathHelper	1
unresolved	0
identifies	0
orphan	0
obscured	0
injection	0
inline-block	1
32%	0
text-align	1
center	0
div-container	1
pseudo	0
resizeFunction	1
div.content-wrapper	1
display:inline-block	1
div.content	1
Greetz	0
Flex	1
centered	0
flex	1
Added	0
Somebody	0
sintaxys	1
Headache	0
5.0.51b	0
Infinity	0
Siride	0
TRIGGUER	1
TRIGGER	1
semi-colon	0
bugging	0
wordToDisplay	1
textView	1
setText();	1
textview	1
android:id	1
@+	1
id/mytextview	1
tv	1
(TextView)findViewById(R.id.mytextview)	1
tv.setText("foo")	1
SOAP	0
secured	0
NTLM	0
authenticate	0
WSDL	0
maven-jaxb2-plugin	1
jaxb2:generate	1
wsdl	1
Route53	0
delegation	0
sets.But	0
domains	0
gonna	0
wirte	0
doenst	0
lseek	1
inconsistently	0
left-over	0
syncfs	1
hard-coded	0
superfluous	0
str	1
personally	0
main.cpp	1
main.pro	1
Player	0
Score	1
row+	1
Player1	1
____playerScore1	1
Player2	1
____playerScore2	1
Player3	1
____playerScore3	1
......	1
Harry	0
UITable	1
blog	0
Checkout	0
http://www.littlecomputers.net/2009/?page_id=549	0
http://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/	0
http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html	0
pasted	0
underscore	0
e.gr	1
rationale	0
Guidelines	0
specifies	0
guidelines	0
Intellisense	0
this.variablename	1
_variablename	1
note/label	0
when/if	0
fetched	0
mostUpTodateNewsItemsFromRealm	1
numberOFChannelSubscribedToIs	1
.......	1
stucked	0
Cause	0
pivot	0
couldn	0
t	1
Col5	1
OutPut	0
cycles	0
col6	1
belongs	0
col5	1
increasing	0
clearer	0
col3	1
Col4	1
****	0
comments*******	0
Provided	0
*Query	1
Cycle	0
OUTPUT	0
SelectQuery	1
predicates.	1
whitespace	1
building.	0
predicate	0
addConditions	1
overloaded	0
[Collection	1
Conditions	0
mylist	1
.i	0
printList()	1
working.how	0
Node	0
Nodes	0
document.createTextNode()	1
document.appendChild()	1
document.write	1
Secondly	0
appendChild	1
document.createTextNode	1
episode	0
shades	0
@DonJuwe	0
http://jsbin.com/xakifequ/1/edit	0
JSBin	0
.html-file	1
Urls	0
//code.jquery.com/jquery	0
-1.9.1.js	1
file://	1
achieved	0
http://localhost/yourfile.html	0
http://	0
:D	0
text-editor	0
syntax-coloring	0
File/Open	0
.pdb	1
pdb	0
Release	0
Prior	0
PDB	0
File->Open	1
reflector	0
interrupted	0
static_assert	1
compilation	0
constexpr	1
SIZE_MAX	1
<stdint.h>	1
size_t(-1)	1
http://en.cppreference.com/w/cpp/types/climits	0
Surveys	0
request_id	1
surveys	0
Executing	0
to_json	1
advertised	0
150	0
you''ll	1
owns	0
survey	0
Consumer	0
legged	0
prompt	0
non-service	0
https://developers.google.com/identity/protocols/OAuth2WebServer	0
credential	0
./example_client.py	1
--client_secrets_file	1
localhost:8080	1
2004-03-01-22.58.00.912933	0
Others	0
dealt	0
f1	0
fractions	0
music	0
Spotify	0
spotify	0
numbers/urls	0
scrape	0
unmanageable	0
importantly	0
scraping	0
catalog	0
Terms	0
user-supplied	0
p+1	1
=p	1
ch>='a'	1
ch='z'	1
if()	1
ha	0
forgot	0
then(<)	1
ch<='z'	1
LHS	0
lvalue	1
RHS	0
lavalue	0
drop-down	0
previously	0
selected/clicked	0
THANKS	0
grid_filename	1
valgrind	1
tcp	0
Valgrind	0
positives	0
suppress	0
review	0
stare	0
walk	0
toolbox	0
efficiently	0
producing	0
.cgi	1
index.cgi	1
evrything	0
corectly	0
:/	0
disconnect	0
<3	0
:')	0
insecure	0
HTML::Template	1
sessions	0
cgi	0
occurrence	0
cygwin	1
46	0
pipe	0
Menu	0
styled	0
IDE	0
ContextMenu.Resources	1
ContextMenu	1
Rachel	0
Separator	1
Style	0
third-party	0
differ	0
serialization	0
parses	0
operands	0
arguement	0
accorind	0
1+5+	0
varargs	1
StringTokenizer	1
OpenTok	0
WebRTC	0
Flash-based	0
TB.min.js	1
fall	0
0.9	0
interoperate	0
I.e	0
Chromes	0
2.0/WebRTC	1
0.9/Flash	0
Frame	0
IE6+	0
actively	0
23+	0
22+	0
operate	0
Chrome/Firefox	0
migrate	0
medium-sized	0
Nuke	0
2000	0
WordPress	0
redirection	0
nuke	1
News	0
htaccess	0
pandas	0
equation	0
row-by-row	0
coefficients	0
executable	0
sympy.sympify()	1
dataFrame	1
outPut	0
DF	0
sympify()	1
Elaborating	0
lambdify	1
sympy	1
industry	0
industry.rb	1
:sector	1
industries	0
alphabetically	0
options_from_collection_for_select	1
value_method	1
text_method	1
altera	0
DE0	0
DE2	0
DE1-SoC	0
boards	0
isa	0
nios	0
II	0
test-and-set	0
ISA	0
enforces	0
mutual	0
exclusion	0
tiny	0
main()	1
Interrupt	0
Routine	0
locks	0
Nios	0
architecture	0
processors	0
Hardware	0
Mutex	0
peripheral	0
test-and-test	0
Altera	0
Multiprocessor	0
respect	0
interrupts	0
ClientConfigurationFactory	1
com.amazonaws.ClientConfigurationFactory	1
aws-java-sdk-core	1
//i2cjni.java	1
//i2c.java	1
//I2CBoard.java	1
-when	0
U2C_GetDeviceCount()	1
.c	0
CoffeScript	0
webService.coffe	1
simplificated	0
_Class.logout	1
handleResult	1
102	0
webService.coffee	1
hi	0
arrayContactsFromAddressbook	1
schemaLocation	1
xml-file	0
xsd-File	1
XSLT	0
xmlns	1
http://www.w3schools.com	0
school/personen/person	1
XSLT/XPath	1
xpath-default-namespace	1
xmlns:df	1
df:school/df:personen/df:person	1
df:name	1
WSO2	0
BAM	0
mediator	0
Payload	0
capital	0
PascalCase	1
today	0
Point	1
Prompt	0
Points	0
original_points	1
skipping	0
99	0
push_back()	1
occurred	0
P	0
operator>>(...)	1
jump	0
p.x	1
p.y	1
skip_to_character(...)	1
initializing	0
dlopen/dlsym	1
.so(dlclose)	1
transfer	0
.so	0
nc	0
segv	0
rpm	0
yum	0
XXX	0
main.js	1
Shared	1
../shared/index	1
loaders	0
transform-runtime	0
Col	0
18.2	0
10/29	0
11/15	0
varchar	1
presentation	0
substring	0
OP	0
Swipe	0
browsed	0
TouchAction	1
Appium	0
1.4.13	0
Draco	0
//Method	1
driver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe)	1
100th	0
450th	0
coordinate.that	1
milliseconds	0
http://imgur.com/qBGvP	0
monospace	0
pixel-for-pixel	0
primitive	0
OCR	0
UserRoles	1
separated	0
WebForm_FireDefaultButton	1
textbox1.Focus()	1
webresource.axd	1
inaccessible	0
Firewall	0
policy	0
ISAPI	1
http://dormfair.com/about.php	0
#B7DDF2	1
grey	0
StackOverflow	1
.ui-widget-content	1
jquery-ui.css	1
1px	1
nav	0
.ui-menu	1
ui-widget	1
ui-widget-content	1
ui-corner-all	1
mouseup	1
onBlur	1
clicked/has	0
onCLick	1
OnClick	1
OnBlur	1
onClick	0
debuggers	0
breakpoint	0
mouseUp	1
http://jsfiddle.net/alaa13212/Gs5Y2/	0
blur	0
focusout	1
tabindex	1
focusable	1
contact-us	0
Us	0
Initially	0
toggle()	1
div>s	1
http://jsfiddle.net/8wbXV/	0
$('a')	1
illustration	0
Ueditor	0
flip	0
Line	0
jWysiwyg	0
Text	0
Weird	0
knew	0
grips	0
Autofac	1
Guice	0
annotations/ways	0
constructors	0
autofac	0
MessageBox	1
Window	0
ShowDialog()	1
System.Windows.MessageBox.Show()	1
https://stackoverflow.com/a/20098381/2190520	0
stand	0
1-2	0
LogCat	0
connection.disconnect()	1
UPDATE1	0
$.post{}	1
alert(data)	1
displaying.	0
error_reporting(E_ALL)	1
deliberately	0
upcoming	0
birthdays	0
pulled	0
birthday	0
Facebook	0
privacy	0
MM/dd	1
dateFormatterWithFormat	1
NSDateFormatter	1
difference.day	1
dancing	0
NSDate	1
rip	0
assemble	0
noon	0
23:00:00	1
00:00:00	1
tomorrow	0
arrangement	0
slice	0
birthdayComponents	1
refactor	0
ES5	0
prototype	0
babel	0
transpile	0
primer	0
ES2015	0
ES6	0
prototypes	0
setTimeout()	1
200ms	0
Salty	0
jeroen	0
hardcoded	0
wysiwyg	0
postContentClr	1
html()	1
Figured	0
Jitter	0
preloading	0
overlooking	0
MemSQL	0
analytical	0
MySQL-compatible	1
rowstores	0
Postgres	0
https://github.com/the4thdoctor/pg_chameleon	0
adapted	0
shovel	0
NOTIFY/LISTEN	0
WinSCP	0
http://winscp.net/eng/index.php	0
fantastic	0
ubuntu	0
putty	0
sudo	1
winscp	1
superuser	0
unpacked	0
getPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode	1
getPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName	1
assets/	0
getAssets()	1
360	0
degrees	0
panorama	0
cube	0
latitude-longitude	1
skybox	0
skyboxes	0
planned	0
streetview	0
Desperately	0
ashamed	0
Ext.js	1
my.items.push	1
MixedCollection	1
initComponent	1
Ext.apply	1
nvarchar(MAX)	1
datetime	1
2016-04-15	1
13:30:00.000	1
>>	1
HERE	0
workbook	0
InvalidOperationException	1
Sequence	0
Standard	0
JeffN825	0
HV	0
M2	0
CB	0
sheet2	1
sheet3	1
sheet4	1
sheet5	1
161	0
PackagePart	1
damn	0
.Single()	1
FirstOrDefault()	1
non-LINQ	0
replacing	0
.FirstOrDefault()	1
http/2	0
reachable	0
443	0
webserver	0
loadbalancer	1
forwarding	0
HTTP/2	0
ProxyPass	1
mod_proxy_http	1
webservers/loadbalancers	1
Nginx	0
HTTP/1.1	0
HTTP2	0
nginx	0
Json.net	1
JsonTextReader	1
json.net	1
http://pastebin.com/DbSDVt2K	0
StreamReader	1
TextReader	1
http://pastebin.com/iwF3xuUp	0
myString	1
reader.ReadAsString()	1
Unexpected	0
StartArray	1
Deserialize	1
JsonConvert	1
Json	1
Deserialze	1
specifiy	0
JsonReader	1
JObject	1
JToken.CreateReader	1
Newtonsoft	1
req.isAuthenticated()	1
req.user	1
IDispatch	1
IMyInterface	1
InterfaceType(ComInterfaceType.InterfaceIsIDispatch)	1
worksheet_change	1
worksheet	0
Sheet1	1
G8	1
beleive	0
sheet4.conditions	1
Awesome	0
horizontally	0
https://jsfiddle.net/b1rw80jz/1/	0
flex-box	1
+CSS	0
+HTML	0
pseudo-elements::before	1
bell	0
https://jsfiddle.net/b1rw80jz/6/	0
walkthrough	0
ComponentGroup	1
WiX	0
3.10	0
Component	0
Think	0
Components	1
skill	0
Beginner	0
wpf	1
Dell	0
Venue	0
Pro	0
tablet	0
cellular	0
triangulation	0
coordinates(latitude/longitude)	0
GPS	0
lat/lon	0
receiving	0
tower	0
NaN	0
continous	0
TryStart	1
synchronously	0
isChecked()	1
Deprecated	0
UiAutomator	1
mathod	0
uiobject	1
getValue()	1
getValue	1
notavaible	0
UIObject	1
checkable'=>true	1
CheckedTextView	1
isChecked()"	1
suspiciously	0
http://developer.android.com/reference/android/widget/CheckedTextView.html#isChecked()	0
Applescript	0
AppleScript	0
property-value	1
Opening	0
recompiling	0
resets	0
http://blueflame-software.com/using-highcharts-with-codeigniter/	0
positive	0
https://blueflame-software.com/using-highcharts-with-codeigniter/	0
SoundCloud	0
<error>401	1
Unauthorized</error>	1
http://api.soundcloud.com/tracks?client_id=xxxx&q=punk	0
disregard	0
listing	0
401	0
curl	0
https://api.soundcloud.com/tracks?q=track&client_id=aeb03ac55f278fc7e579c744144b1d5d	0
querystring	1
differing	0
well.Thanks	1
z	0
implicit	0
@alphabets	1
xyz	1
Structure	0
jsx	0
Command	0
--out-dir	1
devDependencies	1
legitimate	0
Realized	0
simplified	0
babel.rc	1
aginst	0
Attribute	0
lookups	0
Static	0
inclined	0
cleaner	0
senior	0
turning	0
nose	0
Option	0
Attributes	0
integral	0
Usage	0
mere	0
technicality	0
AttributeManager	1
ease	0
slowly	0
migrating	0
tracked	0
Administrator	0
admin	0
\Administrator	0
identifier	0
Makes	0
logged-in	0
laptops	0
synchronizing	0
WebService	1
Mule	0
3.1.0	0
fooImpl	1
stacktrace	1
vomited	0
mule	0
stdout	1
ExceptionTransformer	1
default-exception-strategy	1
<custom-exception-strategy	1
class="com.arcusys.nkeservice.mule.dynasty.ExceptionTest">	1
ExceptionTest	1
@override	1
handleException	1
CXF	0
3.1.3	0
http://mule.1045714.n5.nabble.com/mule-scm-mule-22344-branches-mule-3-1-x-modules-cxf-src-test-resources-EE-2273-td4557349.html	0
EE-2273	0
http://www.mulesoft.org/documentation/display/current/Mule+ESB+3.1.3+Release+Notes	0
<Item>	1
set()	1
setID()	1
istringstream	1
ifstream	1
input(file_name)	1
consecutive	0
python-markdown	0
cleanest	0
sad	0
weights	0
ArrayAdapter	1
inadvertantly	0
textviews	1
recycled	0
AbsListAdapter	1
CoreHourID	1
explaining	0
Entry	0
Hour	1
employees	0
WorkingFromHome	1
EmployeeNumber	1
JustifyDate	1
EntryDate	1
InHour	1
CoreHour	1
EntryID	1
OutHour	1
employee	0
comments/questions	0
gladly	0
Revised	0
ArbitraryText	1
ExecuteQuery	1
ignores	0
ColumnAttribute	1
DataContext.ExecuteQuery	1
POCO	0
LINQ-mapped	0
aggregate	0
sub-optimal	0
grungy	0
marry	0
UDF	0
comment-id	0
things.	0
side-step	0
Cent	0
sudoers	0
workflow	0
Work	0
re-base	0
Re-base	0
wells	0
feature2	1
<branch>	1
balancer	0
regional	0
IPs	0
.mp3	1
DSX	0
Music	0
Information	0
Retrieval	0
librosa	0
absence	0
ffmpeg	0
walk-around	0
notebook	0
--user	1
request/idea	0
https://ibmwatsondataplatform.ideas.aha.io/?category=6441922592725708622	0
Charles	0
fellow	0
Programmers	0
Wordpress	0
Typo3	0
sidebars	0
WP	0
functions.php	1
bio	0
index.php	1
footer.php	1
Problems	0
Content	0
themes	0
wp-content/debug.log	1
wp-config.php	1
sKylo	0
%d	1
decimals	0
codex	0
register_sidebars	1
Sidebar-1	1
Sidebar-2	0
Sidebar-3	1
highest	0
Random	0
rand	1
Random()	1
rand.Next()%15	1
-12	0
rand.Next()	1
https://math.stackexchange.com/questions/519845/modulo-of-a-negative-number	1
14}	1
attention	0
"rand.Next()	1
"rand.Next(15)"	1
rand.Next(minValue,maxValue)	1
minValue	1
inclusive	0
maxValue	1
4.1	0
code-first	0
thousands	0
Several	0
GridRow	1
implied	0
Modify	0
persisted	0
occasion	0
long-running	0
DbContext	1
SaveChanges()	1
legwork	0
optimal	0
notably	0
unit-of-work	0
herself	0
wins	0
simplicity	0
nudge	0
wishy-washy	0
fundamental	0
living	0
imprecise	0
EDIT1	0
existance	0
DbSet	1
<>	1
invites	0
indefinate	0
odds	0
disconnected	0
occaisionally	0
she	0
Trigger	0
edits	0
dispose	0
unsaved	0
Sync	1
draggable	1
boundaries	0
VisualTreeHelper.FindElementsInHostCoordinates	1
TransformToVisual	1
corners	0
dragged	0
mousemove	1
eventhandler	1
Clip	0
shortcuts	0
webcam	0
x264	0
codec	0
poping	0
VirtualDub	1
Hack	0
dub	0
latency	0
emgu	1
fourcc	0
x264wfv	1
.content	1
.nav-wrapper	1
procedural	0
TOP	0
specifics	0
es6	0
syntax.Either	0
transpiler(Babel)	1
Neo4J	0
evaluator	0
relationships	0
walked	0
evaluation	0
maintains	0
candidate	0
begins	0
remaining	0
A-D	0
A-B	1
B-C	0
D-E	0
determination	0
TraversalDescription	1
Paths	0
primary	0
complaint	0
RELATIONSHIP_GLOBAL	1
guaranteeing	0
broadly	0
traversers	0
tend	0
termination	0
PyQt	0
bear	0
.py	1
hate	0
ekhumoro	0
pyuic	1
imports	0
example_rc	1
lowers	0
productivity	0
.ui	0
ui	1
uic.loadUi('example.ui')	1
ui.setupUi()	1
ordinary	0
QMainWindow	1
QDialog	1
QWidget	1
setupUi	1
MainWindow	1
Ui_MainWindow	1
Take	0
O(n^2)	0
examining	0
proving	0
n^2	1
O(n^3)	1
inverse	0
subsection	0
quadratic	0
O(n2))	0
proven	0
dominant	0
Apart	0
n-1	1
O(n)	1
t_j	1
decrementing	1
summing	0
paying	0
n+1	0
dividing	0
wolfram	0
/2	0
dominate	0
blacberry	0
VOIP	0
delivering	0
opensource	0
ByteArrayOutputStream	1
dataOut	1
RTP	0
lower-case	0
upper-case	0
awk	1
words	0
approximate	0
Quadratic	0
BSpline	0
Curve	0
B-spline	1
curve	0
fitting	0
adaptive	0
refinement	0
Park	0
Lee	0
Fair	0
interpolation	0
B-splines	0
energy	0
minimization	0
Vassilev	0
Converting	0
curvature	0
1.6	0
trunk	0
30000	0
/trunk	1
subdirectory	0
sub-folders	0
30,000	0
noticeable	0
SSD	0
networked	0
LC3	0
devides	0
remainder	0
R0.In	0
R1	0
0.Else	0
beginner.Could	1
#25	0
message.Thank	0
ASP.Net	1
unauthorized	0
persons	0
detaisl	0
validated	0
OOP	0
management	0
interaction	0
....	0
colossal	0
massive	0
knees	0
lack-of-scalability	0
transactions	0
DataTables	1
nifty	0
comfortable	0
suffice	0
agnostic	0
hurry	0
ton	0
hands	0
judicious	0
motion	0
adage	0
20%	1
Nail	0
cleanly	0
town	0
flashy	0
fluff	0
IS	0
EXT.JS	0
1.8	0
REE	0
Fixnum	1
Calling	0
object-oriented	0
receiver(!)	0
symmetry	0
broken	0
Numeric	0
Quaternion	1
Quaternions	1
thoughtful	0
Fixnums	0
Fixnum#	1
reverses	0
subtyping	0
subclassing	0
understands	0
violates	0
lose	0
Rope	0
to_str	1
IS-A	1
String#	1
string-like	0
People	0
agree	0
complications	0
Mutable	0
moments	0
symmetric	0
stdlib	0
artifact	0
subclasses	0
formal	0
double-dispatch	0
coerce	0
IOW	0
#coerce	1
Quaternion.new(2,0,0,0)	1
Quaternion.new(1,0,0,0)	1
Fixnum#+	1
equivalence	0
#equal	1
#eql	1
#	0
#hash	1
Mindful	0
equips	0
her	0
Going	0
#<=>	1
three-way	0
method,	1
Comparable	1
module,	1
#==,	1
#<,	1
#>	1
#sort	1
operator-like	0
mindful	0
existence	0
undergoing	0
FormCollection	1
HTTPPost	1
decorated	0
controller.There	0
http://tutorial.techaltum.com/Form-collection-in-MVC.html	0
http://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/	0
Follow	0
exoplayer	0
AMR	0
FFmpeg	0
Extension	0
aar	0
extension-ffmpeg-debug.arr	1
loosely	0
lumping	0
MyAllIncludingEnumType	1
Strings	0
rawValues	1
AnyObject	1
.rawValue	1
ship	0
GM	0
Kametrixom	0
enums	1
conform	0
RawRepresentable	1
approval	0
approved	0
approver	0
Offer	0
Detail	0
finds	0
audit	0
colum	0
aligned	0
sit	0
.Parent	1
#main	1
Div	0
recognise	0
strech	0
Dave	0
behaving	0
expand	0
floated	0
explanations	0
overflow:hidden	1
optionall	0
clear:both	1
Capabilitie	1
EN	0
ENGLISH	0
Centos	0
iptables	1
firewall	0
Prtg	0
Solarwinds	0
Opmanger	0
Monitor	0
LinuxScript	1
thwack	0
start.js	1
urls.py	1
div_val	1
refering	0
leas	0
render()	1
Rest	0
React	0
https://medium.com/@adamzerner/client-side-rendering-vs-server-side-rendering-a32d2cf3bfcc	0
Employees	0
profile.html	1
$_SESSION	1
profile.php	1
.php	1
interpreter	0
.html	1
surrounded	0
const	1
terminate	0
threw	0
decays	0
char*	1
std::exception	1
chapter	0
meantime	0
super-FAQ	0
you/	0
C-string	1
char[13]	1
C-Arrays	0
decay	0
predefined	0
<stdexcept>	1
std::logic_error	1
std::range_error	1
std::bad_alloc	1
Their	0
caught	0
so-called	0
unwinding	0
rethrow	0
std::terminate()	1
aborted	0
try/catch	0
Cases	0
treatment	0
realistically	0
exceptional	0
catch(...)	1
//..	1
FAQ	0
errno	0
throw/catch	0
process_several_files()	1
non-cacheable	0
DRAM	0
kmalloc()	1
get_free_pages	1
vmalloc	1
drivers/char/mem.c	1
Chapter	0
Device	0
Drivers	0
Edition	0
pie	0
chart.js	1
anyway	0
pro	0
graphs	0
dynamics	0
Observer	1
Beautiful	1
Soup	1
bs4/__init__.py	1
219	0
Reasons	0
promote	0
Warnings	0
Exceptions	1
warnings.simplefilter	1
warnings.filterwarnings	1
traceback	1
Pythons	0
pdbs	0
post-mortem	0
dig	0
-W	1
convenience	0
USER_SITE	1
site._script()"	1
usercustomize.py	1
Credits	0
Lets	0
datetimes	1
2013-07-22	1
2013-07-28	1
2013-07-23	1
2013-07-24	1
2013-07-25	1
2013-07-26	1
2013-07-27	1
Require	0
$interval	1
3.	0
$period	1
Likewise	0
poof	0
Gone	0
CODEPEN	0
uiGmapgoogle-maps	1
dependecies	1
Links	0
data-binding	0
ng-href	1
href	1
preparation	0
Jhon	0
Papa	0
ngRepeat	1
http://codepen.io/anon/pen/BKLdyP?editors=1011	0
AFIK	0
white/blank	0
sine	0
wave	0
axes	0
$('#my_id')	1
.on	1
'page	1
.dt	1
function()	1
perPageFunctionCall()	1
;})	1
.dataTable(soonansoforth)	1
redisplays	0
trip	0
subsequent	0
trips	0
someway	0
manipulation	0
resp	1
favorite	0
alerted	0
associative	0
user_id	1
forum_id	1
user_forum_subscriptions	1
forum.users	1
Subscription	1
subscriptions	0
have_many	1
added/removed/edited	0
Michael	0
Hartl	0
establish	0
twitter-like	0
grade_id	1
whereLoose()	1
where()	1
Int	1
activates	0
robotic	0
arm	0
robot	0
..//../Karel/RIGHT1	0
rightmanual.stm	1
image/button	0
onegrey.jpg	1
btnRedirect	1
:P	0
TimerTask	1
standby	0
Partial	1
Wake	0
Lock	1
Tried	0
WakeLock	1
task/runnable	0
asynctask	1
wakelock	1
onCreate	1
console.log(e)	1
done()	1
assert	0
extern	1
kernel.s	1
SignalR	1
Self	0
Hosted	0
2.2.0	1
Silverlight	0
Client	0
Connection	0
Hub	0
28-30	0
secs	0
Abort	0
unblocked	0
Task.Factory.StartNew	1
(()	1
hubConnection.Stop());)	1
TL	0
;D	0
https://github.com/SignalR/SignalR/issues/3102	0
hub	0
Threading	0
acknowledgement	0
PhantomJS	0
headless	0
Webdriver	0
scrolls	0
dropUp	0
menu_tab	1
stays	0
TIA	0
clearTimeout()	1
isn't	0
http://jsfiddle.net/YFPey/	0
Solidus	0
ecommerce	0
UK	0
Zip	0
Post	0
localization	0
forked	0
Spree	0
translate	0
locale	0
internationalization	0
solidus_i18n	1
Installation	0
Instructions	0
readme	1
config/initializers/spree.rb	1
Internationalization	0
documenation	0
dialogueService	1
Dialogue.component.ts	1
Dialogue.component.spec.ts	1
textbox	0
awesome	0
Cancel	0
#myDiv	1
$myDialog	1
autoOpen	1
over-ride	0
jquery.ui.theme.css	1
.ui-state-default	1
.ui-widget-header	1
Close	0
.ui-icon	1
Dialogue	0
upvoted	0
dialogClass	1
myDialogCSS	1
MyStyleSheet.css	1
incompatible	0
PlayerData	1
AFAIK	0
XCode	0
resulted	0
NPE	1
remained	0
maaartinus	0
compiles	0
sloppy	0
heard	0
Vrushank	0
Desai	0
InstanceCreator	1
----	1
2013-05-30	1
2013-05-29	1
2013-05-28	1
2013-05-27	1
grateful	0
gsub	1
talling	0
escaping	0
dashes	0
as.Date	1
Produces	0
timeseries	0
GWT+Hibernate+Gilead	0
https://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate	0
Gilead	0
1.3.2	1
2010-05-22	1
2.5	0
Hibernate	0
3.5.x	0
http://sourceforge.net/projects/gilead/forums/forum/868076/topic/4525959	0
e-commerce	0
websites	0
shopify	0
sitemap	0
Shopify	0
cart0	1
simultaneous	0
add/update/change	0
chained	0
combining	0
additions/changes	0
/cart/update.js	1
variant	0
quantities	0
https://help.shopify.com/themes/development/getting-started/using-ajax-api#update-cart	0
single-line	0
reliability	0
javafx	1
TableView	1
dataTypeColumn	1
editable	0
ComboBox	1
commiting	0
reuses	0
intervene	0
Values	0
DataType	1
Factory	0
Integers	1
CellValueFactories	1
assoziated	0
reacts	0
commited	0
setPlaceholder	1
ComboBoxTableCell	1
suddendly	0
ObservableList	1
Rather	0
surprising	0
wheel	0
buf	1
cellFactory	1
datagrid	1
on.	0
gcov	1
Merge	0
mismatch	0
http://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c	0
sanity	0
.gcda	1
gains	0
profilable	1
stuff.c	0
Makefile	1
main.c	1
main.o	1
stuff.o	1
testexe	1
-fprofile-arcs	1
-ftest-coverage	1
profiling	0
execuatable	0
main.gcda	1
stuff.gcda	1
#if	1
recompile	0
relink	0
recreated	0
xargs	1
re-check	0
openssl	1
0.9.8g	1
X509_verify	1
0/1	0
algorithms	0
Algorithm	0
obj_ID	1
cursors	0
Helper	0
alternatively	0
ngShow	1
crossfade	0
http://plnkr.co/edit/EcT2oOmClz65WUgXgG4g?p=preview	0
1.2.4	0
ng-animate	1
fading	0
in/out	0
overlapping	0
crossfading	0
insight	0
utilization	0
resourceName.utilization()	1
Statistics	0
statisticName.mean()	1
AnyLogic	0
resetStats()	1
averaged	0
gulp	1
symphony	1
https://www.npmjs.com/package/gulp-twig	0
test.twig	1
Implementation	0
https://github.com/justjohn/twig.js/wiki/Implementation-Notes	0
https://developers.google.com/web-toolkit/tools/gwtdesigner/features/menu_editing	0
Swing	0
Returning	0
gwtearthdemo	1
96	0
javax.swing.JFrame	1
Ditto	0
JMenuBar	1
JMenu	1
suggesting	0
Classes	0
trial	0
Quest	0
Optimizer	0
dramatically	0
Plan	0
Cost	0
831	0
Elapsed	0
Time	0
00:00:21.40	1
Records	0
40,717	0
686	0
00:00:00.95	1
re-arranging	0
comparisons	0
||	1
AA	0
VERSION_NAME	1
Rob	0
tune	0
Gather	0
stats	0
DBA	0
http://www.adobe.com/devnet/flash/quickstart/datagrid_pt3/	0
CellRenderer	1
CellRenderers	1
tetris	0
joomla	0
Fatal	0
get()	1
non-object	0
belows	0
helper.php	1
mod_feedGrabber.php	1
mod_feedGrabber.xml	1
default.php	1
$params	1
fieldset	1
Win32	1
MMDeviceEnumerator	1
IaudiosessionManager	1
Ideally	0
DirectShow	1
Media	0
Foundation	1
twitter	1
Patterns	0
RegExp	1
reformats	0
GeoJSON	1
MultiPolygon	0
90	0
Mb	0
Search	0
outcome	0
reformatting	0
complain	0
unbalanced	0
extensive	0
2017-01-07	1
GPS-points	0
Feature	0
35.642.1.001_001	1
unchanged	0
braces	0
-p	1
suffix	0
quotation	0
Platypus	0
prompts	0
Tkinter	1
LINK	1
/LINK	1
<a	1
href=url>url</a>	1
a-zA-Z0-9_-.	1
Catch	0
https://	0
example.com/google.com	1
preg_replace_callback()	1
xss	0
Strip	0
outputting	0
BB	0
Analyses	0
columns(id	1
game_id(FK	1
));	1
Games	0
round_id(FK	1
Round	0
columns(id,	1
round)	1
round_id	1
Analyses::orderBy('round_id')->get()	1
analyses	0
orderby	1
games	0
eagerloading	1
exemple	0
game_id	1
Analyse	0
orderedby	1
Programming	0
Lazy	0
Eager	0
Explicit	0
reps	0
Reps	1
Reps_Zones	1
Reps_Prerequisites	1
Reps_Languages	1
appointments	0
performances	0
Lazy-loading	0
DBcontext	1
datalayer	0
properites	0
isnt	0
ToList()	1
facebook	0
Lots	0
persists	0
http://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595	0
prioritized	0
increased	0
520px	1
pushes	0
Bug	0
Details	0
griffon	0
theory	0
svg-edit.html	1
js/css	0
interact	0
SVG-Edit	0
TwoWay	1
SelectionChanged	1
cross-browser	0
fpr	0
Screenshots	0
incude	0
issue.	0
42	0
MSIE	0
5.1.7	0
-webkit-linear-gradient(#FFF,#000)	1
externing	0
Header	0
Main.cpp	1
functions.cpp	1
std::vector<Point2f>	1
obj_corners(4)	1
initializer	0
Equal	0
unwrap	0
John	0
equatable	0
optionals	1
person.name	1
implicitly	0
duplication	0
minimized	0
extracting	0
genes	0
books.models	1
Router	0
routers.py	1
progmatically.	0
querysets	1
10px	0
product-category	0
li.product-category	1
product>img	0
<product>	1
li-s	0
ing	0
<img>	1
homePage	0
ProgressSample	1
main(......)	1
plz	0
ur	0
foo.bar	1
Operator	0
operator->	1
foo->bar	1
ptr	1
.bar	1
overloads	0
spec/services/	1
app/services	1
rspec	1
associations	0
@account	1
:confirmed	1
Transaction.pay	1
mock	0
FactoryGirl	1
Devise	0
helpers	0
Stub	0
Business	0
stub	0
spec	0
stubbed	0
perspective	0
consistently	0
sqlfiddle	1
TransactionID	1
DoctorID	1
PatientID	1
TotalMedicine	1
MedicineID	1
multiples	0
smallest	0
Doctor	0
didnot	0
multiplies	0
4.	0
Cast(Substring(PatientId	1
Len(PatientId	1
tableHeader	1
char(5)	1
RTRIM	1
this->forward404	1
getApplicationConfiguration()	1
settings.yml	1
404	0
.actions	0
error_404_module	1
error_404_action	1
custom404	1
forward404	1
custom404Success.php	1
prod	1
albeit	0
dirtiest	0
CommonActions	1
sfError404Exception	1
enviroment	0
set_exception_handler("my_handle")	1
Pardon	0
stupidity	0
CLRv2	0
Eric	0
Lippert	0
resetting	0
rethrows	0
catches	0
DivisionByZeroException	1
re-throwing	0
re-set	0
Durable	0
Orchestration	0
documentation.So	0
verb	0
responded	0
NotFound	0
.Why	0
triggred	0
durable	0
orchestration	0
approach.Is	0
Functions	0
HttpTrigger	1
https://github.com/Azure/Azure-Functions/issues/552	0
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-http-webhook	0
Timer	0
https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer	0
timer-triggered	1
OrchestrationClient	1
bare	0
SVN	0
intentionally	0
#git	1
reporting_date	1
interest_payment	1
balance	0
200401	0
.Is	0
es-spec	0
babel-2015	0
preset	0
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names	0
es2015	0
Babel	0
consoling	0
<script	1
src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js"></script>	1
0Aconst%20A%20%3D%20%7B%5BL%5D%3A%20responses%7D%0Aconsole.log(A)%0A	1
appinventor	0
https://docs.google.com/document/d/1Xc9yt02x3BRoq5m1PJHBr81OOv69rEBy8LVG_84j9jc/pub#h.5p32kqx16c2d	0
inventor	0
https://github.com/mit-cml/appinventor-sources.git	0
tired	0
windows/	0
gitHub	0
corporate	0
unset	0
Textbox	1
Felix	0
FORM	1
Whats	0
message.Please	0
.keyup()	1
myObject	1
MyObject	1
.h	1
releases	0
http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmObjectOwnership.html#//apple_ref/doc/uid/20000043-SW4	0
Important	0
invoked	0
Zigglzworth	0
-(void)dealloc	1
Moved	0
NP-hard	1
traveling	0
salesman	0
MAX-SAT	1
chromatic	0
Intuitively	0
co-NP	0
refute	0
witness	0
Knowing	0
PSPACE-hard	0
broad	0
satisfying	0
precludes	0
MAX-CNF-SAT	1
scored	0
floor(k/N)	1
computable	1
polynomial	0
valuation	0
yields	0
maximizing	0
FLOOR-CNF-SAT	1
TAUTOLOGY	0
negate	0
dummy	0
Negation	0
solver	0
deems	0
crafted	0
satisfies	0
cheating	0
artificially	0
established	0
co-NP-complete	1
co-NP-hard	1
reduction	0
arbitrarily	0
1}	1
K	1
cheat	0
negated	0
d1	1
dN	1
2N	1
Such	0
regularity	0
scoring	0
is-optimal	1
all:/	0
greedy	0
MOST	0
Pentaho	0
Kettle	0
Internal.Job.Filename.Directory	1
SPoon.bat	1
job/xfrm	1
runnig	0
spoon.bat	1
Spoon	0
documented	0
http://jira.pentaho.com/browse/PDI-7434	0
catching	0
full-blown	0
5xx	0
Json()	1
chance	0
Generate	0
C-based	0
JSON-C	0
Jansson	0
Parse	0
calculations	0
oly	0
data.pdf	0
output.csv	1
pdfminer	1
tabula	1
non-graphic	0
Locations	0
-100	0
21	0
21x21	0
ranging	0
-10	0
+10	0
LIVE	0
Funktion	0
getLocation(x,y)	1
Revolution	0
bringing	0
RAM-sized	0
simulation	0
SurvSplit()	1
survival	0
seperate	0
observations	0
symfony	1
bundle	0
fgetcsv	1
color.Is	1
https://git.webworks-nuernberg.de/webworks-nuernberg/parsecsv	0
cweiske	0
.xls	1
.odt	1
Date(2016,	1
4,	1
JSbin	0
http://jsbin.com/catolumifa/edit?html,output	1
<meta>	1
sheets,	1
<link>	1
vote	0
stylesheets	1
HW	0
Multivariate	0
Analysis	0
PROC	0
PLOT	0
5-10	0
tall	0
.05	0
inch+	0
informative	0
SAS	0
skilled	0
ods	0
SGPLOT	1
CRUD	0
post_save	1
signals	0
funny	0
CRUD_Storage	1
pre(post)init	1
DRY	0
dismissing	0
dismiss	0
decorator	0
skip_signal	1
helpdesk	0
Emails	0
XPages	0
courtesy	0
http://techdriveactive.blogspot.co.uk/2012/11/open-attachments-in-xpage-in-client.html	0
HelpDeskOpenDoc.xsp	1
XPage	1
Rich	0
Field	0
Dojo	0
ContentPane	1
XPiNC	0
WAMP	0
Mean	0
sever	0
WIN	0
coz	0
.cancel()	1
Notifications	0
reciever	0
notificationId	1
mNotificationManager	1
notify(1	1
mBuilder	1
())	1
putExtra	1
telephone	0
workarounds	0
screenshoting	0
verifying	0
RootFrame.Obscured	1
http://www.wintellect.com/CS/blogs/jprosise/archive/2011/02/11/silverlight-for-windows-phone-programming-tip-6.aspx	0
COPY	0
guillemet	0
(Âť)	1
Loads	0
dots	0
INSERTs	1
char_length	1
UTF8/UNICODE	1
Multibyte	0
http://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html	0
euclidean	0
norm	0
squared	0
distances	0
=3	1
pdist2	1
Pairwise	0
bigList	1
littleList	1
leverages	0
Benchmarking	0
Benchmark	0
runtimes	0
Shai	0
bsxfun	1
winner	0
mousedown	1
unforcused	1
deselected	0
directive/	0
binds	0
event.stopPropagation()	1
uninstalled	0
determining	0
APN	0
absent	0
APNS	0
conclusively	0
ng-map.min.js	1
applicatoion	0
.How	0
song	0
browses	0
Iphone	0
html5	0
playbackrate	0
Browsers	0
web-audio	1
mobiles	0
tempo	0
schedules	0
BPM	0
notes	0
120	0
AudioBufferSourceNode	1
pre	0
playbackRate	1
pitch	0
correction	0
https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode	0
Plugin	0
advantages	0
mentioning	0
Cheers	0
uid='0	1
disapeared	0
civ_alive='0	1
mariadb	1
pandas.DataFrame	1
float64	1
myComplexFunc()	1
`̀N	1
df	1
dtype	1
select_dtypes	1
aggreagate	0
Series	1
df.A	1
excluded	0
badly	0
Message	0
Compose	0
TabBar	0
ToolBar	0
tabBar	1
hidesBottomBarWhenPushed	1
SMS	0
iphone	0
Totally	0
tabbar	1
compose	0
Far	0
MFMessageComposeViewController	1
hid	0
Happy	0
Issue	0
traying	0
mails	0
gmail	0
ImapClient	1
System.Exception	1
AE.Net.Mail.dll	1
xm003	1
BAD	0
AE.Net.Mail	1
https://github.com/andyedinborough/aenetmail/issues/197	0
Replacing	0
SearchCondition	1
@Ahmado	0
pop3	0
inbox	0
also.for	0
applicatin	0
nuget	1
OpenPop.NET	1
Step1	1
:Each	0
Sox	0
armeabi	0
armeabiv7	1
heartly	0
https://github.com/guardianproject/android-ffmpeg	0
refuse	0
iter()	1
next()	1
StopIteration	1
error.You	1
try-except	1
itertools.izip()	1
zip(l,l[1:])	1
neighbour	0
Kasra	0
iter()-based	1
page-specific	0
header.php	1
import.php	1
styles.css.php	1
$name	1
stdClass	1
se	0
$_GET['name']	1
api-oauth/openconnect/identity	1
federation/sign	0
Kindly	0
protocols	0
authorize	0
Sign-in	0
aspects	0
Authorizing	0
scopes	0
documentations	0
flights	0
station	0
first_value()	1
last_value()	1
Q	0
FIRST_VALUE	1
LAST_VALUE	1
SQLServer	1
symbiosis	0
Yogesh	0
Sharma	0
3.2.0	0
substrings	0
-D	1
-M	1
Generalized	0
Libstree	0
longest	0
std::string	1
multi-character	0
UTF	0
codepoint	1
overlaps	0
Outputting	0
codepoints	0
manipulating	0
IMO	0
UTF-32	1
nix	0
imbue	0
facet	0
facets	0
boost	0
http://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/codecvt.html	0
1.46	0
writting	0
UTF-16/32	0
Different	0
Dinkumware	0
http://www.dinkumware.com/manuals/default.aspx?manual=compleat&page=index_cvt.html#Code%20Conversions	0
UTF-X	1
UCS-Y	1
technically	0
minor	0
inconsequential	0
Stick	0
Surrogate	0
practically	0
-O3	1
0.014	0
-O0	1
0.000000	1
-03	0
summarize	0
elimination	0
as-if	0
omits	0
spend	0
apologize	0
powerless	0
mystery	0
QtCreator	1
Population	1
evolve	0
PopulationMember	1
population	1
Population::evaluate()	1
strangest	0
report()	1
experimentation	0
std::sort	1
qSort	1
Population->evaluate()	1
addres	0
0xbffff628	1
population_->members_.count()	1
printouts	0
evaluate()	1
problem_	1
0xbffff780	1
344	0
puzzling	0
evaluate(PopulationMember&)const	1
Population-instances	1
ownsMembers_	1
fishy	0
destructors/constructors	0
lifecycle	0
Population&	1
PopulationMembers	1
Populations	0
Fix	0
SOF	0
joy	0
presume	0
toggling	0
setChoiceMode	1
R.layout.listview_item_text.xml	1
inflate	0
listview_item_checkbox.xml	1
Checkable	0
android.R.layout.simple_list_item_multiple_choice	1
yur	0
CheckableFrameLayout	1
BooleanSparseArray	1
getCheckedItemPositions())	1
grepcode	0
Lab9	0
//compiles	0
traffic	0
jams	0
openstreetmaps.in	0
navigating	0
routes.how	1
openstreetmaps	0
A1	1
A2	0
routers	0
OSM	0
GraphHopper	0
influenced	0
blogged	0
streets	0
weighting	0
skills	0
SKILL	0
clasic	0
personToSkill	1
tempting	0
maitnence	0
hell	0
pretend	0
associates	0
Doe	0
Benny	0
Hill	0
Linus	0
Torvalds	0
Swimming	0
Donald	0
Knuth	0
pilots	0
Astronaut	0
alarm	0
alarms	0
reboots	0
broadcastReceiver	1
onReceive	1
bootReceiver	1
requestCode	1
android.intent.action.BOOT_COMPLETED	1
BroadcastReceiver	1
http://developer.android.com/reference/android/content/BroadcastReceiver.html	0
practicing	0
fresher	0
interview	0
Neon	0
DataInputStream	1
32-bit	0
scrapping	0
informations	0
products	0
server/link	0
theirs	0
planet	0
marginal	0
serving	0
same-sized	0
hot	0
filenames	0
desire	0
w/o	0
opt-in	0
5-6	0
LinearLayout	1
want(blankHeight=(ListViewHeight-count*rowHeight)>0)	0
heightToPlus	1
blankHeight/count	1
rowHeight+heightToPlus	1
getHeight	1
setHeight	1
customValidator	1
POSTBACK	0
requiredFieldValidator	1
fomer	0
postback	1
validator	1
postbacks	0
homebrew	0
rvm	1
1.9.3	1
1.7.4	0
4.3.2	0
libksba	1
brew	0
Home	0
Brew	0
/usr/bin/ruby	1
-e	1
/usr/bin/curl	1
-fsSL	1
https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb	0
MacPorts	0
erased	0
community	0
machined	0
critically	0
SnowLeopard	0
10.6.8	0
uninstall	0
xcode	0
/Developer/Library/uninstall	1
-devtools	1
--mode	1
rsync	1
/System/Library/Frameworks/Ruby.framework	1
executables	0
/usr/bin	1
/usr/bin/{erb,gem,irb,rdoc,ri,ruby,testrb}	1
symlinks	0
erb	0
../../System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/erb	0
re-symlinked	0
ln	0
-s	0
./erb	1
symlinking	0
ostruct	0
doctor	0
macports	1
defg	0
klmno'`	1
generator	0
comprehension	0
lens	0
grails	0
2.3.x	0
onError	1
onComplete	1
Thread.sleep()	1
pratically	0
http://grails.org/doc/latest/guide/async.html	0
GPars	0
request/action	0
waitAll()	1
list.get()	1
TroubleShooting->Logs	1
Trace->Server	1
Log	0
tracing	0
WAS	0
Z/OS	0
mainframe	0
AIX	0
TroubleShooting	0
Logs	0
Trace	0
Diagnostic	0
enable/disable	0
shall	0
rollover	0
z/OS	0
Administrators	0
Administrative	0
enabling	0
wsadmin	1
http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Ftxml_profiletrace.html	0
<p:calendar>	1
OmniFaces	0
#{now}	1
a:placeholder	1
someproperty	1
java.util.date	1
dd.MM.yyyy	1
HH:mm	1
of:formatDate()	1
#{component}	1
syntax/concepts	0
lovely	0
Dispatcher	0
BackGroundWorker	1
walls	0
alone	0
tonight	0
fooling	0
tackling	0
eat	0
glaring	0
silliness	0
properties-I	0
occurrs	0
herring	0
InnerException	1
whilst	0
feeling	0
getfiltered	0
residents	0
genius	0
CMS	0
rewriting	0
ages	0
peaceful	0
holidays	0
serializers	0
create()	1
Price	0
serializer	0
opportunity	0
associate	0
PriceSerializer	1
Meta.exclude	1
Meta.fields	1
PrimaryKeyRelatedField	1
mass	0
<b></b>	1
newlines	1
preg_replace	1
shitty	0
determinate	0
<br>	1
<pre>	1
pseudo-element	0
:first-line	1
paragraph	0
http://www.ideone.com/1pTwD	0
NSMutableArrays	1
NSNumbers	1
NSCoding	1
presently	0
incremental	0
dirty	0
NSTimer	1
Mongocxx	0
horrible	0
http://mongodb.github.io/mongo-cxx-driver/api/mongocxx-3.1.1/classmongocxx_1_1bulk__write.html	0
bulk_write::bulk_write()	1
bulk_write::append()	1
https://docs.mongodb.com/manual/reference/method/Bulk/	0
bulk_write	1
v2	0
maven-android-sdk-deployer	1
-P	1
\adt-bundle-windows-x86\adt-bundle-windows-x86\sdk\extras\android\support\v7	1
packag	0
Extras	0
net	0
doInBackground	1
androids	0
1.8.7	0
10.7.3	0
pre-installed	0
fashioning	0
Maker	0
SplitContainer	1
Panel1	1
Panel2	1
self-contained	0
hacky	0
user-controls	0
splitContainer	1
http://i.stack.imgur.com/CG6kO.png	0
sprite	0
ReplaceControl	1
a-form-inside-a-form	1
docking	0
programmaticaly	0
54	0
iharob	1
satisfaction	0
ActiveX	0
customizable	0
prevented	0
WndProc	1
ref	0
Pass-through	0
IMessageFilters	1
Application-Wide	0
Event	0
Handling	0
Capturing	0
Events	0
WInForm	1
Experiment	0
extensively	0
IMessageFilter	1
opt-out	0
Filtering	0
averted	0
preventing	0
EnableWindow(hand,FALSE)	1
uppermost	0
hwnd	1
Handle	0
POLYGONS	0
POLYINES	0
polygon	0
polyline	0
polygons	0
Polygons	0
polylines.I	0
here.sorry	0
english	0
.Demo	1
google.maps.PolylineOptions	1
google.maps.PolygonOptions	1
refreshed	0
Images	0
<li	1
reloadImages()	1
flicker	0
Preload	0
folowing	0
preload	0
is'n	0
https://github.com/desandro/imagesloaded	0
destionation	1
Ghost	0
Blogging	0
Platform	0
62rem	0
blockquote	1
.container	1
reorganize	0
FIDDLE	0
targeted	0
ghost	0
node/express	0
res.render	1
JADE	0
Aaron	0
lineedit	1
delgate	0
QCompleter	1
recived_model	1
completer	0
QStringList	1
constains	0
redone	0
ModelWithoutDuplicatesProxy	1
deleter	0
theme	0
page-node-1.tpl	1
block-modulename-2.tpl	1
delta	0
admin/build/block	1
admin/build/block/configure/views/news	0
-block_2	1
Views	0
news-block_2	1
Modules	0
Gulp	0
imagemin	1
jus	0
gulpfile.js	1
20secs	0
http://example.com/ViewVacancy.aspx?ID=8674	0
http://m.example.com/vacancy.aspx?name=8674	0
http://example.com	1
http://m.example.com	0
http://example.com/viewvacancy.aspx?id=8674	0
String.Replace()	1
Wondering	0
re	0
separates	0
commonParentElementHere	1
gui	0
mypic	0
mytext	1
introducing	0
???	1
tailor	0
myText	1
myPic	1
overlaying	0
JLayeredPane	1
managers	0
Widget	0
Weather	0
demonstration	0
Firebase	0
messagesRef.child	1
tee	0
messagesRef	1
firebase.database().ref('messages').limitToLast(30)	1
firebase.database.Query	1
firebase.database.Reference	1
firebase.database().ref('messages/users').limitToLast(30)	0
Plain	0
gain	0
unfortunate	0
portable	0
MCU	0
strictly	0
AVR	0
drawbacks	0
inherently	0
amongst	0
ol	0
Grab	0
Atmel	0
avr-gcc	1
avr-objcopy	1
avrdude	1
C-only	0
stock	0
lower-level	0
Uid	1
av:Canvas.Top	1
-TIA	0
namespaces	0
SelectSingleNode	1
Saved	0
https://www.google.com	1
@Url	1
tableView	1
self.listData	1
NSInteger	1
numberOfRowsInSection	1
Simple_TableViewController	1
respectively	0
UITableViewDelegate	1
UITableViewDataSource	1
<UITableViewDelegate,	1
UITableViewDataSource>	1
Inventory	0
Product	0
Sales	0
superclass	1
SKTextureAtlas	1
SKSpriteNode	1
SKAction.animateWithTextures(atlasFrames,timePerFrame:0.1,resize:true,restore:false)	1
1%	0
https://www.youtube.com/watch?v=TDwSR3e6nN0	0
restricting	0
autocommit	0
mid	0
con.commit()	1
Shivam	0
Kalra	0
pools	0
singletons	0
method-local	0
economize	0
destroying	0
TransactionScope	1
txScope.Complete()	1
rolled	0
possible.	0
txScope	1
deptAdapter	1
empAdapter	1
BeginTransaction()	1
RollbackTransaction()	1
surrounding	0
ambient	0
Scope	0
enlist	0
Caution	0
escalate	0
Distribtued	0
rollback	0
DTC	0
thread-specific	0
increments	0
Dispose	0
comitted	0
rolls	0
magically	0
emptAdapter	1
Current	0
commit/rollback	0
propogate	0
varying	0
coordinators	0
distributed	0
SimpleXML	1
produced	0
Document	0
DTD	0
Schema	0
structure/content	0
conforms	0
DTD/Schema	0
well-formedness	0
example.dtd	1
prefixing	0
doctypes	0
Fortunately	0
dom_import_simplexml	1
Foo	1
Bar	0
Baz	0
Bar.prototype	1
Foo()	1
beloved	0
Classy	0
JS.Class	1
ad	0
decouple	0
remark	0
flaws	0
workspace	0
bandwidth	0
NSURLSession	1
file-sync-client	0
Dropbox/GoogleDrive/pCloud	1
facilities	0
sockets	0
throttle	0
Provide	0
in-app	0
Configure	0
MVP	0
in-general	0
digest	0
presenter	0
Mosby	0
kosher	0
Base	0
Presenter	0
PhotoRecyclerPresenter	1
communicates	0
PhotoRecyclerFragment	1
self-doubt	0
CUDA	0
threadIdx.x	1
blockIdx.x	1
Running	0
warp	0
scheduling	0
lockstep	0
printf	1
unspecified	0
warps	0
disperse	0
randomize	0
emanating	0
diverges	0
convergence	0
1.4.0.M3	1
@Entity	1
Repository	0
@Transactional	1
@Commit	1
DataIntegrityViolationException	1
JUnit	1
@WebAppConfiguration	1
@ResponseStatus	1
@ControllerAdvice	1
suit	0
flush	0
@NotTransactional	1
http://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/testing.html#integration-testing-annotations	0
Transactional	0
Non	0
propagation	0
Propagation.NEVER	1
M.Deinum	1
Stephane	0
Nicoll	0
JSTL	1
jstl.jar	1
http://java.sun.com/jsp/jstl/core	0
http://www.java2s.com/Code/Jar/j/Downloadjstljar.htm	0
NetBeans	0
javax.servlet.jsp.jstl.core.*	1
xmpp	0
Blank	0
outputing	0
log-file_2014.02.20.xml	1
log-file_2014.02.20.1.xml	1
log-file_2014.02.20.2.xml	1
.1	0
ya	0
configration	0
Behgozin_DB	1
detach	0
\debug	1
run-time	0
Never	0
accidently	0
Manually	0
deploying	0
|DataDirectory|	1
read/write	0
CloudStorage	0
GCE	0
Redirect	0
URI	0
bi-directional	0
Vehicles	0
employee_id	1
afterwards	0
JPA	0
Much	0
cascade	0
vehicles	0
associatedEmployee	1
persisting	0
hierarchical	0
pretty-printed	0
EXPLAIN	0
lft	1
rgt	1
lft-rgt	0
7040	0
manages	0
EXPLAINs	0
FINALLY	0
ranges	0
7.2.5.1	0
Range	0
Single-Part	0
Indexes	0
union	0
IPython	1
Sympy	0
latex/unicode	1
Steps	0
ipython	1
qtconsole/notebook	1
init_printing	1
0.7.3	1
ipython3	1
matplotlib	1
1.3.1	0
1.7.1	0
scipy	1
0.12.0	1
13.10	0
Incidentally	0
PYTHONSTARTUP	1
Jakob	0
1.1.0	0
theoretically	0
keen	0
bundled	0
00-startup.py	1
ipython_config.py	1
test.php	1
doc||docx	1
href=''>	1
intervention	0
mouse-1	1
mouse-2	1
Emacs	0
.emacs	1
mouse-1-click-follows-link	1
downladed	0
OBJ	0
IFC	0
Autodesk	0
cleanliness	0
maintenance	0
Controllers	0
intro	0
categories	0
UIViewControllers	1
Placing	0
utility	0
-Prefix.pch	1
Subclassing	0
MySubclassedViewController.h	1
MySubclassedViewController.m	1
Category	0
UIViewController+	1
SpecialCatrgory.h	1
SpecialCatrgory.m	1
Dedicated	0
MyHelperClass.h	1
MyHelperClass.m	1
dequeueing	0
requeueing	0
channel	0
deadloks	0
goroutines	0
Playground	0
Minimal	0
http://play.golang.org/p/Vb4-RFEmm3	0
26	0
instructs	0
goroutine	1
1001	0
1000	0
func()	1
arr	1
redeclaring	0
0-9	0
arguably	0
elegant	0
redeclare	1
weird-looking	0
manifest	0
enqueue	1
1001s	0
forever	0
zillion	0
overusing	0
dequeued	1
quitting	0
http://play.golang.org/p/bBM3uTnvxi	0
lowish-level	0
reflexive	0
len	1
rep	0
https://stackoverflow.com/a/21034111/432509	0
Houdini	0
school	0
clues	0
the-state	0
compojure	1
main-routes	1
injecting	0
:init	1
middleware	0
injects	0
defroutes	1
NSTableview	1
NSTableView	1
NsTableview	1
motive	0
Down	0
OpenMP	0
c3005	0
collapse	0
openmp	0
OpenMP2	0
OpenMP4.5	0
clang-cl	1
http://llvm.org/builds/	0
VS2017	1
https://bugs.llvm.org/show_bug.cgi?id=33672	0
https://www.reddit.com/r/cpp/comments/6oepq4/making_windows_clang_401_play_nice_with_visual/	0
https://github.com/WubbaLubba/LlvmForVS2017	0
/fallback	1
/MP	0
http://clang-developers.42468.n3.nabble.com/clang-windows-clang-cl-support-for-MP-tp4045651p4045659.html	0
IQKeyboardManager	1
UItextField	1
UIDatePicker	1
pad	0
capable	0
de	0
naissance	0
IQDropDownTextField.h	1
#import	1
UITextField	1
IQDropDownTextField	1
@property	1
weak	0
nonatomic	1
IBOutlet	1
myTextField	1
Builder	0
.xib	1
Identity	0
Inspector	0
Mohd	0
Iftekhar	0
Qurashi	0
.m	1
setCustomDoneTarget:action	1
doneAction	1
customised	0
IQUIView+	1
IQKeyboardToolbar.h	1
previous/next/done	0
TextFieldViewController.m	1
/var/www/html/dashboard.php	1
1021	0
Taking	0
Linux/Unix	0
SCP	0
scp	0
[[user@]host1:]file1	1
[[user@]host2:]file2	1
confuse	0
hql	1
#option	1
count()	1
JS/HTML5	0
subpage	0
history.state	1
refreshing	0
cpp	0
portion	0
./MyApp	1
fine.	0
self.counters	1
dict	1
editDependent	1
employee.html	1
ui-view	1
two-way	0
EmployeeService	1
EmployeeController	1
buttons(new/edit)	1
ng-view="editDependent()"	1
cascading	0
Root	0
INSERT	0
FOREIGN	0
KEY	0
id_root	1
id_parent	1
UNIQUE	0
PRIMARY	0
Auto_increment	1
HotKey	1
Ctrl	0
Space	0
unhandle	1
keystrokes	0
unregister	0
bool	1
KeyDown	1
cpython	0
IronPython	1
Communication	0
expose	0
Dive	0
Into	0
unified	0
suds	0
RESTful	0
massaging	0
00:00	0
wouldnt	0
DateTime.Now	1
SDL	0
loc	0
contnent	0
NSLog	1
NSMutableData	1
beware	0
thread/UI	0
data-object	0
https://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html#//apple_ref/doc/uid/20001836-BAJEAIEE	0
PrivateMessages	1
Sender==QueryString('idCompany')	1
privateMessage	1
Sender	0
???????	1
Selecting	0
WhereParameters	1
Depends	0
flavor	0
duper	0
amoled	0
works.	0
characthers	0
all.	0
postData	1
de-serialized	0
structs	0
alive	0
indicated	0
letting	0
bane	0
MyStruct	1
MyStruct::*	1
AllStructs	0
allocating	0
messy	0
std::vector	1
regions	0
schools	0
selections	0
search.php	1
Thx	0
getschools()	1
twilio	0
IVR	0
mood	0
podcast	0
TWIML	0
Skip	0
continuously	0
Twilio	0
evangelist	0
possible*	0
slices	0
voice	0
TwiML	0
/voice/check	0
-digits	0
directs	0
conference	0
dial	0
hangup	0
dials	0
unlikely	0
<Gather>	1
asterisk	0
Erlang	0
spawn	0
arguments.callee	1
MDC	0
curiosity	0
prorotyping	0
rumour	0
phases	0
DSL	0
Erlang/OTP	1
17.0-rc1	1
1Mb	0
SQlite	0
Persistence	0
curves	0
synchronize	0
iCloud	0
Dropbox	0
Shall	0
setText(String)	1
Doc	0
ViewGroup	1
BaseAdapter	1
exec	0
execl	1
PATH	0
ksh/bash	1
charm	0
sqrt	1
dist	0
Eg	0
Min	0
1200x800	1
however.	0
onPrepare	1
user-agent	0
protractor/nodeJS	1
grunt	0
375x667	0
fix/track	0
Ideas	0
mytestconfig.conf.js	1
recurrence	0
theorem	0
Subtraction	0
Conquer	0
committed	0
Attempt	0
B()	1
this.arr	1
Prototypes	0
chains	0
tone	0
caveat	0
prototypal	0
Anything	0
initialise	0
localised	0
.csv	1
9876542	1
$max	1
PROCESS	0
ID(id)	1
wt	0
this->	1
Write->	1
Read->	1
Free	0
done.	0
/A	0
pt[0]	1
correct.1	0
malloc	0
calloc	1
free(pt)	1
Fotenotes	0
1Note	1
diamond	0
h	0
5-elements	0
diamonds	0
mask	0
L1	0
taxicab	0
threshold	0
Reactor	0
Managed	0
Extensibility	0
MEF	0
adpators	0
addins	0
stackoverlow	0
specificity	0
Eziriz	0
obfuscate	0
Mind	0
TextField	1
radio	0
Scenario	0
locationno	0
locationDetails	1
page.its	0
locationAllDetails	1
page.Here	0
fetching	0
Outputtype	1
www.mywebsite.com	1
http://www.mywebsite.com/styles/app.css	0
/styles/app.css	1
http://www.mywebsite.com	0
http://localhost:3000/mywebsite/	0
http://localhost:3000/mywebsite/styles/app.css	0
quit	0
www.mywebsite.com/styles/app.css	1
app.css	1
docnr	0
clientid	1
700k	0
doSNOW	1
sqldf	1
subqueries	1
obliged	0
ave	0
wil	0
data.table	1
datases	0
billions	0
seq_len(.N)	1
seq_along	1
cumsum(x)	1
dplyr	1
df1	1
ZSL	0
camera2	1
LEVEL-3	0
YUV_REPROCESSING	1
ReprocessableCaptureSession	1
ReprocessableCatureSession	1
YUV	0
4608	0
3456	0
Size	0
CameraCharacteristics	1
getInputSizes(ImageFormat.YUV_420_888)	1
YUV_420_888	1
ImageReader	1
Surface	0
JPEG	0
4608x3456	1
RAW	0
sensor	0
CaptureRequest	1
RingQueue	1
taked	0
reprocessed	0
want(ZSL)	1
reprocess	0
SIZE(4608x3456)	1
bytearrays	1
MAXIMUM	0
ReprocessableCaptureRequest	1
CTS	0
imageReader	1
Byte[]	1
jQuery-generated	0
jQ	0
gallery	0
blindspot	0
regard	0
ListItemIndex	1
Slide	0
svs	0
appending	0
$(this)	1
li	0
http://jsfiddle.net/meo/yKgSf/​	0
http://jsfiddle.net/meo/yKgSf/2/	0
HTML4	0
type="file"	1
name="userfile">	1
Constants	0
classpath	1
Somewhere	0
Christian	0
Sub_Init_Globals()	1
SubProcedure	1
SubProcedures	0
Workbook_Open	1
vba	1
Workbook	0
Declare	0
Procedures	0
depDt	1
CONSTRAINTS	0
btree_gist	1
GiST	0
CHECK	0
:SQL	1
datevalue	1
March	0
7:04:28	0
PM	0
GMT-07:00	1
=DATEVALUE(B26)	1
Gert	0
date/time	0
GMT	0
co-erce	0
=LEFT(B26,FIND("GMT",B26)-1)+0	1
m/d/yy	1
hh:mm	1
c++11	1
seed	0
examples/sites/articles	0
cryptography	0
suspicion	0
std::mt19937	1
std::default_random_engine	1
accepts	0
std::random_device	1
destroy	0
unnecessarily	0
libc++	1
std::fopen("/dev/urandom")	1
costs	0
microsoft	0
crypto	0
negligible	0
ties	0
mandated	0
mt19937	1
cross-platform	0
confident	0
contrast	0
opaque	0
acquired	0
seeds	0
acts	0
cryptographic	0
sadly	0
correspond	0
/dev/random	1
/dev/urandom/	1
MSVC	0
mingw	1
cross-compile	0
entropy	0
seeding	0
time(NULL)	1
crappy	0
synthesize	0
Unknown	0
Pseudo-randomic	0
Deterministic	0
16/8/4/2	0
setContentView(int)	1
addView(View)	1
removeView(View)	1
excellent	0
Canvas	0
classifier	0
weka	0
:java	1
-classpath	1
weka.jar	1
weka-src.jar	1
weka.gui.GUIChooser	1
classifiers	0
C:/..	1
c:/.../weka.jar	1
neeeded	0
script/batch	0
MemoryStream	1
secure	0
Memory	0
PCI	0
attacks	0
numerical	0
occurrences	0
2041	0
318	0
358	0
865	0
1818	0
920	0
898	0
470	0
725	0
114	0
56	0
55	0
Principle	0
NodeJs	0
Extra	0
1-10000	0
linear	0
translating	0
self-explanatory	0
to_array()	1
soft	0
->find(true)	1
order())	1
70	0
99999	1
in_array	1
tweaks	0
Feel	0
http://codepad.viper-7.com/INvSNo	0
285	0
Detailed	0
usernames	0
passwords	0
couchdb	1
anyanything	0
recieve	0
JWT	0
https://github.com/dmunch/couch_jwt_auth	0
CouchDB	0
username/password	1
verifies	0
integrity	0
HS256	0
frequently	0
Staff	0
staff	0
Credential	0
adds/edits	0
partialview	1
hid7	0
mess	0
reinventing	0
instinct	0
forbids	0
load/save	0
losing	0
HTTPPOST	1
GROUP_CONCAT	1
MySql	0
Aggrigate	1
functon	0
cocating	0
murows	0
distinct/Unique	0
BASIC_SKILL2	1
BASIC_SKILL1	1
pushing	0
bys	0
subselects	0
XMLELEMENT	1
elided	0
clarity	0
XMLQUERY	1
XSLTRANSFORM	1
tpl	1
displayfield	1
textarea	1
rowexpander	1
XTemplate	1
https://fiddle.sencha.com/#fiddle/14sf	0
https://fiddle.sencha.com/#fiddle/14t7	0
sucess	0
unsuccessfully	0
Display	0
resolving	0
renderer	1
https://fiddle.sencha.com/#fiddle/14il	0
mongoDB	1
succeeded	0
o/p	0
Prism	0
2.2	0
demand	0
ondemand	0
xaml	1
ModuleManager	1
prism	0
codeplex	0
pan	0
http://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=47957	0
FileDownloader	1
FileDownloaderWithProgress	1
WebClient	1
fires	0
DownloadProgressChanged	1
IFileDownloader	1
Showing	0
DELETE	0
http://localhost:1693/Product/Delete?id=16	0
/Product	0
Delete	0
WebAPI	1
.delete	1
$http	1
foo-tables	1
toggle	0
$('.footable').footable({})	1
un-rendered	0
FooTable	1
2.0.3	0
jQuery-1.11.1	1
v1.11.0	1
2014-06-26	1
46.0.2490.80	1
footables	0
footable	0
stampede	0
;¬)	1
Synopsis	0
draft	0
Concept	0
scrollable	0
directions	0
auto-scrolls	0
finite	0
earliest	0
collapses	0
July	0
2011	0
scroller	0
pulls	0
spans	0
caption	0
Cappuccino	0
Cappuccino/Cocoa	0
Thoughts	0
SplitView	1
divider	0
subview	1
sufficiently	0
CPView	1
drawRect	1
CPControl	1
CPBox	1
setBackgroundColor	1
mouseDown	1
CPScrollView	1
Synchronise	0
CPTableView	1
Scrolling	0
scrollToPoint	1
candidates	0
40	0
subjects	0
degree(degcode,name,subject)	1
candidate(seatno,degcode,name)	0
marks(seatno,dedcode,mark)	0
clairty	0
non-final	0
et.getText().toString()	1
formatted	0
Door	0
treasure	0
Deck	0
liberty	0
door	0
xeditable	1
decrease	0
bothered	0
us-ascii	1
encoding='us-ascii'	1
diferently	0
http://msdn.microsoft.com/en-us/library/ms534370(VS.85).aspx	0
covers	0
Logger	0
logger.js	1
startAdminInterface.js	1
enormous	0
programatically	0
preserve-order	0
TestNG.XML	1
achive	0
TestNG.XMl	1
setTestNames	1
A.class	1
@Test	1
testcases	0
Testng	0
testNg	1
annotatios	0
testng.xml	1
IMethodInterceptor	1
windows/dialogs	0
frustration	0
studies	0
accessibility	0
modals	0
galleries	0
standpoint	0
startling	0
boxes	0
cohesive	0
acknowledge	0
readers	0
combat	0
degrade	0
gracefully	0
themed	0
layered	0
unavailable	0
Modal	0
immune	0
blockers	0
Non-modal	0
non-modal	0
IMHO	0
narrow	0
inappropriately	0
\main\resources\wsdl\	1
Weblogic	0
12C	0
Cammel	0
2.18.3	0
RouteBuilder	1
wsdl2java	1
Mention	0
.Show	1
SalesView.xaml	1
Control(WPF)	1
Dashboard.xaml	1
App.xaml	1
hosting	0
Simplest	0
controller/view	0
vm	0
Dom	0
$("form[action='/haters']")	1
http://codepen.io/marc313/pen/uphiv	0
Deryck	0
act	0
Markup	0
.eq()	1
refers	0
$('input[type=submit'])	1
systemically	0
for()	1
while()	1
eq(0)	1
$('input[type=submit]').length)	1
alert()	1
reimplementing	0
mousePressEvent	1
cue	0
bg	0
QStyleItemDelegate	1
POS	0
tagger	0
3.7.0	0
config/modules.config.php	1
autoloader	0
ZF3	1
Zend	0
Installer	0
modules.config.php	1
extra.zf.component	1
composer.json	1
\\Form	1
Skeleton	0
HttpSession	1
jsf	0
countdown	0
chronometer	0
investigating	0
NodaTime	1
LocalDate	1
BCL	0
DateTime/DateTimeOffset	1
ambiguous	0
YYYY-MM-DD	1
deserialize	1
LocateDate	1
1970-01-01	1
PeopleController.cs	1
Global.asax.cs	1
January	0
1970	0
Stepping	0
serialized	0
binder	0
binders	0
Noda	0
serialziation	0
UIButtons	1
switches	0
finger	0
NSLogs	1
cellForRowAtIndexPath	1
UIButton	1
tableView:cellForRowAtIndexPath	1
IB	0
re-read	0
deep-link	0
Intent	0
mute	0
microphone	0
FMIS	0
do-able	0
NetConnection	0
publishes	0
NetStream	0
FMS	0
NetStream.send()	1
subscribing	0
display/hide	0
subscriber	0
toggleAwayImageDisplay	1
Error::raiseNotice()	1
error_reporting	1
E_ALL	1
E_DEPRECATED	1
http://php.net/manual/en/function.error-reporting.php	0
error.php	1
textbox1	1
VB.NET	1
webform	0
seats	0
11/12/2010	0
seat_select	1
13/12/2010	0
Code-behind	0
System.Data.DataSetExtensions.dll	1
System.Core.dll	1
smiley	0
touches	0
@Benito	0
-Bertoli	1
RadioButton	1
radiobutton	1
custom_btn_radio.xml	1
android:button	1
@btmImage	1
VF	0
pageblock	0
aint	0
c:batchDetailsComponent.BatchJobDetails	1
visualforce	0
<apex:component	1
access="global"	1
controller="BatchOpportunityDetailsExtension">	1
mongo-hadoop	1
wget	1
https://repo1.maven.org/maven2/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar	0
scaffolding	0
artisan	0
Auth	0
password-reset	0
Manuel	0
password_resets	1
\config\auth.php	1
CustomerID	1
non-null	0
Revision	0
phpMyAdmin	1
buried	0
http://dev.mysql.com/doc/refman/5.7/en/show-triggers.html	0
http://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html	1
UITableViewStyleGrouped	1
rounded	0
Borderless	0
Rounded	0
dblWordFreqByCluster	1
<KeyValuePair<string,	1
double>>	1
todo	0
:complete	1
link_to	1
Resources	0
migrated	0
:completed	1
simple_form	1
todo(edit)	1
PATCH	0
rockstar	0
classical	0
UX	0
foundation	0
enhance	0
measurements	0
3-second	0
serie	0
averages	0
period.apply	1
xts	1
dat	0
calculates	0
timestamps	1
align.time	1
aggregate.zoo	1
dec	0
="."	1
read.zoo	1
omitted	0
rails-api	1
ng-resource	1
post=>	1
"kind"=>"GGG"	1
400	0
Bad	0
factory	0
declerations	0
declarations	0
C89	1
dollar	0
Z	0
crude	0
$line	1
Fibonacci	0
instantaneously	0
codereview	0
Gordan	0
Davisson	0
@thatotherguy	1
Words.txt	1
steal	0
FD	0
#3	1
-u3	1
subprocesses	0
wc	0
${letter[i]}	1
370,101	0
7.8	0
microseconds	0
alphabet	0
Prints	0
1:55	0
580	0
ms	0
gluing	0
Easier	0
lydskrift	1
Surprisingly	0
DATA	0
mu	0
<FILE>	1
while(	1
FILE	0
if(	0
m/	1
(.+)/)	1
$_	1
while(1)	1
Furthermore	0
Routes	0
php.ini	1
<ul></ul>	1
/<li	1
[^>]*>.*<\/li>/g	1
https://regex101.com/r/KXEkJz/1	0
[^>]*>[\s\S]*<\/li>/g	0
giant	0
[^>]*>.*<\/li>	0
\n?	1
<li>	1
FirstClass	1
Thanking	0
anticipation	0
introduces	0
coupling	0
userNameFld	1
showDialog	1
TableClass	1
programmatically	0
Keyboard	0
keydown/keyup/keypress	1
keystroke	0
←	0
→	0
ABCDEF|	1
http://jsfiddle.net/Vsafv/	0
viewing	0
http://blog.josh420.com/archives/2007/10/setting-cursor-position-in-a-textbox-or-textarea-with-javascript.aspx	0
37	0
39	0
bounding	0
scene	0
QGraphicsItems	1
QGraphicsItem::ItemIgnoresTransformations	1
QGraphicsItem::deviceTransform()	1
QGraphicsView::viewportTransform()	1
Inverting	0
vp_trans	1
2.0.4	0
Twitter	0
shadow	0
nav-bar	1
2.2.1	1
navbar	1
2.1.2-WIP	1
radius	0
miles	0
km	0
module_name	1
estimated	0
winpython	1
http://hastebin.com/qiconesoje.apache	0
virtualenv	1
retain	0
stands	0
System.arrayCopy	1
secondArray	1
looping	0
refid	1
writeXML	1
http://msdn.microsoft.com/en-us/library/system.data.datatable.writexml.aspx	1
regex.syntax	1
simplified/optimized	0
fmt.Println(p)	1
regexp	1
syntax.Regexp	1
Sub	0
subexpressions	1
inspecting	0
Op	0
Rune	0
jade	0
Jade	0
System.out.println("something")	1
certificates	0
insanely	0
Welcome	0
inputFromKafka	1
KAFKA	0
9c8f09e6-4b28-5aa1-c74c-ebfa53c01ae4	0
1437066957272}	1
Sending	0
Kafka	0
KafkaHeaders.MESSAGE_KEY	1
Producer	0
KafkaProducerMessageHandler	1
messageHeaders	1
payload	0
messageKey	1
KafkaHighLevelConsumerMessageSource	1
KafkaMessageDrivenChannelAdapter	1
<int-kafka:message-driven-channel-adapter>	1
struggled	0
calculator	0
flexbox	1
flex-direction	1
codepen.io	0
modern	0
viable	0
https://codepen.io/anon/pen/VjOKGX	0
uneven	0
there.	0
flex-wrap	1
siblings	0
weaker	0
sub-section	0
.long	1
33.33	0
flex-grow	1
flex-shrink	1
flex-basis	1
66.67	0
re-declare	1
intact	0
prevails	0
a.Lat	1
AWE_Propvids	1
correlated	0
HAVING	0
IN	0
checkboxTree	1
checkboxtree	1
4000	0
checkBoxTree.getCheckBoxTreeSelectionModel().setDigIn(true)	1
welcomed	0
JQM	0
migration	0
PhoneGap	1
jqm	0
battling	0
www.site.co.za/mens-clothing-3	1
www.site.co.za/mens-clothing	1
htacess	1
mens-clothing	0
obviosuly	0
http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/urlrewrite/index	0
many-to-many	1
Airports	0
Aeroplanes	0
shouldn't	0
airport	0
planes	0
airports	0
areoplanes	1
Primary	0
airports_and_planes	1
repsective	0
exceptions/crashes	0
CSScript	0
CS-Script	0
Command-line	0
cscs.exe	1
/dbg	1
/d	0
.exe	0
.dll	0
Test.cs	1
Test.exe	1
Test.pdb	1
DebugBuild	1
EvaluatorConfig	1
BUt	0
LoadCode	1
LoadXXX	0
prettier	0
importrange	1
onedit	0
onEdit	1
OnEdit	1
Time-driven	0
/text	1
\n[\t].\n[\t]	1
egrep	1
text/	0
^($/p	1
yourfile	1
-AN	0
asp	0
XLSX	0
XLS	0
read/edit/create	0
OpenXML	1
http://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx	0
read+write	0
http://www.codeproject.com/KB/office/OpenXML.aspx	0
PDFs	0
formulas	0
commercial	0
ClosedXML	1
EPPlus	0
SpreadsheetGear	1
LibXL	0
sever-scenarios	0
ExcelDataReader	1
XLS/XLSX	0
Reader	0
Ria	0
SL	0
StartLongOperation	1
Invoke	0
Thread.Sleep	1
GetStatus	1
serverside	0
Client-side	0
GetStatusCompleted	1
Meaning	0
Fiddler	0
system_name	1
arrival_time	1
Jsp	0
div1	1
position:absolute	1
printout	0
DirectoryStream	1
Files.newDirectoryStream	1
NIO.2	0
:hidden	1
ClientIDMode	1
angular-cli	1
16.04.2	1
LTS	0
angluar-cli	1
ng	1
@angular	1
/cli	1
@latest	1
globally	0
Fixing	0
four-letter	0
length-delimited	1
TreeSet	1
.toUpperCase()	1
.toLowerCase()	1
0.45	0
1.30	0
TimeSerial	1
@date	1
Jbuilder	0
ActiveModel	1
Serializers	0
Net::HTTP	1
Create-Read-Update-Destroy	1
URLs	0
auto-magically	0
Record	0
ActiveResource-based	0
ActiveRecord	1
gaining	0
splitting	0
compelling	0
WorkMail	0
john@mycompany.com	1
https://mail.mycompany.com	0
https://mycompany.awsapps.com	0
sub-domain	0
mail.mycompany.com	1
mycompany.awsapps.com	1
admit	0
mywebmail.mydomain.com	1
myaws.awsapps.com/workmail	0
CNAME	0
myaws.awsapps.com	1
https://console.aws.amazon.com/cloudfront/	0
Distribution	0
Origin-Domain	0
Origin-URI	1
/workmail	1
Scroll	0
Save	0
10-20	0
CloundFront	1
YourDomainName	1
behaviours	0
Kind	0
Heider	0
Sati	0
$postid	1
Zend_Db_Select	1
dropped	0
placeholders	0
http://framework.zend.com/manual/en/zend.db.statement.html	0
db->query	1
query()	1
sanitization	0
sub-directories	0
1.0.0d0	1
d(ev)	1
a(lpha)	1
b(eta)	1
f(inal)	1
16.0.0a2	0
16.0.0d24	1
alphabetic	0
priority	0
credited	0
Aacini	0
aschipfl	0
Ampscript	0
GetContent	1
LOY	0
IndexOf()	1
SFMC	0
SF	0
http://salesforce.stackexchange.com	0
yeah	0
maby	0
REALLY	0
MonoTouch	0
MonoMac	0
Github	0
promising	0
2010/2011	0
AppStore	0
alternatives	0
beside	0
Trackbar	0
Winforms	1
trackbar	1
left/right	0
opposite	0
up/down	0
PageUp/PageDown	1
counter-intuitive	0
consequently	0
Arrow	0
UAC	0
und	0
PgUp	1
ergonomics	0
Human	0
Factors	0
Ergonomics	0
thumb	0
laid	0
WM_HSCROLL	1
WM_VSCROLL	1
scrollbars	1
upwards	0
leftwards	0
movement	0
rightwards	0
principles	0
OrientDB	0
disjunctive	0
Student	0
Worker	0
Alberto	0
WorkingStudent	1
graduates	0
Moving	0
considerable	0
Spouse	0
Net::SMTPAuthenticationError	1
env	0
2-factor	0
autt	0
smtp	0
config/development.rb	1
config/production.rb	1
mailer	0
PushWatir::StackoMailer.success_mail.deliver_now	0
Big	0
Allow	0
https://support.google.com/accounts/answer/6010255	0
Lemonstand	0
shop	0
sells	0
ebooks	0
charge	0
$7	1
$20	1
$14	1
built_in	0
update_shipping_quote	1
non-ebooks	0
https://v1.lemonstand.com/api/event/shop:onupdateshippingquote/	0
($non_ebook_subtotal)	1
$shipping_option	1
1.calling	1
2.ajax_js2.php	1
script.What	0
<script>	1
test()	1
evil	0
brazil	0
keystore	1
jre7/bin	1
\Java\jdk1.7.0_51\bin	1
writen	0
portuguese	0
Informe	0
senha	0
área	1
armazenamento	1
chaves	0
encrypt	0
Passwords	0
shadowed	0
storepass	1
keypass	1
parametrs	1
pausing	0
Ref	0
https://msdn.microsoft.com/en-us/library/d00bd51t(v=vs.110).aspx	0
pauses	0
NodeJS	1
Hapi	0
('/')	1
/public/index.html	1
Pipeline	0
dacpacs	0
ect	0
Pipelines	0
repo	0
externally	0
capability	0
compliance	0
firm	0
Publish	0
Artifacts	0
Folder	0
C:\project\a	1
Contents	0
wildcards	0
**\*	1
subfilder	0
$(build.artifactstagingdirectory)	1
_GET	1
Regardless	0
http://www.example.com/page.php#tabname?color=red	0
http://www.example.com/page.php?color=red#tabname	1
DllImport	1
File_name.xls	1
Verified	0
Bit	0
application/ms	0
-excel	1
crushing	0
Shot	0
Dark	0
Assist	0
Xamarin.Forms	1
UWP	0
non-void	1
do.	0
Replaced	0
blgz.co	0
sitting	0
pinpoint	0
=(	1
reformat	0
#content	1
-inner	1
sidebar-second	0
layout.	0
results.	0
Fetching	0
btnTester	1
backing	0
p:message	1
:\	0
growl	0
p:messages	1
inferred	0
searches	0
Calendar	0
timeMin	1
timeMax	1
singleEvents	1
orderBy	1
https://www.google.com/calendar/ical/myuserid@gmail.com/public/full?singleEvents=true&orderBy=startTime&timeMin=2014-01-01T00:00:00&timeMax=2018-03-24T23:59:59	0
8/2008	0
Mastoll	0
v3	0
https://www.google.com/calendar/ical/myuserid@gmail.com/public/full?singleEvents=true&orderBy=startTime&start-min=2014-01-01T00:00:00&start-max=2018-03-24T23:59:59&	0
start-min	1
start-max	1
futureevents	1
https://developers.google.com/google-apps/calendar/v2/reference?hl=de&csw=1#Parameters	0
trials	0
offset	0
https://developers.google.com/google-apps/calendar/concepts	0
https://www.google.com/calendar/ical/myuserid@gmail.com/public/full?singleEvents=true&orderBy=startTime&timeMin=2014-01-01T00:00:00Z&timeMax=2018-03-24T23:59:59Z	0
offerings	0
Offerings	0
JAXB	1
sub-Class	0
Modifiers	1
Ordering	0
Rules	0
Offering	0
anotations	0
offering	0
modifiers	0
@XmlTransient	1
@XmlElement	1
http://www.silverlightshow.net/items/Silvester-A-Silverlight-Twitter-Widget.aspx	0
silverlight	0
Feb	0
201	0
http://ie.microsoft.com/testdrive/Browser/ActiveXFiltering/About.html	0
Universal	0
DEP0700	0
sub-error	0
well-known	0
GUID	0
blah	0
AppxManifest	1
opening/editing	0
ApxManifest	1
designer	0
http://ms-iot.github.io/content/en-US/win10/samples/SerialSample.htm	0
appxmanifest	1
serialcommunication	0
editting	0
Ms	0
cobbled	0
429	0
activex	0
ADO	0
FollowHyperlink	1
highlighting	0
highlight	0
baz	0
<return>	1
IncSearch	0
:set	1
hlsearch	0
incsearch	1
streams	0
getline()	1
userStringPrompt()	1
consonants	0
vowels	0
function/method	0
E	0
userStringPrompt	1
capturing	0
getline(cin,	1
string)	1
guidance/hints	0
F5	0
nslayoutconstraints.the	1
collectionview	1
view.When	0
***	0
0x27126d67	1
0x34c61c77	1
0x27047237	1
0x2704701b	1
0xe1333	1
0xe0bc1	1
0x1c6ca7	1
0x1d24e1	1
0x9b59cb	1
0x9b59b7	1
0x9b9411	1
0x270ecc41	1
0x270eb361	1
0x27038981	1
0x27038793	1
0x2e3e8051	1
0x2a62a981	1
0x1d72b5	1
0x351fdaaf	1
abi.dylib	1
terminating	0
uncaught	1
NSException	1
NIL	0
tablview	1
IBOUTLET	0
storyboard.When	1
runs.but	0
data.Can	0
viewDidLayoutSubviews	1
synthesizing	0
user_agent	1
referrers	0
JavaScript.I	0
creative	0
Clean	0
/out/	1
docpad	1
--env	1
content.html	1
/content/index.html	1
behavious	0
sight	0
glitch	0
IOS	0
1.Open	1
2.Select	0
project->Targets->your	1
project->Search	1
Deployment	0
7.0	0
3.Also	0
Latest	0
project->Build	1
Settings->Base	1
it.then	0
nobody	0
cool.	0
OSResultStruct	1
osedition	0
OSResultStruct.OSEdition	1
implimented	0
Reflection	0
instantiable	0
accessor	0
Type.GetProperty	1
IgnoreCase	1
GetValue	1
upper1	1
upper2	1
upper3	1
$('#next')	1
.click	1
waits	0
attr	1
specialiased	0
excusable	0
Bencoding	0
BitTorrent	0
BItem	1
Decode(string)	1
Bencoded	0
BString	1
BInteger	1
BList	1
BDictionary	1
this[int]	1
this[string]	1
accessors	0
array-like	0
qualities	0
horrific	0
Ouch	0
eyes	0
Wow	0
hey	0
MUCH	0
sell	0
soul	0
implying	0
torrent["info"]["files"][0]["length"]	1
torrent["announce-list"][0][0]	0
90%	1
torrent	0
Generics	0
atleast	0
dot-points	0
BItems	1
indexers	0
indexer	1
derive	0
BCollection	1
mile	0
Readibility	0
reusability	0
pointe	0
Cognos	0
Cube	0
published	0
NOTE-Cognos	1
unsupported	0
feasible	0
d:\Cognos\PowerCubes\Build	0
d:\Cognos\PowerCubes\Live	0
d:\Cognos\PowerCubes\Build\yourcube.mdc	0
/Y	1
/B	0
mycube.mdc	1
diffrents	0
.Hence	0
TypeDescriptor	1
System.ComponentModel	1
TypeConverter	1
non-trivial	0
ICustomTypeDescriptor	1
CustomTypeDescriptor	1
PropertyDescriptor	1
per-instance	0
scenarios	0
C++11	1
std::cbegin()	1
GCC	0
5.4.0	1
/usr/include/c	1
/5/bits/range_access.h	1
std::begin()	1
committee	0
unlimited	0
reasonably	0
C++14	1
std::make_unique	1
proposal	0
favour	0
N167	0
attitude	0
Defect	0
Report	0
2128	0
adopted	0
2.1	0
is_float	1
Matches	0
commas	0
[0-9,]+	1
(?:\.	1
1+	0
hyphens	0
\d+	1
\d	0
metacharacter	1
denote	0
bonus	0
exponent	0
regular-expressions.info	1
-+	1
?)	1
non-capturing	0
/i	0
insensitive	0
modifier	1
\d+`	1
size(y,	1
correpond	0
y(i)	1
Octave	0
3.6.3	0
broadcasting	0
transpose	0
transposed	0
y==(1:3)')	1
uniform	0
Picture00000001.jpg	1
00000001	1
park	0
bread	0
butter	0
gas	0
OCD	0
FilenameWithOutExtension	1
f.DirectoryName	1
f.BaseName	1
basename	1
Basename	1
FileInfo	1
Community	0
shots	0
Joomla3.x	1
1.Customize	0
templateDetails.xml	1
newposition	1
2.create	1
templates/your_template/index.php	1
extensions->modules	1
PYTHON	0
HDD	0
programmes	0
NTFS	0
fat32	0
manuals	0
sys.path	1
permanently	0
IDLE	0
irritation	0
/home/me/mypy	1
http://www.johnny-lin.com/cdat_tips/tips_pylang/path.html	0
chromebook	0
magnifying	0
wherever	0
text/images	0
glass	0
manifest.json	1
http://www.supertecho.com/background.html	0
magnification	0
popup.html	1
background.html	1
injected	0
http://code.google.com/chrome/extensions/content_scripts.html	0
submit.php	1
highcharts	1
XX	0
consideration	0
Ampserand.js	1
teams	0
Moreover	0
http://jsfiddle.net/ma50685a/5/	0
if-else	1
Okay	0
IIS	0
volatile	0
VStudio.NET	1
elevated	0
HKEY_LOCAL_MACHINE\Software	1
regedit	1
hives/keys	0
Half	0
portions	0
utterly	0
=)	0
remotely	0
RegEdit	1
touble	0
RegEdt32.exe	1
Connect	0
avd	0
--*	1
Content-Disposition	1
form-data	1
value1	1
value2	1
1.jpg	1
Content-Type	1
image/jpeg	1
.jjt	1
file.I	0
jjtThis.setName()	1
jjtThis.type	1
jjtThis.setLength()	1
jjtThis.correlationName	1
jjtThis.setScale()	1
jjtThis.setPrecision()	1
jjtThis.add()	1
jjtThis.tableName	1
jjtThis.name	1
jjtThis.position	1
jjtThis.length	1
jjtThis	1
meanings	0
?..	0
https://javacc.java.net/doc/JJTree.html	0
illustrate	0
disassembler	0
bytecode	0
http://javabytes.herokuapp.com/	0
http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings	0
Disassembled	0
States	0
State	0
houston	0
TX	0
Phoenix	0
AZ	0
sapply	1
stringr::str_extract_all	1
stringr::str_extract	1
docker-compose.yml	1
composition/override	0
docker-compose.prod.yml	1
db_for_development	1
Shdr	0
NEED	0
Vertex	0
Shader	0
16x16	0
mat4	1
intelligent	0
ivec4	1
quarter	0
thoroughly	0
floor	0
mod	0
libary	0
struts	0
glassfish	0
webservices	0
delaying	0
org.springframework.core.task.TaskExecutor	1
correct/best	0
discouraged	0
spawning	0
undeploy	1
disposal	0
FormData	1
processData	1
inevitable	0
Illegal	0
Invocation	0
reside	0
appicon	0
https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/	0
indexed	0
assignments	0
STL	0
_assignments	0
_counts	0
spaced	0
reserve	0
entityManager.fetchMetadata()	1
fetchMetadata()	1
anywhere.	0
Breeze	0
breeze	0
entityManager	1
breeze.EntityManager('api/Db')	1
api/db	0
Metadata()	1
repository.Metadata()	1
.then(success,failed)	1
full-filled	0
metadataStore	1
entitymanager	1
Pseudo	0
on-the-fly	0
http://www.breezejs.com/breeze-labs/breezedirectivesvalidation	0
http://plnkr.co/edit/lxPAbIJmRaLmyagXQAFC?p=info	0
http://www.breezejs.com/documentation/metadata	0
Developer	0
WebIDE	0
smartphone	0
37+	0
debugg	0
usb	0
dave	0
addFriend	1
firstFriend	1
inputted	0
rob	0
bill	0
travis	0
firstPerson	1
Eventhough	0
PDF-1.4	1
<</AcroForm	1
<</DR	1
<</Font	1
<</Helvetica	1
220	0
R>>	1
/ProcSet	1
[/PDF	1
/Text]>>	1
/Fields	0
filed	0
JFilechooser	1
choosed	0
say.	0
FileInputStream	1
FileReader	1
versus	0
Yes/No	0
ActiveYN	1
Hide	0
show/hide	0
razor	0
{%^$@#)(	1
collation	0
iddiagrama	1
nombre	1
tipo	0
descripcion	1
characteres	0
manuallity	0
google-gson	1
argue	0
DBConnector	1
performDatabaseMethod	1
sharedInstance	1
performMethod	1
flexigrid	1
fancybox	1
ColorBox	0
querys	0
randomly	0
isolate	0
flaw	0
et2	1
NumberFormatException	1
leftString	1
float/Integer	1
DLR	0
maintained	0
superseded	0
4.0	0
April	0
msdn	0
overview	0
io	0
typescript	1
this.s	1
this.io	1
Switching	0
this.s.on	1
this.io.on	1
shapes	0
Views/Layouts	0
Main.java	1
preprocess	0
Tookit	0
ONLY	0
WHOSE	0
TARGET	0
BROWSER	0
NEEDS	0
Anwser	0
WHAT	0
COULD	0
WE	0
SUGGEST	0
fullfill	0
analises	0
hypothetical	0
Mootools	0
Prototype	0
sayHello	1
peculiarities	0
re-creating	0
shenanigans	0
nick	0
professionally	0
1996	0
tempted	0
apparent	0
well-documented	0
Netscape	0
Navigator	0
scream	0
;-)	1
Toolkit	0
AOL	0
served	0
cacheable	0
jQuery.js	1
eliminated	0
problematic	0
infrastructure	0
acej	1
closer	0
std::vector<char>	1
infinity	0
unrelated	0
sourceForge.net	0
giga	0
510199112	1
time-out	0
butdo	0
staying	0
entails	0
exited	0
onBeforeUnload	1
Closing	0
Exiting	0
Navigating	0
Refreshing	0
slideDown	1
SlideUp	1
slide	0
#box	1
slided	0
.slideToggle()	1
$("#box").slideToggle("slow")	1
server-client	0
Radmin	0
netsupport	0
ports	0
ex:9090	1
cmdClient	1
11589then	1
dataClient	1
1800	0
happene	0
transfers	0
CmdPort	1
Hey	0
YYYY	1
Roger	0
8217	0
Connects	0
Checks	0
transferred	0
Socket.LocalEndpoint	1
Socket.SendFile	1
effective	0
FTP	0
bittorrent	0
extreme	0
throttling	0
Batch	0
filename+size	1
RECIEVE	0
IMAGE	0
http://csharp.net-informations.com/communications/csharp-multi-threaded-server-socket.htm	0
/abc/home	1
/home	1
subpaths	0
abc/parent/child	1
/parent/child	0
/:_abc/:parent/:children	1
/:_abc/:grandparent/:parent/:children/	0
Router.go()	1
/abc/	1
undesired	0
comma-separated	0
scanFileName	1
Jlabel	1
Wait	0
Concurrency	0
Thread.sleep	1
javax.swing.Timer	1
Timers	0
TLDR	0
fatal	0
cross-native	0
report_times	1
gcc.c	1
libiberty	0
pex_get_times	1
DETAIL	0
beating	0
NDK	0
binutils	1
2.23	0
4.70	0
arm-linux-eabi-gcc	1
hello.c	1
-o	1
Examining	0
--disable-build-libiberty	1
NookHD	0
question(s)	1
safely	0
host/target	0
ll	0
http://www-gpsg.mit.edu/~simon/gcc_g77_install/build.html	0
-g	1
LIBCXXFLAGS	1
LIBCFLAGS	1
LIBCPPFLAGS	1
Ran	0
DESTDIR	1
/staging/install/path	0
install-host	1
tarballed	0
Internal	0
gstreamer	0
Rerun	0
GST_DEBUG	1
="*	1
:2	0
fakesink	1
codeblocks	1
changeing	0
speacking	0
structur	0
#region	1
res.php	1
University	0
Washington	0
this.value	1
fill()	1
LIs	0
intercept/redirect	0
object/function	0
Checking	0
redirector	0
m_redir.c	1
Specs	0
Actives	0
computation	0
conflicting	0
redirections	0
interests	0
66	0
3.6.1	0
SysListView32	1
LVS_OWNERDRAWFIXED	1
Allocate	0
ownerdrawn	1
listitem	1
hooking	0
LVITEMs	1
obligation	0
Specifying	0
pszText	1
iImage	1
WM_DRAWITEM	1
HDC	1
outlier	0
Realistically	0
towel	0
Guys	0
ajax-request	0
foo()	1
reurn	0
dialog-status	1
.hpp	1
Built	0
i686-w64-mingw32	1
x86_64-pc-linux-gnu	1
VirtualBox	0
v4.2.0-r80737	1
proxies	0
site/repo	0
Bridged	0
Intel	0
PRO/1000MT	0
Desktop	0
Promiscuous	0
Deny	0
Cable	0
Connected	0
LAN	0
hosts	0
host-only	0
scala	0
http://commons.apache.org/proper/commons-math/userguide/random.html	0
build.sbt	1
semicolon	0
RandomDataGenerator	1
org.apache.commons.math3.random.RandomDataGenerator	1
SBT	0
verbosity	0
Central	0
commons-math	1
nowhere	0
convenient	0
Googling	0
IPV6	0
geoip	0
2001:0db8:0000:0000:0000:ff00:0042:8329	0
42540766411282592856904265327123268393	0
Thanks.	0
IPv6	0
http://lite.ip2location.com/faqs	0
non-homework	0
slash-notation	1
subnet	0
BitArray	1
numberOfSetBits	1
symmetrical	0
255.255.255.63	1
255.255.255.252	1
never-ending	0
god	0
1111	0
1100	0
(=	0
mangling	0
0011	1
shifting	0
BitConverter.GetBytes	1
high-order	0
low-order	0
reasoning	0
precisely	0
least-significant	1
11111000000000	1
spring-data-mongodb	1
http://localhost:8080/document/getByCategory?categories=category1&categories=category2	1
VB2010	0
0.000	0
164.04	0
Seemed	0
VB6	0
accounted	0
1.Find	1
2.multiply	1
10^p	1
wacky	0
hides	0
text.	1
.stop()	1
remedy	0
didnt.	1
.slideUp	1
.slidedown	1
.animate()	1
IGrouping	1
ViewPage	1
ViewData["Products"]	1
aspx	1
JBoss	0
http://13.10.15.48	0
WAR	0
/WEB-INF/jboss	1
-web.xml	1
EAR	0
context-root	1
/META-INF/application.xml	1
https://community.jboss.org/wiki/HowDoIOverrideTheWebContextRoot	0
rootCanvas	1
Transforms	0
LayoutTransform	1
transforms	0
LayoutTranform	1
RotateTransform	1
TranslateTransform	1
MatrixTransform	1
translations	0
Wibbs	0
remarks	0
FrameworkElement.LayoutTransform	1
UIElement.RenderTransform	1
UIGestureRecognizer	1
sliding	0
key-words	0
maxi	0
https://github.com/iosdeveloper/SlideToCancel	0
http://denizdemir.com/2011/03/07/animated-slider-iphones-cool-first-impression/	0
gesture	0
http://iphonedevelopment.blogspot.com/2009/04/detecting-circle-gesture.html	0
http://forum.unity3d.com/threads/13494-Messing-around-with-gestures	0
Luck	0
Spreadsheets	0
Spreadsheet_paul.xls	1
Spreadsheet_Nick.xls	1
........	1
quesions	0
wokrbooks	0
@dmitry	0
-pavliv	1
Sheets	0
comprehensions	0
letterlist	1
Gives	0
andhow	0
typename	1
B<T>:	1
unqualifed	0
B<T>	1
qualify	0
[basic.lookup.unqual]/8	0
bolded	0
Adobe	0
Acrobat	0
JasperReports	1
6.3.1	0
JRXML	1
ps1	0
unblock	0
Scott	0
Hanselman	0
streams.exe	1
SysInternals	1
@driis	1
powershelly	0
http://social.technet.microsoft.com/Forums/en/winserverpowershell/thread/0b5f1fa6-981e-4696-84bc-b8046564ec8b	0
jvm	0
-client	1
-server	1
command-line	0
-Xmx256m	1
Launch	0
480	0
emulators	0
Samsung	0
GT	0
launched	0
explicty	0
OverviewMode	1
target-densityDpi	1
device-dpi	1
Galaxy	0
Nexus	0
JSF	0
diving	0
transmitted	0
Attempting	0
server-specific	0
SPI	0
requests/responses	0
insufficient	0
viability	0
JSESSIONID	1
leaks	0
container-specific	0
intercept	0
getSession(false))	1
MY_SESSION_ID	1
reject	0
getSession(true))	1
super-secure	0
disadvantage	0
JSPs	0
downs	0
scripting	0
LiveCycle	0
MediaPlayer	1
MediaRecorder	1
undertaking	0
speaker	0
EF5	0
<-	1
ProjectCategoryIntersection	1
ChangeTracker	1
TProject	1
Apperantly	0
Ids	0
yearly	0
salary	0
weekly	0
312,000	0
$6000	1
hourly	0
52	0
weeklySalary	1
yearlySalary	1
hourlySalary	1
2*D	1
source1	1
target1	1
source2	1
target2	1
shortest	0
donot	0
intersect	0
Genetic	0
source1-target1	1
source2-target2	1
genetic	0
A*	1
ALT+SHIFT	1
ALT+TAB	1
Itellij	0
shortcut-function	1
ALT+	0
SHIFT	0
start-up	0
Dreamweaver	0
timestam	1
setTimeout	1
listView	1
lisview	0
ListView.ListViewListener	1
summarization	0
begun	0
analyzed	0
conditionals	0
eof()	1
accident	0
/J	0
VC++	0
EOF	1
Latin-1	1
ÿ	0
Putting	0
eof())	1
ch	0
tolower	1
UCHAR_MAX	1
chaining	0
FWIW	0
isspace	1
static_cast	1
<unsigned	1
char>	1
sentenceCheck.second	1
abbreviations	0
Mr	0
Jones	0
here.	0
PL/SQL	1
proc	0
divide-and-conquer	0
commenting	0
so-far	0
@varname	1
5.x	0
UIViews	1
x/y	0
userInteractionEnabled	1
re-showing	0
EventMachine	1
my_app.rb	1
run.rb	1
RabbitMQ	1
non-Spring	0
exec'ing	1
rabbitmqctl	1
list_queues	1
results--not	1
rabbitmq-plugins	1
rabbitmq_management	1
web-application	0
plaintext	1
SP0105	0
SymmetricBinding/AsymmetricBinding/TransportBinding	0
http://www.javadb.com/using-a-message-handler-to-alter-the-soap-header-in-a-web-service-client	0
EndpointResolver.java	1
HeaderHandlerResolver	1
javax.xml.ws.handler.HandlerResolver	1
methid	0
HeaderHandler	1
metro	0
2.1.1	1
lib/webservices	1
-rt.jar	1
-tools.jar	1
lib/endorsed/webservices	1
-api.jar	1
ClassCastException	1
HeaderHandler/HeaderHandlerResolver	1
Changing	0
index.jsp	1
mobileinit	1
redirect.jsp	1
ReorderList	1
DIV	0
scrolled	0
http://forums.asp.net/p/1068063/1550532.aspx	0
AjaxControlToolkit	1
re-build	0
toolkit	0
schedulenotification	1
killed	0
uploads	0
Occurred	0
double-clicking	0
javaw.exe	1
supposing	0
MyJarFile.jar	1
java.exe	1
printStackTrace()	1
Ah	0
\to	1
ApachePoiJarName	1
MyAppJarFile	1
my.main.class.package	1
MyMainClass	1
POI	0
Export	0
Runnable	1
Under	0
Finish	0
javaw	1
MyJarName.jar	1
libgdx	1
computers	0
google-play-services	1
BaseGameUtils	1
re-importing	0
recommand	0
Bitbucket	0
bitbucket	0
Match	0
pull(download)/push(upload)	1
Killed	0
Допоможіть	0
хто	1
зможе	1
service_name	1
fulfills	0
suicide	0
"s[e]rvice_name"	1
|grep	1
/home/site/public_html/	1
/usr/bin/svn/project	1
/home/site/public_html	1
vestigial	0
IntelliSense	0
ICustomPropertyProvider	1
usability	0
ancestors	0
hackish	0
getThisValue	1
setThisValue	1
wanting	0
restrictions	0
valueEnum	1
APIUsageClass	1
APIClass	1
Ultimately	0
syntactically	0
reformatted	0
corrected	0
2KB	0
finderr	0
lower-bound	0
Informix	0
IDS	0
variety	0
sensible	0
10.00	0
dbspace	0
3*255+(20/2+1)	1
776	0
maximum-length	0
ROWID/FRAGID	1
KB	0
VARCHAR(255)	1
DATE	1
DATETIME	1
YEAR	0
TO	0
DAY	1
spelling	0
SECOND	0
num0	1
num1	1
num2	1
dubious	0
NUMERIC	0
DECIMAL	0
DECIMAL(20)	1
20-digit	0
VARCHAR	1
LVARCHAR	1
CHAR	0
TEXT	0
CLOB	0
BYTE	0
BLOB	0
UIScrollView	1
slides	0
reveal	0
visually	0
simulator	0
wired	0
culprit	0
misconfigured	0
UITapGestureRecognizer	1
client-server	0
serversocket	1
inputstream	1
docs.oracle.com	1
readLine()	1
delimeter	1
\\n	1
flush()	1
printwriter	1
Screenshot	0
ImagePlot	1
ImageJ	0
visualize	0
saturation	0
medium	0
brightness	0
EditText(Android)	1
19	0
wondered	0
Dev	0
Multi-Touch	0
HP	0
TouchSmart	0
Rocks	0
touch-enabled	0
multi-touch	0
J	0
extend/build	0
XT2	1
dream	0
NTrig	1
drivers	0
Spannble	1
Spannable	1
SpannedStringt/text	1
SpannedString	1
BufferType.SPANNABLE	1
SpannableString(textView.getText())	1
removeSpan()	1
setSpan()	1
Scan	0
Credit	0
Card	0
replied	0
recipients	0
phpMailer	1
seach	0
$maileremail	1
$add	1
EDITED	0
repetition	0
$mail	1
foreach($add)	1
bodies	0
appers	0
$injector:nomod	1
Module	0
misspelled	0
variany	0
angular.module	1
app.module.ts	1
CM	0
Albanian	0
sq	0
res/values	1
-sq	1
sq'	1
reinvent	0
influence	0
phones	0
forcing	0
afaik	0
Albanian-specific	0
hidden-sm-down	1
v4-alpha	1
https://v4-alpha.getbootstrap.com/layout/responsive-utilities/	0
APP	0
23	0
topics	0
jtds.jdbe	1
arrange	0
zooming	0
crucially	0
Owain	0
attribute/property	1
.item1	1
.item2	1
two-item-column	1
Waypoints	0
travelMode	1
travel	0
waypoints	0
walking	0
waypoint	0
stopover	0
gmaps	0
google.maps.LatLng	1
longitude	0
TravelMode	1
col-lg-6	1
expanding	0
prohibiting	0
_ViewStart.cshtml	1
_Layout.cshtml	1
ViewStart	1
mission	0
trustKeyStoreFile	1
reread	0
forbidden	0
install/download	0
Upsettingly	0
telnet	0
scripted	0
MSWinsock.Winsock.1	1
COM	0
PortQry	1
PsPing	0
wonderful	0
rely	0
Test-NetConnection	1
-Port	1
mysql_real_escape_string	1
hacked	0
underdevelopment	0
strong	0
SelectButton	1
preferably	0
ctrl	1
inspector	0
POSIX	1
compliant	0
(.*	1
foo.*	1
hotfixes	0
VS10-KB2275326-x86	1
VS10-KB2251084-x86	1
VS10-KB2268081-x86	1
unnescessarily	0
VS10-KB2345133-x86	1
hotfix	0
KB2275326	1
â€	0
Mint	0
KDE	0
Plasma	0
Partition	0
Computer	0
GRUB	0
Master	0
MBR	0
CD/USB	0
re-install	0
mount	0
XY	0
distro	0
<root-partition[e.g.	1
/dev/sdaXY]>	1
<mount-point[e.g.	1
/mnt/]>	1
essential	0
mounted	0
/mnt	1
--bind	1
/dev	1
/mnt/dev	1
/dev/pts	1
/mnt/dev/pts	0
/proc	1
/mnt/proc	1
/sys	0
/mnt/sys	1
chroot	1
grub-install	1
/dev/sda	1
grub	0
update-grub	1
unmount	0
binded	0
sector	0
booting	0
repair-boot	1
Restart	0
CD	0
CD/DVD	0
Become	0
fdisk	1
-l	1
/dev/sda1	1
Reinstall	0
--root-directory	1
/mnt/	1
Reboot	0
Restore	0
@christopher	0
abc0	1
keil	0
uvision	0
V5.20.0.0	1
Flash.c	0
startup_efm32zg.s	1
startup_efm32zg.c	1
em_dma.c	1
Zero	0
options/properties	0
0x0000	1
0800	0
Wizard	0
Silicon	0
Labs	0
flash.c	0
flash.h	1
RAMFUNC	0
Keil	0
FLASH_write	0
supposedly	0
DMA	0
DMA->CHENS	1
DMA_CHENS_CH0ENS	1
Activate	0
FLASH_init()	1
FLASH_erasePage	1
2400	0
startAddress	1
0x00002400	1
flashBuffer	1
uint8_t	1
flashBuffer[256]	1
BLOCK_SIZE	1
0x00000000	1
0xAA	1
9K	0
bootloader	0
Target1	1
IROM1	0
Start[0x0]	1
Size[0x2400]	1
IRAM1	0
Start[0x20000000]	1
Size:[0x1000]	1
earth	0
Location/Value	0
stepped	0
0x000008A4	1
flash!(?)	0
RAM_FUNC	1
dynamic_div	1
150px	1
id="container">	1
Automatically	0
doc.body.style.cssText	1
overwrites	0
FACTS	0
starred	0
addys	0
GOAL	0
Except	0
PROBLEM	0
newLabel	1
Gmail	0
GmailApp.search()	1
is:unread	1
in:inbox	1
Rad	0
Beacon	0
Cloud	0
tracking	0
dislikes	0
yourwebsite.com/beacon-track	1
yourwebsite.com/beacon	1
yourwebsite.com	1
J-Y	0
=CONCATENATE(IMPORTRANGE("123123123","SheetName!J1:Y1"))	0
lower-right	0
=CONCATENATE(IMPORTRANGE("123123123","SheetName!J"&ROW()&":Y"&ROW()))	1
sailsjs	0
mongodb	1
UserInterest.js	1
UserProfile.js	1
sails	0
2.1.2	1
--->	1
coul	0
acceptable	0
repeatedly	0
http://www.poornerd.com/2014/04/01/how-to-implement-a-session-timeout-in-play-framework-2/	0
atlas	0
3D	0
4k*4K	0
spritesheet	1
420x768px	1
3d	0
busy	0
duplicate-able	0
Surname	0
Greatly	0
Appreciated	0
JsFiddle	1
http://jsfiddle.ne
Download .txt
gitextract_71vcekvo/

├── License
├── Readme.md
├── code/
│   ├── Attentive_BiLSTM/
│   │   ├── HAN.py
│   │   ├── Word_Freqency_Mapper.py
│   │   ├── auxilary_inputs_ner/
│   │   │   ├── ctc_pred.tsv
│   │   │   └── segmenter_pred/
│   │   │       ├── segmenter_pred_dev.txt
│   │   │       ├── segmenter_pred_test.txt
│   │   │       └── segmenter_pred_train.txt
│   │   ├── config_so.py
│   │   ├── conlleval_py.py
│   │   ├── evaluation/
│   │   │   └── conlleval
│   │   ├── gaussian_binner.py
│   │   ├── loader_so.py
│   │   ├── make_segment_pred.py
│   │   ├── make_vocab.py
│   │   ├── model.py
│   │   ├── other_files/
│   │   │   ├── Freq_Vector.txt
│   │   │   ├── oov_words.txt
│   │   │   └── vocab.tsv
│   │   ├── print_result.py
│   │   ├── sorted_entity_list_by_count_all.json
│   │   ├── test_char_embeddings.py
│   │   ├── test_script.py
│   │   ├── tolatex.py
│   │   ├── train_so.py
│   │   └── utils_so.py
│   ├── BERT_NER/
│   │   ├── E2E_SoftNER.py
│   │   ├── Freq_Vector.txt
│   │   ├── softner_ner_predict_from_file.py
│   │   ├── softner_segmenter_preditct_from_file.py
│   │   ├── utils_ctc/
│   │   │   ├── binning.py
│   │   │   ├── config_ctc.py
│   │   │   ├── features.py
│   │   │   ├── model.py
│   │   │   ├── prediction_ctc.py
│   │   │   └── rules.py
│   │   ├── utils_ner.py
│   │   ├── utils_preprocess/
│   │   │   ├── __init__.py
│   │   │   ├── anntoconll.py
│   │   │   ├── fix_char_encoding.py
│   │   │   ├── format_markdown.py
│   │   │   ├── map_text_to_char.py
│   │   │   ├── sentencesplit.py
│   │   │   ├── ssplit.py
│   │   │   ├── stokenizer.py
│   │   │   ├── stokenizer_base_rules.py
│   │   │   └── tokenize_base_rules.py
│   │   ├── utils_seg.py
│   │   └── xml_filted_body.txt
│   ├── DataReader/
│   │   ├── Posts_Small.xml
│   │   ├── loader_so.py
│   │   ├── read_so_post_info.py
│   │   ├── temp_xml.xml
│   │   └── text_files/
│   │       ├── 13347179.txt
│   │       ├── 13352832.txt
│   │       └── 1528_1533.txt
│   ├── Readme.md
│   └── SOTokenizer/
│       ├── ark_twokenize.py
│       └── stokenizer.py
└── resources/
    ├── annotated_ner_data/
    │   ├── GitHub/
    │   │   └── GH_test_set.txt
    │   ├── Readme.md
    │   └── StackOverflow/
    │       ├── dev.txt
    │       ├── test.txt
    │       ├── train.txt
    │       └── train_merged_labels.txt
    └── pretrained_word_vectors/
        └── Readme.md
Download .txt
SYMBOL INDEX (280 symbols across 36 files)

FILE: code/Attentive_BiLSTM/HAN.py
  class Embeeding_Attn (line 16) | class Embeeding_Attn(nn.Module):
    method __init__ (line 17) | def __init__(self):
    method forward (line 42) | def forward(self,x):
  class Word_Attn (line 59) | class Word_Attn(nn.Module):
    method __init__ (line 60) | def __init__(self):
    method forward (line 85) | def forward(self,x):

FILE: code/Attentive_BiLSTM/Word_Freqency_Mapper.py
  class Word_Freqency_Mapper (line 5) | class Word_Freqency_Mapper:
    method __init__ (line 7) | def __init__(self,bins=100, w=5.0):
    method Find_Freq_Vector_for_words (line 15) | def Find_Freq_Vector_for_words(self):
    method Read_File (line 47) | def Read_File(self, ip_file):
    method Read_Test_Data (line 106) | def Read_Test_Data(self, input_test_file):
    method Read_Dev_Data (line 114) | def Read_Dev_Data(self, input_dev_file):
    method Find_Train_Data_Freq (line 123) | def Find_Train_Data_Freq(self, input_train_file):
    method Find_Gaussian_Bining_For_Training_Data_Freq (line 136) | def Find_Gaussian_Bining_For_Training_Data_Freq(self):
    method Write_Freq_To_File (line 146) | def Write_Freq_To_File(self,output_file):

FILE: code/Attentive_BiLSTM/conlleval_py.py
  function endOfChunk (line 88) | def endOfChunk(prevTag, tag, prevType, type_):
  function startOfChunk (line 113) | def startOfChunk(prevTag, tag, prevType, type_):
  function calcMetrics (line 137) | def calcMetrics(TP, P, T, percent=True):
  function splitTag (line 150) | def splitTag(chunkTag, oTag = "O", raw = False):
  function countChunks (line 167) | def countChunks(args,inputFile):
  function evaluate (line 246) | def evaluate(correctChunk, foundGuessed, foundCorrect, correctTags, toke...
  function evaluate_conll_file (line 336) | def evaluate_conll_file(inputFile="conll_output.txt", to_tsv=False, tsv_...

FILE: code/Attentive_BiLSTM/gaussian_binner.py
  function gaussian (line 6) | def gaussian(diff, sig):
  class GaussianBinner (line 10) | class GaussianBinner:
    method __init__ (line 12) | def __init__(self, bins=10, w=0.2):
    method fit (line 18) | def fit(self, x, features_to_be_binned):
    method transform (line 34) | def transform(self, x, features_to_be_binned):

FILE: code/Attentive_BiLSTM/loader_so.py
  function unicodeToAscii (line 24) | def unicodeToAscii(s):
  function load_sentences_so (line 32) | def load_sentences_so(path, lower, zeros, merge_tag,set_of_selected_tags):
  function load_sentences_so_w_pred (line 122) | def load_sentences_so_w_pred(path_main_file, path_segmenter_pred_file,  ...
  function load_sentences_conll (line 265) | def load_sentences_conll(path, lower, zeros):
  function update_tag_scheme (line 289) | def update_tag_scheme(sentences, tag_scheme):
  function word_mapping (line 319) | def word_mapping(sentences, lower):
  function char_mapping (line 339) | def char_mapping(sentences):
  function tag_mapping (line 352) | def tag_mapping(sentences):
  function cap_feature (line 365) | def cap_feature(s):
  function hand_features_to_idx (line 383) | def hand_features_to_idx(sentences):
  function prepare_sentence (line 394) | def prepare_sentence(str_words, word_to_id, char_to_id, lower=False):
  function seg_pred_to_idx (line 411) | def seg_pred_to_idx(sentence):
  function seg_pred_to_idx_prev (line 424) | def seg_pred_to_idx_prev(sentence):
  function ctc_pred_to_idx (line 443) | def ctc_pred_to_idx(sentence, ctc_pred_dict):
  function ner_pred_to_idx (line 456) | def ner_pred_to_idx(sentence, tag_to_id):
  function prepare_dataset (line 469) | def prepare_dataset(sentences, word_to_id, char_to_id, tag_to_id, ctc_pr...
  function augment_with_pretrained (line 509) | def augment_with_pretrained(dictionary, ext_emb_path, words):
  function pad_seq (line 560) | def pad_seq(seq, max_length, PAD_token=0):
  function get_batch (line 565) | def get_batch(start, batch_size, datas, singletons=[]):
  function random_batch (line 614) | def random_batch(batch_size, train_data, singletons=[]):

FILE: code/Attentive_BiLSTM/make_segment_pred.py
  function read_file (line 4) | def read_file(ip_file):

FILE: code/Attentive_BiLSTM/make_vocab.py
  function read_file (line 5) | def read_file(ip_file):

FILE: code/Attentive_BiLSTM/model.py
  function to_scalar (line 25) | def to_scalar(var):
  function argmax (line 29) | def argmax(vec):
  function prepare_sequence (line 34) | def prepare_sequence(seq, to_ix):
  function log_sum_exp (line 40) | def log_sum_exp(vec):
  function _align_word (line 47) | def _align_word(input_matrix, word_pos_list=[1]):
  class BiLSTM_CRF (line 87) | class BiLSTM_CRF(nn.Module):
    method __init__ (line 89) | def __init__(self, vocab_size, tag_to_ix, embedding_dim, freq_embed_di...
    method _score_sentence (line 254) | def _score_sentence(self, feats, tags):
    method get_char_embedding (line 270) | def get_char_embedding(self, sentence, chars2, caps, chars2_length, d):
    method _get_lstm_features_w_elmo_and_char (line 318) | def _get_lstm_features_w_elmo_and_char(self, sentence_words, sentence,...
    method apply_attention (line 372) | def apply_attention(self, elmo_embeds, seg_embeds, ctc_embeds):
    method _get_lstm_features_w_elmo (line 400) | def _get_lstm_features_w_elmo(self, sentence_words, sentence, seg_pred...
    method _get_lstm_features_w_elmo_prev (line 462) | def _get_lstm_features_w_elmo_prev(self, sentence_words, sentence, mar...
    method _get_lstm_features (line 535) | def _get_lstm_features(self, sentence, markdown, chars2, caps, chars2_...
    method _forward_alg (line 603) | def _forward_alg(self, feats):
    method viterbi_decode (line 623) | def viterbi_decode(self, feats):
    method neg_log_likelihood (line 657) | def neg_log_likelihood(self, sentence_tokens, sentence, sentence_seg_p...
    method forward (line 680) | def forward(self,sentence_tokens, sentence, sentence_seg_preds, senten...

FILE: code/Attentive_BiLSTM/print_result.py
  function print_result (line 9) | def print_result(eval_result,epoch_count, sorted_entity_list_file, entit...

FILE: code/Attentive_BiLSTM/test_char_embeddings.py
  function prepare_train_set_dev_data (line 69) | def prepare_train_set_dev_data():
  function evaluating (line 212) | def evaluating(model, datas, best_F, epoch_count, phase_name):
  function save_char_embed (line 306) | def save_char_embed(sentence_words, char_embed_dict, char_embed_vectors):
  function train_model (line 320) | def train_model(model, step_lr_scheduler, optimizer, train_data, dev_dat...
  function get_char_embedding_dict (line 453) | def get_char_embedding_dict(datas, model, parameters):
  function test_dev_oov_char_embedding (line 500) | def test_dev_oov_char_embedding(train_data, dev_data, model, parameters,...
  function find_similar_word (line 519) | def find_similar_word(train_char_embedding, word_char_embed, limit = 11):

FILE: code/Attentive_BiLSTM/tolatex.py
  function tolatex (line 1) | def tolatex(table_dict,caption=""):

FILE: code/Attentive_BiLSTM/train_so.py
  function create_frequecny_vector (line 63) | def create_frequecny_vector():
  function save_char_embed (line 75) | def save_char_embed(sentence_words, char_embed_dict, char_embed_vectors):
  function read_ctc_pred_file (line 90) | def read_ctc_pred_file():
  function prepare_train_set_dev_data (line 102) | def prepare_train_set_dev_data():
  function evaluating (line 300) | def evaluating(model, datas, best_F, epoch_count, phase_name):
  function train_model (line 409) | def train_model(model, step_lr_scheduler, optimizer, train_data, dev_dat...

FILE: code/Attentive_BiLSTM/utils_so.py
  function get_name (line 23) | def get_name(parameters):
  function set_values (line 37) | def set_values(name, param, pretrained):
  function create_dico (line 53) | def create_dico(item_list):
  function create_mapping (line 68) | def create_mapping(dico):
  function zero_digits (line 79) | def zero_digits(s):
  function iob2 (line 86) | def iob2(tags):
  function iob_iobes (line 108) | def iob_iobes(tags):
  function iobes_iob (line 133) | def iobes_iob(tags):
  function insert_singletons (line 154) | def insert_singletons(words, singletons, p=0.5):
  function pad_word_chars (line 167) | def pad_word_chars(words):
  function create_input (line 189) | def create_input(data, parameters, add_label, singletons=None):
  function init_embedding (line 216) | def init_embedding(input_embedding):
  function init_linear (line 224) | def init_linear(input_linear):
  function adjust_learning_rate (line 234) | def adjust_learning_rate(optimizer, lr):
  function init_lstm (line 242) | def init_lstm(input_lstm):
  function init_gru (line 287) | def init_gru(input_gru):
  function Merge_Label (line 335) | def Merge_Label(inputFile):
  class Sort_Entity_by_Count (line 409) | class Sort_Entity_by_Count:
    method __init__ (line 411) | def __init__(self, train_file,output_file):
    method get_label_counter (line 429) | def get_label_counter(self, label_counter):
    method Read_File (line 460) | def Read_File(self, ip_file):

FILE: code/BERT_NER/E2E_SoftNER.py
  function read_file (line 18) | def read_file(input_file, output_folder):
  function merge_all_conll_files (line 35) | def merge_all_conll_files(conlll_folder, output_file):
  function create_segmenter_input (line 65) | def create_segmenter_input(conll_format_file, segmenter_input_file, ctc_...
  function create_ner_input (line 97) | def create_ner_input(segmenter_output_file, ner_input_file, ctc_classifi...
  function parse_args (line 130) | def parse_args():
  function Extract_NER (line 149) | def Extract_NER(input_file):

FILE: code/BERT_NER/softner_ner_predict_from_file.py
  function set_seed (line 62) | def set_seed(args):
  function train (line 70) | def train(args, train_dataset, model, tokenizer, labels, pad_token_label...
  function evaluate (line 240) | def evaluate(args, model, tokenizer, labels, pad_token_label_id, mode, p...
  function load_and_cache_examples (line 312) | def load_and_cache_examples(args, tokenizer, labels, pad_token_label_id,...
  function parse_args (line 360) | def parse_args():
  function predict_entities (line 534) | def predict_entities(input_file,output_prediction_file):

FILE: code/BERT_NER/softner_segmenter_preditct_from_file.py
  function set_seed (line 65) | def set_seed(args):
  function train (line 73) | def train(args, train_dataset, model, tokenizer, labels, pad_token_label...
  function evaluate (line 243) | def evaluate(args, model, tokenizer, labels, pad_token_label_id, mode, p...
  function load_and_cache_examples (line 322) | def load_and_cache_examples(args, tokenizer, labels, pad_token_label_id,...
  function parse_args (line 379) | def parse_args():
  function predict_segments (line 555) | def predict_segments(input_file,output_prediction_file):

FILE: code/BERT_NER/utils_ctc/binning.py
  function gaussian (line 6) | def gaussian(diff, sig):
  class GaussianBinner (line 10) | class GaussianBinner:
    method __init__ (line 12) | def __init__(self, bins=10, w=0.2):
    method fit (line 18) | def fit(self, x, features_to_be_binned):
    method transform (line 35) | def transform(self, x, features_to_be_binned):

FILE: code/BERT_NER/utils_ctc/features.py
  class Features (line 23) | class Features:
    method __init__ (line 24) | def __init__(self, resources, n=5):
    method get_feature_vector (line 36) | def get_feature_vector(self, word):
    method get_features_from_token (line 51) | def get_features_from_token(self, token, train):
    method get_features (line 71) | def get_features(self, file_name, train):
    method transform_features (line 98) | def transform_features(self, features, train_flag):

FILE: code/BERT_NER/utils_ctc/model.py
  class NeuralClassifier (line 15) | class NeuralClassifier(torch.nn.Module):
    method __init__ (line 16) | def __init__(self, input_feat_dim, target_label_dim, vocab_size, pre_w...
    method forward (line 43) | def forward(self, features, word_ids):
    method get_scores (line 58) | def get_scores(self, features, word_ids):
    method CrossEntropy (line 90) | def CrossEntropy(self, features, word_ids, gold_labels):
    method predict (line 98) | def predict(self, features, word_ids):

FILE: code/BERT_NER/utils_ctc/prediction_ctc.py
  function eval (line 45) | def eval(predictions, gold_labels, phase):
  function get_word_dict_pre_embeds (line 58) | def get_word_dict_pre_embeds(train_file, test_file):
  function popluate_word_id_from_file (line 98) | def popluate_word_id_from_file(file_name, word_to_id):
  function popluate_word_id_from_token (line 113) | def popluate_word_id_from_token(token, word_to_id):
  function get_train_test_word_id (line 132) | def get_train_test_word_id(train_file, test_file, word_to_id):
  function prediction_on_token_input (line 139) | def prediction_on_token_input(ctc_ip_token, ctc_classifier, vocab_size, ...
  function prediction_on_file_input (line 177) | def prediction_on_file_input(ctc_input_file, ctc_classifier, vocab_size,...
  function train_ctc_model (line 217) | def train_ctc_model(train_file, test_file):

FILE: code/BERT_NER/utils_ctc/rules.py
  function regex_or (line 4) | def regex_or(*items):
  function IS_URL (line 48) | def IS_URL(token):
  function IS_NUMBER (line 55) | def IS_NUMBER(token):
  function IS_FILE_NAME (line 62) | def IS_FILE_NAME(token):

FILE: code/BERT_NER/utils_ner.py
  class InputExample (line 26) | class InputExample(object):
    method __init__ (line 29) | def __init__(self, guid, words, labels):
  class InputFeatures (line 43) | class InputFeatures(object):
    method __init__ (line 46) | def __init__(self, input_ids, input_mask, freq_ids, segment_ids, label...
  function read_examples_from_file (line 56) | def read_examples_from_file(data_dir, mode, path):
  function convert_examples_to_features (line 87) | def convert_examples_to_features(
  function get_labels (line 267) | def get_labels(path):

FILE: code/BERT_NER/utils_preprocess/anntoconll.py
  function argparser (line 45) | def argparser():
  function read_sentence (line 65) | def read_sentence(f):
  function strip_labels (line 84) | def strip_labels(lines):
  function attach_labels (line 108) | def attach_labels(labels, lines):
  function text_to_conll (line 132) | def text_to_conll(f):
  function relabel (line 205) | def relabel(lines, annotations, file_name):
  function process_files (line 256) | def process_files(files, output_directory, phase_name=""):
  function parse_textbounds (line 286) | def parse_textbounds(f):
  function eliminate_overlaps (line 306) | def eliminate_overlaps(textbounds):
  function get_annotations (line 329) | def get_annotations(fn):
  function Read_Main_Input_Folder (line 342) | def Read_Main_Input_Folder(input_folder):
  function process_folder (line 354) | def process_folder(source_folder, output_dir_ann, min_folder_number = 1,...
  function convert_standoff_to_conll (line 364) | def convert_standoff_to_conll(source_directory_ann, output_directory_con...

FILE: code/BERT_NER/utils_preprocess/fix_char_encoding.py
  class Fix_Char_Code (line 5) | class Fix_Char_Code:
    method __init__ (line 7) | def __init__(self):
    method Get_List_of_Labels (line 10) | def Get_List_of_Labels(self, tokenized_word_list_len, main_label):
    method Fix_Word_Label (line 24) | def Fix_Word_Label(self, word, gold_label, raw_label):
    method Read_File (line 52) | def Read_File(self, ip_file):

FILE: code/BERT_NER/utils_preprocess/format_markdown.py
  function find_string_indices (line 32) | def find_string_indices(input_string,string_to_search):
  class Stackoverflow_Info_Extract (line 43) | class Stackoverflow_Info_Extract:
    method __init__ (line 44) | def __init__(self,  annotattion_folder):
    method Extract_Text_From_XML (line 52) | def Extract_Text_From_XML(self,input_text):
    method tokenize_and_annotae_post_body (line 152) | def tokenize_and_annotae_post_body(self, xml_filtered_string, post_id):

FILE: code/BERT_NER/utils_preprocess/map_text_to_char.py
  function map_text_to_char (line 4) | def map_text_to_char(main_sent, tokens, offset):

FILE: code/BERT_NER/utils_preprocess/sentencesplit.py
  function _text_by_offsets_gen (line 17) | def _text_by_offsets_gen(text, offsets):
  function _normspace (line 22) | def _normspace(s):
  function sentencebreaks_to_newlines (line 27) | def sentencebreaks_to_newlines(text):
  function main (line 75) | def main(argv):

FILE: code/BERT_NER/utils_preprocess/ssplit.py
  function _refine_split (line 54) | def _refine_split(offsets, original_text):
  function _sentence_boundary_gen (line 117) | def _sentence_boundary_gen(text, regex):
  function regex_sentence_boundary_gen (line 122) | def regex_sentence_boundary_gen(text):
  function newline_sentence_boundary_gen (line 128) | def newline_sentence_boundary_gen(text):
  function _text_by_offsets_gen (line 138) | def _text_by_offsets_gen(text, offsets):

FILE: code/BERT_NER/utils_preprocess/stokenizer.py
  function regex_or (line 50) | def regex_or(*items):
  function num2roman (line 245) | def num2roman(num):
  function generate_number_list (line 260) | def generate_number_list(limit):
  function splitEdgePunct_software (line 354) | def splitEdgePunct_software(input):
  function Split_End_of_Sentence_Punc (line 493) | def Split_End_of_Sentence_Punc(token_list):
  function simpleTokenize_software (line 524) | def simpleTokenize_software(text):
  function addAllnonempty (line 594) | def addAllnonempty(master, smaller):
  function squeezeWhitespace (line 602) | def squeezeWhitespace(input):
  function splitToken (line 606) | def splitToken(token):
  function tokenize_text (line 613) | def tokenize_text(text):
  function normalizeTextForTagger (line 619) | def normalizeTextForTagger(text):
  function Split_On_Multiple_Dot (line 628) | def Split_On_Multiple_Dot(input_word):
  function Split_On_Non_function_end_parenthesis (line 657) | def Split_On_Non_function_end_parenthesis(input_word):
  function Split_On_last_letter_Colon_Mark (line 711) | def Split_On_last_letter_Colon_Mark(input_word):
  function Split_On_last_letter_Quote_Mark (line 739) | def Split_On_last_letter_Quote_Mark(input_word):
  function Split_Words_Inside_Parenthesis (line 777) | def Split_Words_Inside_Parenthesis(input_word):
  function Split_Parenthesis_At_End_of_URL (line 797) | def Split_Parenthesis_At_End_of_URL(input_word):
  function Split_Punc_At_End_of_Word (line 820) | def Split_Punc_At_End_of_Word(input_word):
  function SO_Tokenizer_wrapper (line 833) | def SO_Tokenizer_wrapper(tokens):
  function match_paren (line 894) | def match_paren(current,previous):
  function find_word_w_balanced_paren (line 903) | def find_word_w_balanced_paren(line):
  function Mask_Nested_Paren_HTML_Word (line 941) | def Mask_Nested_Paren_HTML_Word(text):
  function Resotre_Masked_Words (line 985) | def Resotre_Masked_Words(tokens,nested_parenthesis_words_dict, base):
  function tokenize (line 1040) | def tokenize(text):
  function White_Space_Remove_From_Word (line 1069) | def White_Space_Remove_From_Word(word,filler_string=""):

FILE: code/BERT_NER/utils_preprocess/stokenizer_base_rules.py
  function regex_or (line 42) | def regex_or(*items):
  function splitEdgePunct (line 209) | def splitEdgePunct(input):
  function simpleTokenize (line 215) | def simpleTokenize(text):
  function addAllnonempty (line 273) | def addAllnonempty(master, smaller):
  function squeezeWhitespace (line 281) | def squeezeWhitespace(input):
  function splitToken (line 285) | def splitToken(token):
  function tokenize (line 292) | def tokenize(text):
  function normalizeTextForTagger (line 298) | def normalizeTextForTagger(text):
  function tokenizeRawText (line 309) | def tokenizeRawText(text):

FILE: code/BERT_NER/utils_preprocess/tokenize_base_rules.py
  function regex_or (line 40) | def regex_or(*items):
  function splitEdgePunct (line 207) | def splitEdgePunct(input):
  function simpleTokenize (line 213) | def simpleTokenize(text):
  function addAllnonempty (line 271) | def addAllnonempty(master, smaller):
  function squeezeWhitespace (line 279) | def squeezeWhitespace(input):
  function splitToken (line 283) | def splitToken(token):
  function tokenize (line 290) | def tokenize(text):
  function normalizeTextForTagger (line 296) | def normalizeTextForTagger(text):
  function tokenizeRawTweetText (line 307) | def tokenizeRawTweetText(text):

FILE: code/BERT_NER/utils_seg.py
  class InputExample (line 26) | class InputExample(object):
    method __init__ (line 29) | def __init__(self, guid, words, labels):
  class InputFeatures (line 43) | class InputFeatures(object):
    method __init__ (line 46) | def __init__(self, input_ids, input_mask, freq_ids, md_ids, label_ids,...
  function read_examples_from_file (line 56) | def read_examples_from_file(data_dir, mode, path=None):
  function convert_examples_to_features (line 85) | def convert_examples_to_features(
  function get_labels (line 265) | def get_labels(path):

FILE: code/DataReader/loader_so.py
  function Merge_Label (line 5) | def Merge_Label(inputFile):
  function loader_so_text (line 77) | def loader_so_text(path, merge_tag=True, replace_low_freq_tags=True):

FILE: code/DataReader/read_so_post_info.py
  function find_string_indices (line 32) | def find_string_indices(input_string,string_to_search):
  class Stackoverflow_Info_Extract (line 44) | class Stackoverflow_Info_Extract:
    method __init__ (line 45) | def __init__(self,annotattion_folder):
    method Extract_Text_From_XML (line 55) | def Extract_Text_From_XML(self,input_text):
    method tokenize_and_annotae_post_body (line 153) | def tokenize_and_annotae_post_body(self, xml_filtered_string,post_id):
    method read_file (line 230) | def read_file(self, input_file):

FILE: code/SOTokenizer/ark_twokenize.py
  function regex_or (line 40) | def regex_or(*items):
  function splitEdgePunct (line 207) | def splitEdgePunct(input):
  function simpleTokenize (line 213) | def simpleTokenize(text):
  function addAllnonempty (line 271) | def addAllnonempty(master, smaller):
  function squeezeWhitespace (line 279) | def squeezeWhitespace(input):
  function splitToken (line 283) | def splitToken(token):
  function tokenize (line 290) | def tokenize(text):
  function normalizeTextForTagger (line 296) | def normalizeTextForTagger(text):
  function tokenizeRawTweetText (line 307) | def tokenizeRawTweetText(text):

FILE: code/SOTokenizer/stokenizer.py
  function regex_or (line 42) | def regex_or(*items):
  function num2roman (line 233) | def num2roman(num):
  function generate_number_list (line 248) | def generate_number_list(limit):
  function splitEdgePunct_software (line 334) | def splitEdgePunct_software(input):
  function Split_End_of_Sentence_Punc (line 445) | def Split_End_of_Sentence_Punc(token_list):
  function simpleTokenize_software (line 474) | def simpleTokenize_software(text):
  function addAllnonempty (line 544) | def addAllnonempty(master, smaller):
  function squeezeWhitespace (line 552) | def squeezeWhitespace(input):
  function splitToken (line 556) | def splitToken(token):
  function tokenize_text (line 563) | def tokenize_text(text):
  function normalizeTextForTagger (line 569) | def normalizeTextForTagger(text):
  function Split_On_Multiple_Dot (line 578) | def Split_On_Multiple_Dot(input_word):
  function Split_On_Non_function_end_parenthesis (line 603) | def Split_On_Non_function_end_parenthesis(input_word):
  function Split_On_last_letter_Colon_Mark (line 657) | def Split_On_last_letter_Colon_Mark(input_word):
  function Split_On_last_letter_Quote_Mark (line 683) | def Split_On_last_letter_Quote_Mark(input_word):
  function Split_Words_Inside_Parenthesis (line 721) | def Split_Words_Inside_Parenthesis(input_word):
  function Split_Parenthesis_At_End_of_URL (line 738) | def Split_Parenthesis_At_End_of_URL(input_word):
  function SO_Tokenizer_wrapper (line 759) | def SO_Tokenizer_wrapper(tokens):
  function match_paren (line 815) | def match_paren(current,previous):
  function find_word_w_balanced_paren (line 824) | def find_word_w_balanced_paren(line):
  function Mask_Nested_Paren_HTML_Word (line 861) | def Mask_Nested_Paren_HTML_Word(text):
  function Resotre_Masked_Words (line 902) | def Resotre_Masked_Words(tokens,nested_parenthesis_words_dict, base):
  function tokenize (line 933) | def tokenize(text):
Copy disabled (too large) Download .json
Condensed preview — 66 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (15,585K chars).
[
  {
    "path": "License",
    "chars": 1070,
    "preview": "MIT License\n\nCopyright (c) 2020 JeniyaTabassum\n\nPermission is hereby granted, free of charge, to any person obtaining a "
  },
  {
    "path": "Readme.md",
    "chars": 871,
    "preview": "# Dataset and Model for Fine-grained Software Entity Extraction\n\nThis repository contains all the code and data proposed"
  },
  {
    "path": "code/Attentive_BiLSTM/HAN.py",
    "chars": 2381,
    "preview": "import torch\nimport torch.nn as nn\nimport torch.autograd as autograd\nimport torch.nn.functional as F\n\nfrom utils_so impo"
  },
  {
    "path": "code/Attentive_BiLSTM/Word_Freqency_Mapper.py",
    "chars": 5670,
    "preview": "from gaussian_binner import GaussianBinner\nimport numpy as np\nfrom collections import Counter\n\nclass Word_Freqency_Mappe"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/ctc_pred.tsv",
    "chars": 203440,
    "preview": "If\t0\nI\t0\nwould\t0\nhave\t0\n2\t0\ntables\t0\nHow\t0\ndo\t0\nget\t0\nthis\t0\nresult\t0\nThe\t0\nfollowing\t0\nquery\t0\nneeds\t0\nto\t0\nbe\t0\nadjust"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/segmenter_pred/segmenter_pred_dev.txt",
    "chars": 424306,
    "preview": "Why O O\ndoes O O\n: O O\n\nnot O O\ncompile O O\nbut O O\n: O O\n\ncompiles O O\n. O O\n\nIn O O\nJava Name Name\n+ Name Name\n= Name "
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/segmenter_pred/segmenter_pred_test.txt",
    "chars": 450177,
    "preview": "I O O\nam O O\nusing O O\ncustom O O\nadapter Name Name\nwhich O O\nI O O\nuse O O\nfor O O\nmy O O\nListView Name Name\n. O O\n\nAft"
  },
  {
    "path": "code/Attentive_BiLSTM/auxilary_inputs_ner/segmenter_pred/segmenter_pred_train.txt",
    "chars": 1347524,
    "preview": "If O O\nI O O\nwould O O\nhave O O\n2 O O\ntables Name Name\n\nHow O O\ndo O O\nI O O\nget O O\nthis O O\nresult O O\n\nThe O O\nfollow"
  },
  {
    "path": "code/Attentive_BiLSTM/config_so.py",
    "chars": 10969,
    "preview": "import optparse\nimport argparse\nfrom collections import OrderedDict\nimport torch \nimport utils_so as utils\nimport os\n\n\nf"
  },
  {
    "path": "code/Attentive_BiLSTM/conlleval_py.py",
    "chars": 14595,
    "preview": "#!/usr/bin/env python3\r\n# -*- coding: utf-8 -*-\r\n\"\"\"\r\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\r\n\r\nThis evalut"
  },
  {
    "path": "code/Attentive_BiLSTM/evaluation/conlleval",
    "chars": 12728,
    "preview": "#!/usr/bin/perl -w\n# conlleval: evaluate result of processing CoNLL-2000 shared task\n# usage:     conlleval [-l] [-r] [-"
  },
  {
    "path": "code/Attentive_BiLSTM/gaussian_binner.py",
    "chars": 2321,
    "preview": "# -*- coding: utf-8 -*-\n\nimport numpy as np\n\n\ndef gaussian(diff, sig):\n    return np.exp(-np.power(diff, 2.) / (2 * sig "
  },
  {
    "path": "code/Attentive_BiLSTM/loader_so.py",
    "chars": 21229,
    "preview": "from __future__ import print_function, division\nimport os\nimport re\nimport codecs\nimport unicodedata\n\nimport model\nimpor"
  },
  {
    "path": "code/Attentive_BiLSTM/make_segment_pred.py",
    "chars": 840,
    "preview": "import random \nrandom.seed(10)\n\ndef read_file(ip_file):\n\tfout = open(ip_file+\"_2\",'w')\n\n\tfor line in open(ip_file):\n\t\t# "
  },
  {
    "path": "code/Attentive_BiLSTM/make_vocab.py",
    "chars": 550,
    "preview": "from collections import Counter\n\nvocab= Counter()\n\ndef read_file(ip_file):\n\tfor line in open(ip_file):\n\t\t# print(line)\n\t"
  },
  {
    "path": "code/Attentive_BiLSTM/model.py",
    "chars": 28508,
    "preview": "import torch\nimport torch.autograd as autograd\nfrom torch.autograd import Variable\n\n\n\nimport utils_so as utils \nfrom uti"
  },
  {
    "path": "code/Attentive_BiLSTM/other_files/oov_words.txt",
    "chars": 14161,
    "preview": "influx\nTCP/IP\nPostgres\nindicated\ncd\nrabbitmq-plugins\nDevTools\nMe\n_ViewStart.cshtml\nDataView\nThus\ndonot\nBecome\nmetadata\ni"
  },
  {
    "path": "code/Attentive_BiLSTM/other_files/vocab.tsv",
    "chars": 205742,
    "preview": "Why\t62\ndoes\t428\n:\t2984\nnot\t1141\ncompile\t32\nbut\t1037\ncompiles\t6\n.\t9125\nIn\t295\nJava\t65\n+\t67\n=\t183\noperator\t41\nhas\t351\nan\t9"
  },
  {
    "path": "code/Attentive_BiLSTM/print_result.py",
    "chars": 3146,
    "preview": "import tolatex\nimport json\n\nimport utils_so as utils \n\n\nfrom config_so import parameters\n\ndef print_result(eval_result,e"
  },
  {
    "path": "code/Attentive_BiLSTM/sorted_entity_list_by_count_all.json",
    "chars": 334,
    "preview": "[\"Class\", \"Application\", \"Variable\", \"User_Interface_Element\", \"Code_Block\", \"Function\", \"Language\", \"Library\", \"Data_St"
  },
  {
    "path": "code/Attentive_BiLSTM/test_char_embeddings.py",
    "chars": 22887,
    "preview": "# coding=utf-8\n\nfrom __future__ import print_function\nimport optparse\nimport itertools\nfrom collections import OrderedDi"
  },
  {
    "path": "code/Attentive_BiLSTM/test_script.py",
    "chars": 950,
    "preview": "import utils_so as utils\nimport loader_so as loader\nfrom config_so import parameters\nfrom utils_so import Sort_Entity_by"
  },
  {
    "path": "code/Attentive_BiLSTM/tolatex.py",
    "chars": 863,
    "preview": "def tolatex(table_dict,caption=\"\"):\n\tprint(\"\\n\\n\\n\")\n\tprint(\"\\\\begin{table}[htbp]\")\n\tprint(\"\\\\centering\")\n\tprint(\"\\\\begi"
  },
  {
    "path": "code/Attentive_BiLSTM/train_so.py",
    "chars": 25146,
    "preview": "# coding=utf-8\n\nfrom __future__ import print_function\nimport optparse\nimport itertools\nfrom collections import OrderedDi"
  },
  {
    "path": "code/Attentive_BiLSTM/utils_so.py",
    "chars": 16840,
    "preview": "from __future__ import print_function\nimport os\nimport re\nimport numpy as np\n\nfrom collections import Counter\nimport jso"
  },
  {
    "path": "code/BERT_NER/E2E_SoftNER.py",
    "chars": 4690,
    "preview": "from utils_preprocess import *\nfrom utils_preprocess.format_markdown import *\nfrom utils_preprocess.anntoconll import *\n"
  },
  {
    "path": "code/BERT_NER/softner_ner_predict_from_file.py",
    "chars": 27977,
    "preview": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018,"
  },
  {
    "path": "code/BERT_NER/softner_segmenter_preditct_from_file.py",
    "chars": 29102,
    "preview": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018,"
  },
  {
    "path": "code/BERT_NER/utils_ctc/binning.py",
    "chars": 1704,
    "preview": "# -*- coding: utf-8 -*-\n\nimport numpy as np\n\n\ndef gaussian(diff, sig):\n    return np.exp(-np.power(diff, 2.) / (2 * sig "
  },
  {
    "path": "code/BERT_NER/utils_ctc/config_ctc.py",
    "chars": 333,
    "preview": "parameters_ctc = {}\n\n\n\n\nparameters_ctc['train_file']=\"/data/jeniya/STACKOVERFLOW_DATA/CTC/data/train_updated.tsv\"\nparame"
  },
  {
    "path": "code/BERT_NER/utils_ctc/features.py",
    "chars": 2916,
    "preview": "import sys\nfrom os.path import join as path_join\nfrom os.path import dirname\nfrom sys import path as sys_path\n\n\n\n# assum"
  },
  {
    "path": "code/BERT_NER/utils_ctc/model.py",
    "chars": 2991,
    "preview": "import torch\nimport argparse\nimport numpy as np\nfrom features import Features\nfrom sklearn.metrics import *\nfrom torch.a"
  },
  {
    "path": "code/BERT_NER/utils_ctc/prediction_ctc.py",
    "chars": 8658,
    "preview": "\nimport sys\nfrom os.path import join as path_join\nfrom os.path import dirname\nfrom sys import path as sys_path\n\n\n\n# assu"
  },
  {
    "path": "code/BERT_NER/utils_ctc/rules.py",
    "chars": 2904,
    "preview": "import re\n\n# items=\"a|b => regex_or(items) ==> (?:a|b)\ndef regex_or(*items):\n    return '(?:' + '|'.join(items) + ')'\nBo"
  },
  {
    "path": "code/BERT_NER/utils_ner.py",
    "chars": 11799,
    "preview": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018,"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "code/BERT_NER/utils_preprocess/anntoconll.py",
    "chars": 11220,
    "preview": "#!/usr/bin/env python\n\n# Convert text and standoff annotations into CoNLL format.\n\nfrom __future__ import print_function"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/fix_char_encoding.py",
    "chars": 3193,
    "preview": "import ftfy\nimport stokenizer\nimport ark_twokenize\n\nclass Fix_Char_Code:\n\t\"\"\"docstring for Fix_Char_Code\"\"\"\n\tdef __init_"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/format_markdown.py",
    "chars": 14526,
    "preview": "import sys\nimport codecs\nimport os\n\n\n#from lxml import etree\n#import lxml.etree.ElementTree as ET\nimport nltk\nimport os\n"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/map_text_to_char.py",
    "chars": 2005,
    "preview": "import stokenizer #JT: Dec 6\n\n\ndef map_text_to_char(main_sent, tokens, offset):\n\ttokenized_sent=\" \".join(tokens)\n\t# prin"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/sentencesplit.py",
    "chars": 2354,
    "preview": "#!/usr/bin/env python\n\n\"\"\"Basic sentence splitter using brat segmentation to add newlines to input\ntext at likely senten"
  },
  {
    "path": "code/BERT_NER/utils_preprocess/ssplit.py",
    "chars": 6878,
    "preview": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\n\n\n\"\"\"Primitive sentence splitting using Sampo Pyysalo's GeniaSS sentence "
  },
  {
    "path": "code/BERT_NER/utils_preprocess/stokenizer.py",
    "chars": 43359,
    "preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\n\nstokenizer -- a "
  },
  {
    "path": "code/BERT_NER/utils_preprocess/stokenizer_base_rules.py",
    "chars": 13157,
    "preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\n\nstokenizer -- a "
  },
  {
    "path": "code/BERT_NER/utils_preprocess/tokenize_base_rules.py",
    "chars": 13344,
    "preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nTwokenize -- a tokenizer designed for Twitter text in English and som"
  },
  {
    "path": "code/BERT_NER/utils_seg.py",
    "chars": 11668,
    "preview": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.\n# Copyright (c) 2018,"
  },
  {
    "path": "code/BERT_NER/xml_filted_body.txt",
    "chars": 1917,
    "preview": "There are many folks out there that claim their singleton implementation to be robust and general because it uses metapr"
  },
  {
    "path": "code/DataReader/Posts_Small.xml",
    "chars": 5733,
    "preview": "  <row Id=\"13347179\" PostTypeId=\"1\" AcceptedAnswerId=\"13347433\" CreationDate=\"2012-11-12T16:09:49.260\" Score=\"0\" ViewCou"
  },
  {
    "path": "code/DataReader/loader_so.py",
    "chars": 4617,
    "preview": "import json\nimport sys\n\n\ndef Merge_Label(inputFile):\n    merging_dict={}\n    merging_dict[\"Library_Function\"]=\"Function\""
  },
  {
    "path": "code/DataReader/read_so_post_info.py",
    "chars": 7986,
    "preview": "import sys\nimport codecs\n\n\n\n#from lxml import etree\n#import lxml.etree.ElementTree as ET\nimport nltk\nimport os\nfrom xmlr"
  },
  {
    "path": "code/DataReader/temp_xml.xml",
    "chars": 57,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<posts>  \n</posts>"
  },
  {
    "path": "code/DataReader/text_files/13347179.txt",
    "chars": 1460,
    "preview": "Question_ID: 13347179\nQuestion_URL: https://stackoverflow.com/questions/13347179/\n\nThere are many folks out there that c"
  },
  {
    "path": "code/DataReader/text_files/13352832.txt",
    "chars": 449,
    "preview": "Question_ID: 13352832\nQuestion_URL: https://stackoverflow.com/questions/13352832/\n\nI've got this as XML:\nCODE_BLOCK: Q_1"
  },
  {
    "path": "code/DataReader/text_files/1528_1533.txt",
    "chars": 432,
    "preview": "Question_ID: 1528_1533\nQuestion_URL: https://stackoverflow.com/questions/1528_1533/\n\nWhile you cannot prevent usage of t"
  },
  {
    "path": "code/Readme.md",
    "chars": 3859,
    "preview": "# Running BERT NER Model:\n\n## Prerequisitie:\n1. Install the modified version of [huggingface transformers](https://githu"
  },
  {
    "path": "code/SOTokenizer/ark_twokenize.py",
    "chars": 13137,
    "preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nTwokenize -- a tokenizer designed for Twitter text in English and som"
  },
  {
    "path": "code/SOTokenizer/stokenizer.py",
    "chars": 38199,
    "preview": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nAuthor: Jeniya Tabassum <jeniya.tabassum@gmail.com>\n\nstokenizer -- a "
  },
  {
    "path": "resources/annotated_ner_data/GitHub/GH_test_set.txt",
    "chars": 1547393,
    "preview": "Repository_Name\tO\tRepository_Name\tO\n:\tO\t:\tO\nrgeo/rgeo\tO\trgeo/rgeo\tO\n-activerecord\tO\t-activerecord\tO\n\t\nIssue_Event_Link\tO"
  },
  {
    "path": "resources/annotated_ner_data/Readme.md",
    "chars": 376,
    "preview": "# Data format:\n\nIn  datasets are represented in the Conll format. In this format each line of the is in the following fo"
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/dev.txt",
    "chars": 1003520,
    "preview": "Question_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n608721\tO\t608721\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow.com/"
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/test.txt",
    "chars": 1093500,
    "preview": "Question_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n13968390\tO\t13968390\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow."
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/train.txt",
    "chars": 3221096,
    "preview": "Question_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37985879\tO\t37985879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow."
  },
  {
    "path": "resources/annotated_ner_data/StackOverflow/train_merged_labels.txt",
    "chars": 3196423,
    "preview": "Question_ID\tO\tQuestion_ID\tO\n:\tO\t:\tO\n37985879\tO\t37985879\tO\n\t\nQuestion_URL\tO\tQuestion_URL\tO\n:\tO\t:\tO\nhttps://stackoverflow."
  },
  {
    "path": "resources/pretrained_word_vectors/Readme.md",
    "chars": 285,
    "preview": "# Downloading Resources\n\nDownload the pretrained word vectors from here: [https://drive.google.com/drive/folders/1iEEMr2"
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the jeniyat/StackOverflowNER GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 66 files (82.7 MB), approximately 3.3M tokens, and a symbol index with 280 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!